/* ==========================================================================
   HAAS INTERIORS - OFFICIAL WEBSITE STYLESHEET
   Version: 2.0.0 (Trending Luxury & Architectural Craft Theme)
   Fonts: 'Outfit' (Headings & Display), 'Plus Jakarta Sans' (Body & UI)
   Colors: Obsidian Charcoal (#12141A), Warm Gold (#D99B00), Porcelain (#FAFAFD)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & ROOT CONFIGURATION
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand Palette - Modern Luxury Architectural */
  --primary: #D99B00;
  --primary-hover: #C18900;
  --primary-light: rgba(217, 155, 0, 0.08);
  --primary-gradient: linear-gradient(135deg, #F3C649 0%, #D99B00 60%, #B88200 100%);
  --secondary: #2D323E;
  --secondary-hover: #3A404F;
  --dark-text: #2D323E;
  --body-text: #475569;
  --light-bg: #FAFAFD;
  --white: #FFFFFF;
  --dark-bg: #282C37;
  --dark-surface: #333846;
  --border-color: #E2E8F0;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-gold: rgba(217, 155, 0, 0.25);

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 20, 26, 0.04);
  --shadow-md: 0 12px 32px -8px rgba(18, 20, 26, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(18, 20, 26, 0.14);
  --shadow-gold: 0 10px 28px -4px rgba(217, 155, 0, 0.32);
  --shadow-glow: 0 0 30px rgba(217, 155, 0, 0.18);

  /* Structure */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--light-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background-color: var(--white);
}

.section-bg {
  background-color: var(--light-bg);
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & SECTION HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-dark .section-subtitle {
  background-color: rgba(217, 155, 0, 0.12);
  color: #F5CB50;
  border-color: rgba(245, 203, 80, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-text);
  letter-spacing: -0.03em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--body-text);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 52px auto;
  line-height: 1.7;
}

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

.text-gold {
  color: var(--primary);
}

.text-haas,
.brand-haas {
  color: #5D5D5D;
}

.text-interiors,
.brand-interiors {
  color: #D99B00;
}

section[style*="background"] .brand-haas,
.footer-dark .brand-haas,
.hero-dark .brand-haas {
  color: #B8C0CC;
}

section[style*="background"] .brand-interiors,
.footer-dark .brand-interiors,
.hero-dark .brand-interiors {
  color: #E7AE18;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE CONTROLS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px -4px rgba(217, 155, 0, 0.45);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark-text);
  border: 1.5px solid var(--dark-text);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-gold:hover {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.925rem;
}

/* --------------------------------------------------------------------------
   5. HEADER & STICKY NAVIGATION (GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 10px 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-info-item svg {
  color: var(--primary);
  width: 15px;
  height: 15px;
}

.top-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-gold);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  text-decoration: none;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
  display: none;
}

.brand-title span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--dark-text);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2.5px;
  background: var(--primary-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 85% 15%, rgba(217, 155, 0, 0.06) 0%, transparent 60%),
              linear-gradient(135deg, #FAFAFD 0%, #F1F3F9 100%);
  padding: 90px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 155, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark-text);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--body-text);
  margin-bottom: 38px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.725rem;
  text-transform: uppercase;
  color: var(--dark-text);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-clipped {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--primary);
  z-index: 3;
}

.floating-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
}

.floating-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-sub {
  font-size: 0.75rem;
  color: var(--body-text);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   6B. SERVICES STRIP
   -------------------------------------------------------------------------- */
.services-strip {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.strip-card {
  width: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.strip-card:hover {
  transform: translateY(-5px);
}

.strip-icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.strip-card:hover .strip-icon {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.strip-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  color: var(--dark-text);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION & TRUST HIGHLIGHTS
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.04);
}

.experience-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--secondary);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-gold);
}

.experience-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--dark-text);
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SERVICES OVERVIEW & DETAILED CARDS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--body-text);
  font-weight: 400;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.825rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

.service-link:hover {
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background-color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-gold);
}

.why-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 400;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. WORK PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.process-card {
  background-color: var(--white);
  padding: 28px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

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

.process-num {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: var(--shadow-gold);
}

.process-title {
  font-size: 0.98rem;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.process-desc {
  font-size: 0.825rem;
  color: var(--body-text);
  font-weight: 400;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. CUSTOMER TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

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

.stars {
  color: var(--primary);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 400;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-text);
}

.client-location {
  font-size: 0.78rem;
  color: var(--body-text);
}

/* Google Reviews Badge Header */
.google-rating-header {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.google-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.google-biz-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: 0.3px;
}

.google-score-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.google-score-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-text);
}

.google-reviews-count {
  font-size: 0.85rem;
  color: #70757A;
  font-weight: 600;
  margin-left: 4px;
}

.google-action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.google-review-card {
  position: relative;
}

.google-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.google-badge-icon {
  flex-shrink: 0;
  margin-left: 8px;
}

.google-verified-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a73e8;
  margin-top: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.google-verified-link:hover {
  color: #1557b0;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   12. CALL TO ACTION BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: radial-gradient(circle at 90% 10%, rgba(217, 155, 0, 0.15) 0%, transparent 60%),
              var(--secondary);
  color: var(--white);
  padding: 68px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.cta-title {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. PORTFOLIO & CLIENTS GALLERY
   -------------------------------------------------------------------------- */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--dark-text);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 320px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 18, 0.92) 0%, rgba(11, 13, 18, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-category {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   14. CONTACT FORM & OFFICE INFO
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-card {
  background-color: var(--white);
  padding: 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--light-bg);
  font-size: 0.925rem;
  color: var(--dark-text);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 155, 0, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.info-text {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 400;
}

.map-container {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 28px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   15. FOOTER & FOOTER BAR
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 42px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--primary-gradient);
  border-radius: 4px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  gap: 14px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-gstin {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  display: inline-block;
  border: 1px solid var(--border-gold);
}

.footer-bottom {
  background-color: #1E222A;
  color: rgba(255, 255, 255, 0.6);
  padding: 18px 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Mobile Navigation Backdrop Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(28, 32, 41, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sticky Action Bar (Bottom Quick Call / WhatsApp) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #282C37;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  z-index: 99990;
  padding: 10px 16px;
  border-top: 1px solid rgba(217, 155, 0, 0.3);
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.mobile-sticky-btn.call {
  background: var(--primary-gradient);
  color: #FFFFFF;
}

.mobile-sticky-btn.whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

.mobile-sticky-btn svg {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   16. PRELOADER & WEAVER BIRD BUILDING NEST ANIMATION
   -------------------------------------------------------------------------- */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #282C37;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
  cursor: pointer;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  max-width: 600px;
  width: 90%;
}

.preloader-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  overflow: visible;
}

/* Nest Hanging Stem */
.anim-nest-stem {
  stroke: #D99B00;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: stemGrow 1s ease-out forwards;
}

@keyframes stemGrow {
  to {
    stroke-dashoffset: 0;
  }
}

/* Nest Body Swaying Effect */
.anim-nest-body {
  transform-origin: 55px 28px;
  animation: nestSway 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

@keyframes nestSway {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}

/* Nest Weave Lines Drawing Effect */
.anim-weave {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: weaveDraw 2.4s ease-in-out infinite;
}

.anim-weave.w1 { animation-delay: 0.2s; }
.anim-weave.w2 { animation-delay: 0.4s; }
.anim-weave.w3 { animation-delay: 0.6s; }
.anim-weave.w4 { animation-delay: 0.8s; }
.anim-weave.w5 { animation-delay: 1.0s; }
.anim-weave.w6 { animation-delay: 1.2s; }

@keyframes weaveDraw {
  0% {
    stroke-dashoffset: 80;
    opacity: 0.2;
  }
  40%, 80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
}

/* Animated Flying Golden Hummingbird / Weaver Bird */
.anim-bird-flyer {
  animation: birdFlyBuild 2.8s ease-in-out infinite;
}

@keyframes birdFlyBuild {
  0% {
    transform: translate(320px, -45px) scale(0.75) rotate(-12deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  42% {
    transform: translate(75px, 42px) scale(1) rotate(2deg);
  }
  52% {
    transform: translate(65px, 48px) scale(0.95) rotate(14deg);
  }
  68% {
    transform: translate(120px, 15px) scale(0.85) rotate(-10deg);
    opacity: 1;
  }
  88% {
    transform: translate(300px, -35px) scale(0.75) rotate(-18deg);
    opacity: 0;
  }
  100% {
    transform: translate(320px, -45px) scale(0.75) rotate(-12deg);
    opacity: 0;
  }
}

/* Flapping Upper Wing */
.anim-wing-upper {
  transform-origin: 44px 24px;
  animation: wingFlapUpper 0.18s ease-in-out infinite alternate;
}

@keyframes wingFlapUpper {
  0% {
    transform: rotate(0deg) scaleY(1);
  }
  100% {
    transform: rotate(-35deg) scaleY(0.7);
  }
}

/* Flapping Lower Wing */
.anim-wing-lower {
  transform-origin: 46px 36px;
  animation: wingFlapLower 0.18s ease-in-out infinite alternate;
}

@keyframes wingFlapLower {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25deg);
  }
}

/* Logo Typography in Preloader */
.anim-logo-text {
  animation: logoFadeIn 1.5s ease-out forwards;
}

.loader-haas {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 42px;
  fill: #FFFFFF;
  letter-spacing: 1px;
}

.loader-interiors {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 42px;
  fill: #D99B00;
  letter-spacing: 1px;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tagline & Progress Bar */
.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D99B00;
  margin-top: 18px;
  opacity: 0.95;
}

.preloader-progress-bar {
  width: 240px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.preloader-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  border-radius: 4px;
  animation: progressFill 2.2s ease-in-out forwards;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-title { font-size: 2.6rem; }
  .services-grid,
  .why-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .top-bar { display: none; }

  .site-header {
    height: 72px;
  }

  .nav-container {
    height: 72px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0B0D12;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px 32px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--white);
    font-size: 1rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 1000;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .gallery-grid,
  .services-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
    width: 100%;
  }

  .about-image {
    height: 340px;
  }
}
