/* ==========================================================================
   TRADEMARK CONSTRUCTIONS - LUXURY HERO SECTION DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --gold-100: #fff4d6;
  --gold-200: #fae1a0;
  --gold-300: #f3cf82;
  --gold-400: #e5b96c;
  --gold-500: #cca04f;
  --gold-600: #b38230;
  --gold-gradient: linear-gradient(135deg, #fcebc0 0%, #e5b96c 40%, #cca04f 75%, #b38230 100%);
  --gold-btn-gradient: linear-gradient(135deg, #e9bd6e 0%, #cca04f 100%);
  --gold-btn-hover: linear-gradient(135deg, #f3ca7d 0%, #d8a855 100%);

  /* Dark Theme Palette */
  --bg-dark-900: #080a0f;
  --bg-dark-800: #0e121a;
  --bg-dark-700: #151b26;
  --text-white: #ffffff;
  --text-muted: #c2c9d4;
  --text-dim: #8b95a5;
  --text-dark: #1b160d;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --header-height: 90px;
  --container-max-width: 1560px;
  --transition-smooth: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-gold-glow: 0 0 35px rgba(229, 185, 108, 0.35);
  --shadow-gold-card: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(204, 160, 79, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark-900);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: var(--bg-dark-900);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  transition: var(--transition-smooth);
}

/* Ambient Golden Particle Canvas */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 15;
}

/* ==========================================================================
   HERO SECTION LAYOUT
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-dark-900);
}

/* Panoramic Villa Background */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 45%;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Cinematic Shadow Vignettes matching mockup */
.hero-overlay-cinematic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.96) 0%,
    rgba(7, 9, 13, 0.90) 30%,
    rgba(7, 9, 13, 0.65) 50%,
    rgba(7, 9, 13, 0.25) 70%,
    rgba(7, 9, 13, 0.02) 88%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 10, 0.85) 0%,
    rgba(5, 7, 10, 0.45) 50%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    0deg,
    rgba(6, 8, 12, 0.65) 0%,
    rgba(6, 8, 12, 0.2) 60%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-radial-spotlight {
  position: absolute;
  top: 40%;
  left: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 185, 108, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 4;
  pointer-events: none;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(9, 12, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 185, 108, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 138px;
}

.site-header.scrolled .brand-logo-img {
  transform: scale(1.5) translateY(2px);
}

.site-header.scrolled .brand-logo:hover .brand-logo-img {
  transform: scale(1.54) translateY(2px);
}

.header-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 55;
  margin-right: 2.5rem;
}

.brand-logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.5) translateY(18px);
  transform-origin: left center;
  filter: drop-shadow(0 2px 14px rgba(229, 185, 108, 0.3));
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 4px 22px rgba(229, 185, 108, 0.55));
  transform: scale(1.54) translateY(17px);
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
}

.nav-link:hover {
  color: var(--gold-300);
}

/* Active Nav Indicator (under "Home") */
.active-indicator {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: var(--gold-400);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(229, 185, 108, 0.7);
}

/* Header Quote Button */
.header-action {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-quote-header {
  background: var(--gold-btn-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(204, 160, 79, 0.25);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-quote-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-quote-header:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(229, 185, 108, 0.45);
}

.btn-quote-header:hover::after {
  left: 100%;
}

.btn-quote-header:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  z-index: 55;
  padding: 0;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--gold-300);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-btn.open .bar-1 {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.open .bar-2 {
  opacity: 0;
}

.mobile-menu-btn.open .bar-3 {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: rgba(11, 15, 22, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(229, 185, 108, 0.2);
  z-index: 45;
  padding: 7rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--gold-400);
  padding-left: 0.5rem;
}

/* ==========================================================================
   HERO BODY CONTENT
   ========================================================================== */
.hero-content-wrapper {
  position: relative;
  z-index: 20;
  width: 100%;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 3.5rem;
}

.hero-content-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
}

.hero-text-block {
  max-width: 580px;
  margin-top: 1.5rem;
}

/* Tagline Container */
.hero-tagline-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.gold-dash {
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--gold-400);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(229, 185, 108, 0.8);
  flex-shrink: 0;
}

.tagline-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--gold-300);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-transform: uppercase;
}

.tagline-slash {
  color: rgba(197, 163, 99, 0.5);
  font-weight: 300;
}

/* Main Hero Headline */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--text-white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line.brand-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 20px rgba(229, 185, 108, 0.3));
  position: relative;
}

/* Shimmer animation bar on brand accent */
.brand-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  animation: brandShimmer 6s infinite 2s;
}

@keyframes brandShimmer {
  0% { left: -100%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

/* Description Paragraph */
.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 490px;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

/* Hero CTA Button */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-quote-hero {
  position: relative;
  background: var(--gold-btn-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.88rem 2.05rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 6px 25px rgba(204, 160, 79, 0.35);
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.btn-quote-hero .btn-text {
  position: relative;
  z-index: 2;
}

.btn-quote-hero .btn-arrow-wrapper {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-arrow-svg {
  transition: transform 0.3s ease;
}

.btn-quote-hero:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(229, 185, 108, 0.5);
}

.btn-quote-hero:hover .btn-arrow-wrapper {
  transform: translateX(4px);
}

.btn-quote-hero:active {
  transform: translateY(-1px) scale(0.99);
}

/* Subtle Pulsing Halo around CTA */
.btn-glow-pulse {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(229, 185, 108, 0.4) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: pulseHalo 3s infinite;
}

@keyframes pulseHalo {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 0.9s linear infinite;
}


/* ==========================================================================
   SERVICES SECTION ("WHAT WE DO")
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #ffffff;
  color: #0f141f;
  padding: 7.5rem 0 7rem 0;
  overflow: hidden;
}

.services-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left Visual Composition */
.services-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.services-image-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

/* Offset Gold Outline Frame */
.services-gold-outline {
  position: absolute;
  top: -16px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-500);
  border-radius: 48px 10px 130px 10px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-image-frame-wrapper:hover .services-gold-outline {
  transform: translate(6px, -4px);
}

/* Main Kitchen Image Container with Architectural Cut */
.services-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 48px 10px 130px 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 20, 30, 0.12);
  z-index: 2;
  background-color: #f1f4f9;
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.services-image-frame-wrapper:hover .services-img {
  transform: scale(1.04);
}

/* Floating Dark Architectural Badge */
.services-floating-badge {
  position: absolute;
  left: -28px;
  top: 48%;
  transform: translateY(-50%);
  z-index: 5;
  background: #0f131a;
  color: #ffffff;
  padding: 1.8rem 1.6rem;
  border-radius: 36px 10px 36px 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 145px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.services-floating-badge:hover {
  transform: translateY(-54%) scale(1.03);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
}

.badge-text-gold {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.2px;
}

.badge-text-white {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.badge-gold-line {
  width: 26px;
  height: 2px;
  background-color: var(--gold-400);
  border-radius: 2px;
  margin-top: 0.6rem;
}

/* Right Content Block */
.services-content-col {
  display: flex;
  flex-direction: column;
}

.services-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.services-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b38230;
  text-transform: uppercase;
}

.services-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #0d121c;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  letter-spacing: -0.015em;
}

.services-description {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.68;
  color: #525c6c;
  max-width: 540px;
  margin-bottom: 3.2rem;
  font-weight: 400;
}

/* 3 Feature Columns Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  position: relative;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.6rem;
  position: relative;
  transition: transform 0.35s ease;
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  padding-right: 0;
}

/* Vertical Hairline Dividers */
.service-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #e4e7ed;
}

.service-icon-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1.8px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  color: #111622;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(204, 160, 79, 0.12);
}

.service-icon-svg {
  stroke: #111622;
  transition: stroke 0.3s ease, transform 0.4s ease;
}

.service-card:hover .service-icon-circle {
  background: linear-gradient(135deg, #fcebc0, #cca04f);
  border-color: #b38230;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 24px rgba(204, 160, 79, 0.35);
}

.service-card:hover .service-icon-svg {
  transform: scale(1.1);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0d121c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  font-weight: 400;
}

/* ==========================================================================
   ABOUT US SECTION ("BUILDING BETTER SPACES")
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #0b0e15;
  color: #ffffff;
  padding: 7.5rem 0 7rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(229, 185, 108, 0.12);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 160, 79, 0.05) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.about-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.95fr;
  gap: 3.8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Visual Composition */
.about-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* Top-Left Gold Wire Accent */
.about-gold-wire {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 85%;
  height: 85%;
  border-top: 2px solid var(--gold-400);
  border-left: 2px solid var(--gold-400);
  border-top-left-radius: 36px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-frame-wrapper:hover .about-gold-wire {
  transform: translate(-5px, -5px);
}

/* Bottom-Right Gold Curved Tab */
.about-gold-tab {
  position: absolute;
  bottom: -14px;
  right: -16px;
  width: 150px;
  height: 180px;
  background: linear-gradient(135deg, #e5b96c 0%, #cca04f 100%);
  border-radius: 0 45px 45px 12px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(204, 160, 79, 0.35);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-frame-wrapper:hover .about-gold-tab {
  transform: translate(5px, 5px);
}

/* Main Image Container */
.about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65);
  z-index: 3;
  background-color: #141822;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Center Content Column */
.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.about-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  text-transform: uppercase;
}

.about-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  letter-spacing: -0.015em;
}

.about-description {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.7;
  color: #9aa5b5;
  margin-bottom: 2.3rem;
  font-weight: 400;
}

/* Learn More Pill Button */
.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 19, 28, 0.9);
  border: 1.5px solid var(--gold-400);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.85rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-learn-more .btn-arrow-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-learn-more:hover {
  background: var(--gold-btn-gradient);
  color: var(--text-dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(229, 185, 108, 0.35);
}

.btn-learn-more:hover .btn-arrow-wrapper {
  transform: translateX(4px);
}

/* Right Trust Pillars Column */
.about-pillars-col {
  position: relative;
  padding-left: 2.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  transition: transform 0.3s ease;
}

.pillar-item:hover {
  transform: translateX(4px);
}

.pillar-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.8px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-300);
  background: rgba(229, 185, 108, 0.06);
  box-shadow: 0 0 16px rgba(229, 185, 108, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-icon-svg {
  stroke: var(--gold-300);
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.pillar-item:hover .pillar-icon-circle {
  background: var(--gold-btn-gradient);
  border-color: var(--gold-300);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(229, 185, 108, 0.45);
}

.pillar-item:hover .pillar-icon-svg {
  stroke: var(--text-dark);
  transform: scale(1.08);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #8e9aab;
  line-height: 1.5;
  font-weight: 400;
}

/* ==========================================================================
   WHY CHOOSE US SECTION ("BUILT ON TRUST, DRIVEN BY QUALITY")
   ========================================================================== */
.why-section {
  position: relative;
  background-color: #fdfcf9;
  color: #0f141f;
  overflow: hidden;
  border-top: 1px solid rgba(229, 185, 108, 0.15);
}

.why-container {
  width: 100%;
  display: grid;
  grid-template-columns: 0.88fr 1.35fr;
  min-height: 440px;
  align-items: stretch;
}

/* Left Visual Column with Architectural Diagonal Crop */
.why-visual-col {
  position: relative;
  overflow: hidden;
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  overflow: hidden;
  background-color: #f0ede6;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-visual-col:hover .why-img {
  transform: scale(1.06);
}

/* Right Content Column */
.why-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.8rem 4rem 4.8rem 2.5rem;
}

.why-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.why-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b38230;
  text-transform: uppercase;
}

.why-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  font-weight: 700;
  color: #0c111a;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  letter-spacing: -0.015em;
}

/* 4 Feature Columns Grid */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  position: relative;
}

.why-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.5rem;
  position: relative;
  transition: transform 0.35s ease;
}

.why-feature-card:first-child {
  padding-left: 0;
}

.why-feature-card:last-child {
  padding-right: 0;
}

/* Vertical Hairline Dividers */
.why-feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background-color: #e4e7ed;
}

.why-feature-icon {
  color: #0f141f;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-icon-svg {
  stroke: #0f141f;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.why-feature-card:hover .why-icon-svg {
  stroke: var(--gold-500);
  transform: translateY(-3px) scale(1.1);
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c111a;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.why-feature-text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
  font-weight: 400;
}

/* ==========================================================================
   FEATURED PROJECTS SECTION ("OUR WORK")
   ========================================================================== */
.projects-section {
  position: relative;
  background: radial-gradient(circle at 12% 50%, rgba(204, 160, 79, 0.05) 0%, transparent 60%), #0a0d13;
  color: #ffffff;
  padding: 7rem 0 6.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(229, 185, 108, 0.12);
}

.projects-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 0.95fr 2.3fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content Column */
.projects-header-col {
  display: flex;
  flex-direction: column;
}

.projects-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.projects-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  text-transform: uppercase;
}

.projects-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.projects-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 2.9vw, 2.95rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1.3rem;
  letter-spacing: -0.015em;
}

.projects-description {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.68;
  color: #9aa5b5;
  margin-bottom: 2.5rem;
  max-width: 380px;
  font-weight: 400;
}

.projects-action .btn-quote-hero {
  padding: 0.82rem 2.1rem;
}

/* Right 3-Column Project Cards Gallery */
.projects-gallery-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.project-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.75), 0 0 25px rgba(229, 185, 108, 0.25);
  border-color: rgba(229, 185, 108, 0.45);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3.8 / 5;
  overflow: hidden;
  background-color: #141822;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(6, 8, 12, 0.35) 65%,
    rgba(6, 8, 12, 0.92) 100%
  );
  pointer-events: none;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 1.6rem;
  z-index: 2;
  pointer-events: none;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}

.project-card:hover .project-card-title {
  color: var(--gold-300);
}

/* ==========================================================================
   CLIENT TESTIMONIALS SECTION ("WHAT OUR CLIENTS SAY")
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-color: #fcfbf8;
  color: #0f141f;
  padding: 7rem 0 6.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(229, 185, 108, 0.15);
}

.testimonials-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 0.85fr 2.35fr;
  gap: 4rem;
  align-items: center;
}

/* Left Header Column */
.testimonials-header-col {
  display: flex;
  flex-direction: column;
}

.testimonials-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.testimonials-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b38230;
  text-transform: uppercase;
}

.testimonials-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 2.9vw, 2.9rem);
  font-weight: 700;
  color: #0c111a;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

/* Right Slider Wrapper */
.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

/* Circular Navigation Buttons */
.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d8dde3;
  background: #ffffff;
  color: #0f141f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.testimonial-nav-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-600);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(204, 160, 79, 0.3);
}

.testimonial-nav-btn:active {
  transform: scale(0.96);
}

/* Center Floating Quote Card */
.testimonial-card-container {
  flex: 1.18;
  position: relative;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 2.5rem 2.4rem 2rem 2.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf0f5;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.35s ease, transform 0.4s ease;
}

/* Floating Gold Quotation Mark Badge */
.quote-badge {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff5de;
  border: 1.5px solid rgba(229, 185, 108, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(204, 160, 79, 0.22);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  transform: translateY(4px);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.68;
  color: #2c3545;
  font-style: normal;
  margin-bottom: 1.6rem;
  font-weight: 400;
}

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

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: #0c111a;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-400);
  font-size: 1.05rem;
  text-shadow: 0 1px 4px rgba(204, 160, 79, 0.35);
}

/* Pagination Dots */
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8dde3;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-btn.active {
  width: 22px;
  border-radius: 9999px;
  background-color: var(--gold-400);
}

/* Right Showcase Photo Frame */
.testimonial-image-wrapper {
  flex: 1;
  max-width: 350px;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  background-color: #f0ede6;
}

.testimonial-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.testimonial-image-wrapper:hover .testimonial-showcase-img {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT US SECTION ("LET'S BUILD YOUR DREAM SPACE")
   ========================================================================== */
.contact-section {
  position: relative;
  background: radial-gradient(circle at 18% 45%, rgba(204, 160, 79, 0.06) 0%, transparent 65%), #080b11;
  color: #ffffff;
  padding: 6.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(229, 185, 108, 0.15);
}

.contact-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1.05fr auto 0.95fr 1.45fr 1.05fr;
  gap: 2.2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Header & Description */
.contact-header-col {
  display: flex;
  flex-direction: column;
}

.contact-pretitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.contact-pretitle {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  text-transform: uppercase;
}

.contact-pretitle-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #cca04f 0%, rgba(204, 160, 79, 0.2) 100%);
  border-radius: 2px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.3vw, 2.45rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.contact-description p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.62;
  color: #9aa5b5;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.contact-description p:last-child {
  margin-bottom: 0;
}

/* Vertical Gold Hairline Divider */
.contact-vertical-divider {
  width: 1px;
  height: 260px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(204, 160, 79, 0.6) 20%,
    rgba(204, 160, 79, 0.6) 80%,
    transparent 100%
  );
  align-self: center;
}

/* Middle-Left Column: Direct Contact Info List */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-info-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-icon-svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-400);
  transition: fill 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-wrapper {
  transform: scale(1.14);
  filter: drop-shadow(0 0 10px rgba(229, 185, 108, 0.65));
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.contact-info-item:hover .contact-info-value {
  color: var(--gold-300);
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #8e9aab;
  font-weight: 400;
}

/* Middle-Right Column: Interactive Contact Form Card */
.contact-form-col {
  width: 100%;
}

.contact-form-card {
  position: relative;
  background: rgba(13, 17, 25, 0.72);
  border: 1.2px solid rgba(229, 185, 108, 0.28);
  border-radius: 20px;
  padding: 1.9rem 2.1rem 1.7rem 2.1rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card:hover {
  border-color: rgba(229, 185, 108, 0.48);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(204, 160, 79, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-form.hidden {
  display: none;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.contact-form-row.full-width {
  grid-template-columns: 1fr;
}

.contact-field-group {
  position: relative;
  width: 100%;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: rgba(8, 11, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #727e91;
  font-weight: 400;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background-color: rgba(14, 18, 26, 0.95);
  box-shadow: 0 0 14px rgba(229, 185, 108, 0.25);
}

.contact-textarea {
  resize: vertical;
  min-height: 75px;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.btn-send-message {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold-btn-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.72rem 1.8rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(204, 160, 79, 0.32);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-send-message:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 185, 108, 0.45);
}

.btn-send-message:hover .btn-arrow-svg {
  transform: translateX(4px);
}

.btn-send-message .btn-arrow-svg {
  transition: transform 0.3s ease;
}

/* Inline Form Success State */
.contact-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.contact-form-success.active {
  display: flex;
}

.contact-form-success .success-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(229, 185, 108, 0.15);
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 0.9rem;
  box-shadow: 0 0 20px rgba(229, 185, 108, 0.35);
}

.contact-form-success .success-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-form-success .success-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #9aa5b5;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.btn-reset-form {
  background: transparent;
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset-form:hover {
  background: rgba(229, 185, 108, 0.15);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(229, 185, 108, 0.25);
}

/* Right Column: Villa Photo Frame with Cursive Script Overlay */
.contact-visual-col {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #121620;
}

.contact-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-image-wrapper:hover .contact-showcase-img {
  transform: scale(1.06);
}

.contact-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(6, 8, 12, 0.4) 65%,
    rgba(6, 8, 12, 0.88) 100%
  );
  pointer-events: none;
}

/* Elegant Gold Calligraphy Script Overlay */
.contact-script-overlay {
  position: absolute;
  bottom: 1.1rem;
  left: 1.3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: rotate(-4deg);
  transform-origin: left bottom;
}

.script-line {
  font-family: 'Alex Brush', 'Caveat', cursive;
  font-size: clamp(2rem, 2.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 18px rgba(229, 185, 108, 0.5);
  display: block;
}

.script-line-1 {
  margin-left: 0;
  color: #ffe8aa;
}

.script-line-2 {
  margin-left: 0.6rem;
  color: #cca04f;
}

/* ==========================================================================
   SITE FOOTER SECTION
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #05070a;
  color: #ffffff;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(229, 185, 108, 0.18);
  z-index: 10;
}

.footer-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Left Group: Logo + Divider + Navigation */
.footer-left-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(229, 185, 108, 0.25));
}

.footer-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(204, 160, 79, 0.55) 25%,
    rgba(204, 160, 79, 0.55) 75%,
    transparent 100%
  );
  flex-shrink: 0;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #a4b1c2;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-nav-link:hover,
.footer-nav-link.active {
  color: var(--gold-300);
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-btn-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

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

/* Right Group: Social Icons + Divider + Copyright */
.footer-right-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, color 0.3s ease;
}

.footer-social-svg {
  transition: transform 0.3s ease;
}

.footer-social-icon:hover {
  color: var(--gold-200);
  transform: translateY(-2px) scale(1.12);
  filter: drop-shadow(0 0 10px rgba(229, 185, 108, 0.65));
}

.footer-copyright p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #8e9aab;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* ==========================================================================
   INTERACTIVE QUOTE REQUEST MODAL
   ========================================================================== */
.quote-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 6, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.quote-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(145deg, rgba(21, 26, 36, 0.95), rgba(12, 15, 21, 0.98));
  border: 1px solid rgba(229, 185, 108, 0.3);
  border-radius: 20px;
  box-shadow: var(--shadow-gold-card);
  padding: 2.5rem;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.quote-modal-backdrop.active .quote-modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(229, 185, 108, 0.2);
  color: var(--gold-300);
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  background: rgba(229, 185, 108, 0.1);
  border: 1px solid rgba(229, 185, 108, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1.8rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-200);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10, 13, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(229, 185, 108, 0.25);
  outline: none;
  background: rgba(15, 20, 28, 0.95);
}

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

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

.btn-submit-quote {
  width: 100%;
  background: var(--gold-btn-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(204, 160, 79, 0.35);
  cursor: pointer;
}

.btn-submit-quote:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 185, 108, 0.5);
}

.btn-submit-icon {
  width: 18px;
  height: 18px;
}

/* Success State */
.modal-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.modal-success-state.active {
  display: flex;
}

.success-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(229, 185, 108, 0.15);
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 25px rgba(229, 185, 108, 0.4);
}

.success-check-icon {
  width: 36px;
  height: 36px;
}

.modal-success-state h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.modal-success-state p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 2.5rem;
  }
  .hero-content-container {
    padding: 0 2.5rem;
  }
  .hero-text-block {
    max-width: 520px;
  }
  .contact-container {
    grid-template-columns: 1fr auto 0.9fr 1.35fr 0.95fr;
    gap: 1.5rem;
    padding: 0 2.5rem;
  }
  .contact-form-card {
    padding: 1.6rem 1.6rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .header-container {
    padding: 0 2rem;
  }
  .hero-content-container {
    padding: 0 2rem;
  }
  .hero-overlay-cinematic {
    background: linear-gradient(
      90deg,
      rgba(7, 9, 13, 0.96) 0%,
      rgba(7, 9, 13, 0.88) 50%,
      rgba(7, 9, 13, 0.55) 80%,
      rgba(7, 9, 13, 0.3) 100%
    );
  }
  .hero-text-block {
    max-width: 580px;
  }
  .services-section {
    padding: 5.5rem 0;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    padding: 0 2rem;
  }
  .about-section {
    padding: 5.5rem 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }
  .about-pillars-col {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
  }
  .pillars-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .why-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .why-image-wrapper {
    min-height: 320px;
    clip-path: none;
    border-radius: 0 0 24px 24px;
  }
  .why-content-col {
    padding: 3.5rem 2rem;
  }
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }
  .why-feature-card {
    padding: 0;
  }
  .why-feature-card:not(:last-child)::after {
    display: none;
  }
  .projects-section {
    padding: 5.5rem 0;
  }
  .projects-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }
  .projects-header-col {
    text-align: center;
    align-items: center;
  }
  .projects-pretitle-wrapper {
    justify-content: center;
  }
  .projects-description {
    max-width: 540px;
  }
  .projects-gallery-col {
    gap: 1.2rem;
  }
  .testimonials-section {
    padding: 5.5rem 0;
  }
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }
  .testimonials-header-col {
    text-align: center;
    align-items: center;
  }
  .testimonials-pretitle-wrapper {
    justify-content: center;
  }
  .testimonials-slider-wrapper {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas: 
      "prev card next"
      "img  img  img";
    gap: 1.8rem 1rem;
    align-items: center;
    justify-items: center;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }
  .testimonial-nav-btn.prev-btn {
    grid-area: prev;
    justify-self: center;
  }
  .testimonial-card-container {
    grid-area: card;
    width: 100%;
  }
  .testimonial-nav-btn.next-btn {
    grid-area: next;
    justify-self: center;
  }
  .testimonial-image-wrapper {
    grid-area: img;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 10;
  }
  .contact-section {
    padding: 5.5rem 0;
  }
  .contact-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "header info"
      "form   visual";
    gap: 2.8rem 2rem;
    padding: 0 2rem;
  }
  .contact-header-col {
    grid-area: header;
  }
  .contact-vertical-divider {
    display: none;
  }
  .contact-info-col {
    grid-area: info;
    justify-content: center;
  }
  .contact-form-col {
    grid-area: form;
  }
  .contact-visual-col {
    grid-area: visual;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    text-align: center;
    padding: 0 2rem;
  }
  .footer-left-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-right-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  .header-container {
    padding: 0 1.25rem;
  }
  .hero-content-container {
    padding: 0 1.25rem;
  }
  .brand-logo {
    position: relative;
    margin-right: 0;
  }
  .brand-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 200px;
    height: 150px;
    transform: translate(-45%, -40%);
    background: radial-gradient(ellipse at center, rgba(6, 8, 12, 0.65) 0%, rgba(6, 8, 12, 0.35) 50%, transparent 75%);
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
  }
  .brand-logo-img {
    height: 52px;
    transform: scale(2.025) translateY(15px);
    transform-origin: left center;
    margin-right: 0;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
  }
  .brand-logo:hover .brand-logo-img {
    transform: scale(2.06) translateY(15px);
  }
  .site-header.scrolled {
    height: 136px;
  }
  .site-header.scrolled .brand-logo-img {
    transform: scale(2.025) translateY(2px);
  }
  .site-header.scrolled .brand-logo:hover .brand-logo-img {
    transform: scale(2.06) translateY(2px);
  }
  .header-action .btn-quote-header {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    width: 28px;
    height: 18px;
  }
  .mobile-menu-btn .bar {
    height: 2.5px;
    background-color: var(--gold-400);
    border-radius: 2px;
  }
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #06080d;
  }
  .hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52vh;
    min-height: 420px;
    max-height: 480px;
    overflow: hidden;
    z-index: 1;
    background-color: #06080d;
  }
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% top;
    transform-origin: 63% 15%;
  }
  .hero-overlay-top,
  .hero-overlay-bottom {
    display: none;
  }
  .hero-overlay-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(6, 8, 12, 0.62) 0%,
      rgba(6, 8, 12, 0.40) 18%,
      rgba(6, 8, 12, 0.16) 30%,
      rgba(6, 8, 12, 0) 40%,
      rgba(6, 8, 12, 0.35) 60%,
      rgba(6, 8, 12, 0.82) 80%,
      rgba(6, 8, 12, 0.98) 95%,
      #06080d 100%
    );
  }
  .hero-content-wrapper {
    position: relative;
    z-index: 20;
    width: 100%;
    padding-top: calc(47vh + 1.2rem);
    padding-bottom: 3.8rem;
  }
  .hero-text-block {
    max-width: 100%;
  }
  .hero-tagline-container {
    margin-bottom: 1.1rem;
  }
  .hero-tagline-container .gold-dash {
    display: none;
  }
  .tagline-text {
    font-size: clamp(0.68rem, 2.6vw, 0.74rem);
    letter-spacing: 2px;
    color: #cbd5e1;
    font-weight: 600;
  }
  .tagline-slash {
    color: #718096;
    margin: 0 0.15rem;
  }
  .hero-title {
    font-size: clamp(2.35rem, 8.8vw, 2.75rem);
    line-height: 1.14;
    margin-bottom: 1.35rem;
    letter-spacing: -0.015em;
  }
  .brand-word {
    display: inline-block;
  }
  .hero-description {
    font-size: 0.91rem;
    line-height: 1.62;
    color: #94a3b8;
    margin-bottom: 1.9rem;
    max-width: 100%;
  }
  .hero-cta-group {
    display: flex;
    justify-content: flex-start;
  }
  .btn-quote-hero {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
    padding: 0.86rem 2rem;
    border-radius: 9999px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .quote-modal-container {
    padding: 1.8rem 1.4rem;
  }
  .services-section {
    padding: 4.5rem 0;
  }
  .services-container {
    padding: 0 1.25rem;
    gap: 3.5rem;
  }
  .services-image-container,
  .services-gold-outline {
    border-radius: 36px 8px 80px 8px;
  }
  .services-floating-badge {
    left: -10px;
    padding: 1.2rem 1.1rem;
    border-radius: 26px 8px 26px 8px;
  }
  .badge-text-gold {
    font-size: 0.92rem;
  }
  .badge-text-white {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .service-card {
    padding: 0 0 1.8rem 0;
  }
  .service-card:not(:last-child)::after {
    display: none;
  }
  .service-card:not(:last-child) {
    border-bottom: 1px solid #e9ecf1;
  }
  .about-section {
    padding: 4.5rem 0;
  }
  .about-container {
    padding: 0 1.25rem;
    gap: 3rem;
  }
  .pillars-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .about-image-frame-wrapper {
    max-width: 100%;
  }
  .why-content-col {
    padding: 3rem 1.25rem;
  }
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .why-feature-card:not(:last-child) {
    border-bottom: 1px solid #e9ecf1;
    padding-bottom: 1.4rem;
  }
  .why-image-wrapper {
    min-height: 240px;
  }
  .projects-section {
    padding: 4.5rem 0;
  }
  .projects-container {
    padding: 0 1.25rem;
    gap: 3rem;
  }
  .projects-header-col {
    text-align: left;
    align-items: flex-start;
  }
  .projects-pretitle-wrapper {
    justify-content: flex-start;
  }
  .projects-gallery-col {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .project-image-wrapper {
    aspect-ratio: 4 / 3;
  }
  .testimonials-section {
    padding: 4.5rem 0;
  }
  .testimonials-container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }
  .testimonials-header-col {
    text-align: left;
    align-items: flex-start;
  }
  .testimonials-pretitle-wrapper {
    justify-content: flex-start;
  }
  .testimonials-slider-wrapper {
    grid-template-columns: 36px 1fr 36px;
    gap: 1.2rem 0.5rem;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 2.2rem 1.15rem 1.6rem 1.15rem;
  }
  .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .testimonial-nav-btn {
    width: 36px;
    height: 36px;
  }
  .testimonial-image-wrapper {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
  .contact-section {
    padding: 4.5rem 0;
  }
  .contact-container {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "header"
      "info"
      "form"
      "visual";
    gap: 2.5rem;
    padding: 0 1.25rem;
  }
  .contact-form-card {
    padding: 1.8rem 1.2rem;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-visual-col {
    max-width: 440px;
    margin: 0 auto;
  }
  .script-line {
    font-size: 2.2rem;
  }
  .site-footer {
    padding: 2.5rem 0;
  }
  .footer-container {
    padding: 0 1.25rem;
    gap: 1.6rem;
  }
  .footer-left-group {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-brand-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo-img {
    transform: scale(1.5);
    transform-origin: center bottom;
  }
  .footer-left-group .footer-divider {
    display: none;
  }
  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .footer-right-group {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-right-group .footer-divider {
    display: none;
  }
  .footer-copyright p {
    white-space: normal;
    text-align: center;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-bg-wrapper {
    height: 48vh;
    min-height: 390px;
    max-height: 440px;
  }
  .hero-content-wrapper {
    padding-top: calc(44vh + 1rem);
  }
  .hero-title {
    font-size: clamp(2.15rem, 9.2vw, 2.45rem);
  }
  .btn-quote-hero {
    width: auto;
    align-self: flex-start;
  }
  .btn-send-message {
    width: 100%;
    justify-content: center;
  }
}
