/* ============================================================
   SHIV INTERIOR — Global Stylesheet
   Design: Contemporary Luxury Interior Design
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --primary:       #1A1A2E;
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-dark:     #A8872E;
  --warm-white:    #FAF8F5;
  --cream:         #F5F0E8;
  --text-dark:     #2D2D2D;
  --text-light:    #6B6B6B;
  --white:         #FFFFFF;
  --card-bg:       #FFFFFF;
  --whatsapp:      #25D366;
  --border:        #E8E4DC;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --nav-height:    80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); line-height: 1.25; }
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 600; }
h3 { font-family: 'Inter', sans-serif; font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; }
p { color: var(--text-light); line-height: 1.8; }
.gold { color: var(--gold); }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 17px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-dark:hover {
  background: #2a2a4a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.navbar.scrolled .logo-interior { color: var(--primary); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: 1px;
}
.logo-shiv { color: var(--gold); }
.logo-interior { color: var(--white); transition: color var(--transition); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-light); }
.nav-link.active { color: var(--gold-light); }
.navbar.scrolled .nav-link.active { color: var(--gold); }
.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-weight: 600;
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0.55) 60%, rgba(26,26,46,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: heroFadeUp 1s ease 0.3s both;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn { min-width: 180px; justify-content: center; }

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  color: var(--white);
  opacity: 0.7;
  font-size: 22px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: #111;
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
}
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 26px;
}
.service-card h3 { margin-bottom: 12px; color: var(--primary); }
.service-card p { font-size: 14px; margin-bottom: 20px; }
.service-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ── Why Us Section ── */
.why-us {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.why-us .section-header h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-card h4 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }

/* ── Portfolio Grid ── */
.portfolio-bg { background: var(--cream); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.portfolio-item.featured { grid-row: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 220px;
}
.portfolio-item.featured img { min-height: 460px; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-overlay p { color: var(--white); font-size: 16px; font-weight: 600; }
.portfolio-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  opacity: 0;
  transition: all var(--transition);
}
.portfolio-item:hover .portfolio-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-cta { text-align: center; margin-top: 48px; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  opacity: 0.4;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  border: none;
}
.testimonial-client { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  flex-shrink: 0;
}
.client-name { font-weight: 600; color: var(--primary); font-size: 15px; line-height: 1.3; }
.client-city { font-size: 13px; color: var(--text-light); }

/* ── Lead Form Section ── */
.lead-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 100%);
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lead-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.lead-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--primary);
}
.lead-form-wrap > p { font-size: 14px; margin-bottom: 28px; color: var(--text-light); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea.form-control {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  margin-top: 16px;
}
.form-success i { font-size: 36px; color: var(--whatsapp); margin-bottom: 10px; display: block; }
.form-success h4 { color: var(--primary); margin-bottom: 6px; }
.form-success p { font-size: 14px; }
.lead-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.lead-info > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.contact-card-value { color: var(--white); font-size: 15px; font-weight: 500; }
.contact-card-value a { color: var(--white); }
.contact-card-value a.wa-link { color: var(--whatsapp); }
.lead-quote {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.lead-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero.h50 { height: 50vh; min-height: 360px; }
.page-hero.h40 { height: 40vh; min-height: 300px; }
.page-hero.h30 { height: 30vh; min-height: 240px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; }

/* ── About Page ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text { position: relative; padding-left: 28px; }
.story-text::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}
.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 16px; }
.story-image { position: relative; }
.story-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.story-image-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.story-image-badge .label { font-size: 13px; font-weight: 600; opacity: 0.8; }

.stats-row {
  background: var(--primary);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: process;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.process-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--cream);
  position: absolute;
  top: -10px; right: 16px;
  line-height: 1;
}
.process-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 20px;
}
.process-card h3 { margin-bottom: 10px; }

.team-card {
  max-width: 320px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.team-photo {
  width: 100%;
  height: 300px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gold);
  position: relative;
}
.team-info { padding: 28px; }
.team-info h3 { margin-bottom: 4px; }
.team-title { color: var(--gold); font-size: 14px; font-weight: 500; margin-bottom: 12px; display: block; }
.team-info p { font-size: 14px; }

/* ── Services Page ── */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-of-type { border-bottom: none; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-img-wrap:hover img { transform: scale(1.04); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: -16px;
}
.service-text h2 { margin-bottom: 16px; }
.service-text p { margin-bottom: 20px; }
.service-benefits { margin-bottom: 28px; }
.service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-dark);
}
.service-benefits li i { color: var(--gold); font-size: 14px; }

.services-cta-strip {
  background: var(--primary);
  padding: 70px 0;
  text-align: center;
}
.services-cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.services-cta-strip p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* ── Gallery Page ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.filter-btn:hover { color: var(--primary); }
.filter-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 60px 0;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.gallery-overlay p { color: var(--white); font-size: 14px; font-weight: 600; margin: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lb-arrow:hover { background: rgba(201,168,76,0.4); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-align: center;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-wrap h2 { margin-bottom: 8px; }
.form-wrap > p { margin-bottom: 32px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-of-type { border-bottom: none; }
.cic-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cic-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.cic-value { color: var(--text-dark); font-weight: 500; font-size: 15px; }
.cic-value a { color: var(--text-dark); }
.cic-value a:hover { color: var(--gold); }
.map-placeholder {
  background: var(--cream);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  margin: 24px 0;
  color: var(--text-light);
  font-size: 14px;
  gap: 8px;
}
.map-placeholder i { font-size: 32px; color: var(--gold); opacity: 0.5; }
.social-btns { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* FAQ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
  color: var(--gold);
  transition: transform var(--transition);
  font-size: 14px;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Thank You Page ── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  padding: 100px 24px;
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 560px;
  width: 100%;
}
.check-circle {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.check-circle svg {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 0.8s ease 0.4s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.thankyou-card h1 { font-size: 40px; margin-bottom: 16px; }
.thankyou-card p { font-size: 17px; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
.ty-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.ty-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.ty-link:hover { color: var(--gold); }

/* ── Footer ── */
footer {
  background: var(--primary);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 28px; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 11px; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.fci { display: flex; gap: 12px; align-items: flex-start; }
.fci i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.fci span { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.fci a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.fci a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating Buttons ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px; height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--primary);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

.scroll-top {
  position: fixed;
  bottom: 104px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  z-index: 9998;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--transition);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ── Mobile Bottom Bar ── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  z-index: 9997;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
}
.mobile-bar-call,
.mobile-bar-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.mobile-bar-call { background: var(--primary); }
.mobile-bar-wa { background: var(--whatsapp); }

/* ── Founder Card ── */
.founder-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.founder-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2a1f5e 100%);
  padding: 32px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.founder-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--gold);
  flex-shrink: 0;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.founder-title {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}
.founder-stats {
  display: flex;
  gap: 12px;
}
.founder-stat {
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  min-width: 70px;
}
.founder-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.founder-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.founder-body {
  padding: 32px 28px 36px;
}
.founder-body p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
  color: var(--text-light);
}
.founder-body p:last-of-type { margin-bottom: 0; }
.founder-cta { margin-top: 24px; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-row: span 1; }
  .portfolio-item.featured img { min-height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-layout.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── 768px — Primary mobile breakpoint ─── */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }
  .logo { font-size: 20px; }

  /* Mobile menu phone links */
  .mobile-menu { gap: 24px; }
  .mobile-menu .nav-link { font-size: 24px; }

  /* Hero */
  .hero { min-height: 520px; }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-badge { font-size: 11px; letter-spacing: 1.5px; padding: 6px 14px; margin-bottom: 18px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; font-size: 15px; padding: 15px 20px; }
  .hero-dots { bottom: 72px; }
  .scroll-arrow { bottom: 20px; }

  /* Sections */
  section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 15px; }

  /* Trust bar */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-number { font-size: 28px; }
  .trust-label { font-size: 11px; }
  .trust-item { padding: 18px 12px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; }
  .services-cta { margin-top: 32px; }

  /* Why us */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card { padding: 24px 16px; }
  .why-icon { font-size: 28px; margin-bottom: 14px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .portfolio-item img { min-height: 160px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px 20px; }

  /* Lead form */
  .lead-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-form-wrap { padding: 28px 18px; }
  .lead-form-wrap h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-info h3 { font-size: 22px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 42px; }
  .stat-item { padding: 20px 12px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-card { padding: 32px 20px; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image img { height: 280px; }
  .story-image-badge { bottom: -10px; left: 10px; padding: 14px 18px; }
  .story-image-badge .number { font-size: 28px; }

  /* Services page */
  .service-layout { grid-template-columns: 1fr; gap: 28px; }
  .service-layout.reverse { direction: ltr; }
  .service-img-wrap img { height: 260px; }
  .service-section { padding: 48px 0; }
  .services-cta-strip { padding: 48px 0; }

  /* Gallery */
  .filter-btn { padding: 14px 14px; font-size: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 32px 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-wrap { padding: 28px 18px; }
  .contact-info-card { padding: 14px 0; }

  /* Page hero */
  .page-hero.h50 { height: 38vh; min-height: 240px; }
  .page-hero.h40 { height: 32vh; min-height: 200px; }
  .page-hero.h30 { height: 26vh; min-height: 180px; }
  .page-hero h1 { font-size: clamp(22px, 5vw, 36px); }
  .page-hero p { font-size: 14px; }

  /* Footer */
  footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-logo { font-size: 22px; }

  /* Mobile bar — displayed + bigger touch target */
  .mobile-bar { display: flex; height: 60px; }
  .mobile-bar-call, .mobile-bar-wa { font-size: 13px; gap: 6px; }

  /* Shift floating buttons above mobile bar */
  .whatsapp-float { bottom: 76px; right: 16px; width: 54px; height: 54px; }
  .scroll-top { bottom: 142px; right: 16px; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 15px; }
}

/* ─── 480px — Small phones ─── */
@media (max-width: 480px) {
  :root { --nav-height: 56px; }

  .container { padding: 0 14px; }
  section { padding: 44px 0; }
  .section-header { margin-bottom: 28px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); line-height: 1.2; }
  .hero-sub { font-size: 13px; }
  .hero-badge { display: none; }
  .hero-btns .btn { max-width: 100%; padding: 16px 20px; font-size: 15px; min-height: 52px; }

  /* Trust */
  .trust-item { padding: 16px 8px; }
  .trust-number { font-size: 24px; }
  .trust-label { font-size: 10px; letter-spacing: 0.5px; }

  /* Why us — 1 col on tiny screens */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px 16px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item img { min-height: 200px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { aspect-ratio: 16/9; }

  /* Form controls — 16px font prevents iOS zoom */
  .form-control { height: 52px; font-size: 16px; }
  textarea.form-control { font-size: 16px; }
  select.form-control { font-size: 16px; }

  /* Lead form */
  .lead-form-wrap { padding: 22px 14px; border-radius: 12px; }
  .contact-cards { gap: 10px; }
  .contact-card { padding: 14px 14px; gap: 12px; }
  .contact-card-icon { width: 38px; height: 38px; font-size: 16px; }

  /* Stats */
  .stat-number { font-size: 36px; }
  .stat-label { font-size: 12px; }

  /* Process */
  .process-card { padding: 24px 16px; }
  .process-number { font-size: 52px; }

  /* Service card */
  .service-card { padding: 22px 16px; }
  .service-icon { width: 52px; height: 52px; font-size: 22px; margin-bottom: 16px; }

  /* Story */
  .story-image img { height: 220px; }
  .story-text { padding-left: 16px; }

  /* Services page */
  .service-img-wrap img { height: 220px; }
  .service-num { font-size: 52px; }

  /* Page hero */
  .page-hero.h50 { min-height: 200px; }
  .page-hero.h40 { min-height: 180px; }
  .page-hero.h30 { min-height: 160px; }
  .page-hero h1 { font-size: clamp(20px, 6vw, 28px); }
  .breadcrumb { font-size: 11px; }

  /* Contact */
  .form-wrap { padding: 20px 14px; border-radius: 12px; }
  .cic-value { font-size: 14px; }
  .faq-question { padding: 14px 16px; font-size: 14px; }
  .faq-answer p { padding: 0 16px 16px; font-size: 14px; }

  /* Footer */
  footer { padding: 36px 0 0; }
  .footer-grid { gap: 24px; padding-bottom: 24px; }
  .footer-tagline { font-size: 13px; }
  .footer-links a, .fci span, .fci a { font-size: 13px; }

  /* Mobile bar */
  .mobile-bar { height: 58px; }
  .mobile-bar-call, .mobile-bar-wa { font-size: 12px; letter-spacing: -0.2px; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: 14px; }

  /* Thank you */
  .thankyou-card { padding: 36px 18px; }
  .thankyou-card h1 { font-size: 28px; }
  .check-circle { width: 80px; height: 80px; margin-bottom: 24px; }

  /* Lightbox arrows on mobile */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-arrow { width: 40px; height: 40px; font-size: 16px; }
}
