/* ============================================================
   AYATA HOMES — Premium Interior Design Website
   Design System & Component Styles
   ============================================================ */

/* ── Google Fonts imported in HTML ── */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --navy:        #273149;
  --navy-light:  #3A4763;
  --navy-dark:   #1C243A;
  --gold:        #E9A93E;
  --gold-light:  #F2C36E;
  --gold-dark:   #C8891A;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --cream:       #FBF8F2;
  --muted:       #6B7280;
  --light-gray:  #E5E7EB;
  --border:      rgba(39,49,73,0.1);
  --border-gold: rgba(233,169,62,0.3);

  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm:  0 1px 3px rgba(39,49,73,0.08), 0 1px 2px rgba(39,49,73,0.04);
  --shadow-md:  0 4px 16px rgba(39,49,73,0.10), 0 2px 6px rgba(39,49,73,0.06);
  --shadow-lg:  0 16px 48px rgba(39,49,73,0.14), 0 6px 16px rgba(39,49,73,0.08);
  --shadow-gold:0 8px 32px rgba(233,169,62,0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; outline: none; }

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
  margin-top: 16px;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 16px auto 0;
}

/* ── SCROLL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 max(5%, calc((100% - 1200px) / 2));
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.nav.scrolled {
  background: rgba(27, 36, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* keep old span rule for safety */
.nav-logo span { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  margin-left: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(233,169,62,0.15);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-fast);
}

.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu .nav-cta {
  margin-left: 0;
  margin-top: 32px;
  display: inline-block;
  text-align: center;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.menu-overlay.visible { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  object-position: center;
  animation: heroZoomIn 12s ease forwards;
}

@keyframes heroZoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(27,36,58,0.90) 0%, rgba(27,36,58,0.65) 55%, rgba(27,36,58,0.45) 100%),
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(233,169,62,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

/* Hero Enquiry Form */
.hero-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 6px;
  padding: 28px 28px 24px;
  flex: 0 0 360px;
  width: 360px;
}

.hero-form-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  transition: var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}

.form-group select option { background: var(--navy-dark); color: var(--white); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  margin-top: 4px;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 52px 0;
  border-top: 1px solid rgba(233,169,62,0.1);
  border-bottom: 1px solid rgba(233,169,62,0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(233,169,62,0.18);
}

.trust-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   ABOUT — WHO WE ARE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: auto;
  max-height: 600px;
  box-shadow: var(--shadow-lg);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(39,49,73,0.35));
}

.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border: 1.5px solid var(--border-gold);
  border-radius: 2px;
  z-index: -1;
}

.about-accent-2 {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(233,169,62,0.2);
  border-radius: 50%;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--navy);
  border: 1px solid rgba(233,169,62,0.3);
  padding: 14px 20px;
  border-radius: 3px;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about-badge-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.about-text .section-title { margin-bottom: 24px; }

.about-story {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-philosophy {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: rgba(233,169,62,0.04);
  border-radius: 0 4px 4px 0;
  margin-bottom: 36px;
}

.about-philosophy p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: normal;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 400;
}

.about-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,169,62,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(233,169,62,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.service-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.why-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: var(--transition-fast);
}

.why-icon-wrap svg {
  stroke: currentColor;
}

.why-card:hover .why-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   HOW WE WORK — PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(10% + 1px);
  right: calc(10% + 1px);
  height: 1px;
  background: linear-gradient(to right, var(--border-gold), rgba(233,169,62,0.5), var(--border-gold));
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--navy);
}

.portfolio-item--large {
  grid-column: span 1;
  grid-row: span 2;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item--large .portfolio-img { min-height: 100%; }

.portfolio-item:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,36,58,0.85) 0%, rgba(27,36,58,0.20) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.portfolio-caption {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.portfolio-always-visible {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px 18px;
  background: linear-gradient(to top, rgba(27,36,58,0.75) 0%, transparent 100%);
}

.portfolio-tag-visible {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.portfolio-footer {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 70%, rgba(233,169,62,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-ornament {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 1px solid rgba(233,169,62,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-ornament::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(233,169,62,0.1);
  border-radius: 50%;
}

.cta-section .eyebrow { color: var(--gold); margin-bottom: 20px; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-title em { font-style: normal; color: var(--gold-light); }

.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-cta-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(233,169,62,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a,
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}

.footer-social a:hover,
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-contact-text a:hover { color: var(--gold); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-area-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP WIDGET
   ============================================================ */
.wa-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Popup bubble */
.wa-popup {
  position: relative;
  background: #ffffff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  padding: 10px 16px;
  border-radius: 12px 12px 4px 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.wa-popup.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* Little arrow pointing down-right toward the button */
.wa-popup-arrow {
  position: absolute;
  bottom: -7px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid #ffffff;
}

/* The button itself */
.whatsapp-float {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-wa 3s infinite;
  flex-shrink: 0;
}

.whatsapp-float svg {
  display: block;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-form { flex: 0 0 320px; width: 320px; }
  .hero-content { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 72px 0; }

  .hero { min-height: 100svh; padding: 100px 0 56px; }
  .hero-content { flex-direction: column; gap: 28px; align-items: flex-start; }
  .hero-form { flex: none; width: 100%; max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { order: -1; }
  .about-image-frame { aspect-ratio: 4/3; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .step-circle { margin-bottom: 16px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item--large { grid-column: span 2; grid-row: span 1; }
  .portfolio-overlay { opacity: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: clamp(36px, 11vw, 52px); letter-spacing: -0.5px; }
  .hero-tagline { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
  .hero-eyebrow { margin-bottom: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-form { padding: 20px 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--large { grid-column: span 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .container { width: 92%; }
}

/* -- Portfolio Slideshow (Modular Kitchens card) -- */
.portfolio-item--slideshow { overflow: hidden; }

.portfolio-slide-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-slide-strip {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.portfolio-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

/* Scale on hover matches existing .portfolio-img img behaviour */
.portfolio-item--slideshow:hover .portfolio-slide {
  transform: scale(1.06);
}

/* Slide-indicator dots */
.portfolio-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item--slideshow:hover .portfolio-slide-dots {
  opacity: 1;
}

.portfolio-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio-slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
