/* ==========================================================================
   BELLISSIMO BUILDING & CONSTRUCTION - MODERN LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-red: #E51A24;
  --primary-red-hover: #FF2B34;
  --primary-red-dark: #C4141D;
  --red-glow: rgba(229, 26, 36, 0.4);
  --red-glow-strong: rgba(229, 26, 36, 0.65);
  
  /* Dark Atmosphere Neutrals */
  --bg-black: #05090E;
  --bg-card: #080F18;
  --bg-card-hover: #0E1825;
  --bg-header: rgba(5, 9, 14, 0.75);
  --bg-services: #060B12;
  
  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-light: #E4E8EE;
  --text-muted: rgba(255, 255, 255, 0.82);
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-accent: #E51A24;
  
  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.22);
  --border-glass-hover: rgba(255, 255, 255, 0.45);
  
  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Z-Index Hierarchy */
  --z-bg: 1;
  --z-content: 10;
  --z-header: 100;
  --z-modal: 1000;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Site Preloader (Logo Build & Fade In Animation)
   ========================================================================== */

.site-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #04080D;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  pointer-events: all;
}

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

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 400px;
  padding: 24px;
}

.preloader-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderLogoScaleSettle 1.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-logo-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

/* Step 1: Silver Building Structure Appears First */
.preloader-silver-structure {
  opacity: 0;
  transform: translateY(14px);
  animation: silverStructureIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes silverStructureIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step 2: Red Roof Draws In Smoothly */
.roof-draw-path,
.roof-draw-accent {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: roofStrokeDraw 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

@keyframes roofStrokeDraw {
  0% {
    stroke-dashoffset: 260;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Step 3: Logo Text Fades In */
.preloader-logo-text {
  opacity: 0;
  transform: translateY(8px);
  animation: logoTextFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

@keyframes logoTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Step 4: Logo Scale Up & Settle */
@keyframes preloaderLogoScaleSettle {
  0% {
    opacity: 0.2;
    transform: scale(0.92);
  }
  30% {
    opacity: 0.9;
  }
  70% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

/* Step 5: Ambient Backdrop Aura Glow */
.preloader-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(229, 26, 36, 0.25) 0%, rgba(229, 26, 36, 0.06) 50%, transparent 75%);
  transform: translate(-50%, -50%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: preloaderAuraPulse 1.8s ease-in-out forwards;
}

@keyframes preloaderAuraPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.0);
  }
}

/* Step 6: Minimal Red Progress Bar */
.preloader-progress-bar {
  width: 140px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF3A44, #E51A24);
  box-shadow: 0 0 12px rgba(229, 26, 36, 0.7);
  border-radius: 9999px;
  animation: preloaderBarFill 1.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloaderBarFill {
  0% {
    width: 0%;
  }
  35% {
    width: 45%;
  }
  75% {
    width: 88%;
  }
  100% {
    width: 100%;
  }
}

/* ==========================================================================
   Page Container & Layout
   ========================================================================== */

.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-black);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(5, 9, 14, 0.88) 0%, rgba(5, 9, 14, 0.45) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(5, 9, 14, 0.96);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 160px;
  height: 52px;
  position: relative;
  overflow: visible;
  transition: transform var(--transition-fast);
}

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

.logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
  transform: scale(2.0);
  transform-origin: left center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

/* Desktop Main Nav */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  letter-spacing: 0.2px;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

/* Animated Red Underline on Hover & Active */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary-red);
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease;
  box-shadow: 0 0 10px var(--red-glow);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: 0 0 12px var(--red-glow-strong);
}

.nav-link.active {
  color: var(--text-white);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: 0 0 10px var(--red-glow);
}

.active-indicator {
  display: none;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
  opacity: 0.8;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-red);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 540px;
  background: rgba(8, 15, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-smooth);
  pointer-events: none;
  z-index: 50;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
  pointer-events: auto;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(229, 26, 36, 0.08);
  border-color: rgba(229, 26, 36, 0.25);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(229, 26, 36, 0.15);
  color: var(--primary-red);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.dropdown-item:hover .dropdown-icon {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 12px var(--red-glow);
}

.dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Phone CTA Button (Header) */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF2B34 0%, #E51A24 100%);
  color: var(--text-white);
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px var(--red-glow);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

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

.btn-phone:hover::before {
  left: 100%;
}

.btn-phone:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px var(--red-glow-strong);
  background: linear-gradient(135deg, #FF3D45 0%, #F51C26 100%);
}

.phone-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  animation: subtleRing 3.5s infinite ease-in-out;
}

@keyframes subtleRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-15deg); }
  90% { transform: rotate(15deg); }
  95% { transform: rotate(-10deg); }
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  z-index: 101;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-smooth);
}

.mobile-drawer.active {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  z-index: 2;
}

.mobile-drawer.active .mobile-drawer-inner {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-logo {
  height: 38px;
  width: auto;
}

.mobile-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  display: block;
  padding: 8px 0;
}

.mobile-nav-link.active {
  color: var(--primary-red);
  font-weight: 700;
}

.mobile-phone-btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Hero Landing Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 115px;
}

/* Hero Background Visual & Precise Contrast Gradient */
.hero-bg-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: var(--z-bg);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero-section:hover .hero-bg-media {
  transform: scale(1.04);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg, 
    rgba(5, 9, 14, 0.94) 0%, 
    rgba(5, 9, 14, 0.88) 32%, 
    rgba(5, 9, 14, 0.52) 58%, 
    rgba(5, 9, 14, 0.20) 80%, 
    rgba(5, 9, 14, 0.65) 100%
  );
  pointer-events: none;
}

/* Subtle Ambient Glow Effect */
.hero-light-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 26, 36, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 3;
  pointer-events: none;
}

/* Hero Main Content Container */
.hero-container {
  position: relative;
  z-index: var(--z-content);
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-grow: 1;
  gap: 40px;
}

.hero-content-wrapper {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow Subtitle (QUALITY | CRAFTSMANSHIP | TRUST) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out forwards;
}

.eyebrow-divider {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* Main Hero Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.headline-line {
  display: block;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline-line:nth-child(1) { animation-delay: 0.1s; }
.headline-line:nth-child(2) { animation-delay: 0.2s; }
.headline-line:nth-child(3) { animation-delay: 0.3s; }

.headline-white {
  color: var(--text-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.headline-red {
  color: var(--primary-red);
  text-shadow: 0 0 35px var(--red-glow-strong);
  position: relative;
  display: inline-block;
}

/* Description Text */
.hero-description {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 34px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

/* Action CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Primary Button (Red Pill) */
.btn-primary {
  background: linear-gradient(135deg, #FF2B34 0%, #E51A24 100%);
  color: var(--text-white);
  box-shadow: 0 8px 25px var(--red-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px var(--red-glow-strong);
  background: linear-gradient(135deg, #FF3D45 0%, #F51C26 100%);
}

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

/* Secondary Button (Glass Pill) */
.btn-secondary {
  background: rgba(8, 14, 22, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-glass-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.btn-icon {
  font-size: 0.88rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Handwritten Signature / Motto Overlay (Bottom Right) */
.hero-signature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-shrink: 0;
  user-select: none;
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}

.signature-quote {
  font-family: var(--font-script);
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  transform: rotate(-3deg);
  text-align: right;
}

.signature-italic {
  display: block;
  color: #FFFFFF;
  margin-top: 2px;
}

.signature-swoosh {
  width: 160px;
  height: auto;
  margin-top: -6px;
  margin-right: 4px;
  filter: drop-shadow(0 2px 8px var(--red-glow-strong));
  transform: rotate(-2deg);
}

/* ==========================================================================
   Bottom Services / Feature Highlights Bar
   ========================================================================== */

.services-strip {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  background: var(--bg-services);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.services-container {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.service-card {
  position: relative;
  padding: 30px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-right: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
  cursor: pointer;
  background: transparent;
}

.service-card:last-child {
  border-right: none;
}

/* Top Accent Glow Bar on Hover */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-red);
  opacity: 0;
  box-shadow: 0 0 12px var(--red-glow-strong);
  transition: opacity var(--transition-fast);
}

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

.service-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

/* Service SVG Icon Wrapper */
.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: transform var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.12);
}

.service-svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Service Text Content */
.service-text-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 220px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.1px;
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.45;
  transition: color var(--transition-fast);
}

.service-card:hover .service-desc {
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive "Get a Free Quote" Modal
   ========================================================================== */

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.quote-modal-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 26, 36, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-bounce);
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-red);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 26px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 26, 36, 0.15);
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
}

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

/* Modal Form Controls */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.required {
  color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0D1622;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
  background: rgba(229, 26, 36, 0.04);
  box-shadow: 0 0 0 3px rgba(229, 26, 36, 0.2);
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
}

.form-success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success-msg.show {
  display: flex;
  animation: fadeInUp 0.4s ease-out forwards;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */

/* Large Desktop / High-DPI screens */
@media (max-width: 1400px) {
  .header-container,
  .hero-container,
  .services-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .nav-list {
    gap: 22px;
  }
  
  .service-card {
    padding: 24px 14px 28px;
  }
  
  .service-title {
    font-size: 0.98rem;
  }
  
  .service-desc {
    font-size: 0.78rem;
  }
}

/* Medium Desktop & Tablet Landscape */
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  .site-header .header-action,
  .site-header .btn-phone {
    display: none !important;
  }
  
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card:nth-child(3) {
    border-right: none;
  }
  
  .service-card:nth-child(-n+3) {
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .hero-signature-box {
    margin-bottom: 16px;
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .site-header {
    padding: 22px 0;
  }

  .header-container {
    padding: 0 24px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    width: 150px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .logo-image {
    height: 38px;
    transform: scale(2.1);
    transform-origin: left center;
  }

  .hero-section {
    min-height: auto;
    padding-top: 110px;
  }
  
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  
  .hero-signature-box {
    align-self: flex-end;
    margin-top: 20px;
  }
  
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .site-header .header-action,
  .site-header .btn-phone,
  .header-action,
  .btn-phone {
    display: none !important;
  }

  .mobile-drawer-footer .btn-phone {
    display: inline-flex !important;
  }
}

/* Mobile Devices (Matches Reference Design) */
@media (max-width: 600px) {
  /* Mobile Header - Increased size & perfect vertical centering */
  .site-header {
    padding: 20px 0;
    background: rgba(5, 9, 14, 0.95);
    backdrop-filter: blur(12px);
  }

  .header-container {
    padding: 0 18px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand-logo {
    width: 145px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .logo-image {
    height: 38px;
    transform: scale(2.15);
    transform-origin: left center;
    display: block;
  }

  .mobile-logo {
    height: 34px;
    transform: scale(2.0);
    transform-origin: left center;
  }
  
  .site-header .header-action,
  .site-header .btn-phone,
  .header-action {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    align-self: center;
  }

  .mobile-menu-btn .hamburger-line {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
  }

  /* Mobile Hero Section */
  .hero-section {
    min-height: auto;
    padding-top: 250px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 330px;
    background-size: cover;
    background-position: center top;
    transform: none !important;
  }

  .hero-bg-overlay {
    background: linear-gradient(
      180deg, 
      rgba(5, 9, 14, 0.05) 0%, 
      rgba(5, 9, 14, 0.35) 40%, 
      rgba(5, 9, 14, 0.94) 75%, 
      #05090E 100%
    );
  }

  .hero-container {
    padding: 0 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .hero-content-wrapper {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 2px;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-headline {
    font-size: clamp(2.1rem, 7.8vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 0.90rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .hero-cta-group {
    width: 100%;
    max-width: 250px;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    height: 48px;
    padding: 0 22px;
    font-size: 0.94rem;
    font-weight: 700;
    justify-content: center;
  }

  .hero-cta-group .btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
  }
  
  /* Hide hero signature script on mobile to match reference */
  .hero-signature-box {
    display: none;
  }
  
  /* Mobile 6 Services Strip (2-Column Rounded Dark Cards Grid) */
  .services-strip {
    background: transparent;
    border-top: none;
    box-shadow: none;
    padding: 0 0 36px;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    width: 100%;
  }
  
  .service-card {
    background: #09101A;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    padding: 20px 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transform: none !important;
  }

  .service-card::before {
    display: none;
  }
  
  .service-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-svg {
    width: 36px;
    height: 36px;
  }

  .service-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    max-width: 100%;
  }

  .service-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3px;
    text-align: center;
  }

  .service-subtitle {
    font-size: 0.74rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    display: block;
  }

  .quote-modal-card {
    padding: 26px 20px;
  }
}

/* ==========================================================================
   About Section (Clean White Showcase)
   ========================================================================== */

.about-section {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  color: #111827;
  padding: 96px 0 100px;
  z-index: 10;
}

.about-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Left Image Column */
.about-image-column {
  position: relative;
  width: 100%;
}

.about-image-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  background: #0D1622;
}

.about-image {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover .about-image {
  transform: scale(1.025);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Right Content Column */
.about-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
}

/* Eyebrow Tag */
.about-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

/* Main Heading */
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.about-heading .heading-line {
  display: block;
}

/* Description Text */
.about-description {
  color: #4B5563;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 34px;
}

/* 4 Value Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 24px 0;
  margin-bottom: 34px;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px;
  border-right: 1px solid #E5E7EB;
  transition: transform var(--transition-fast);
}

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

.pillar-card:last-child {
  border-right: none;
  padding-right: 0;
}

.pillar-card:hover {
  transform: translateY(-2px);
}

.pillar-icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pillar-svg {
  width: 32px;
  height: 32px;
  transition: transform var(--transition-bounce);
}

.pillar-card:hover .pillar-svg {
  transform: scale(1.12);
}

.pillar-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.35;
  letter-spacing: -0.1px;
}

/* About Section Button */
.about-action .btn-primary {
  padding: 13px 30px;
  font-size: 0.96rem;
  box-shadow: 0 8px 25px rgba(229, 26, 36, 0.35);
}

/* About Section Responsive Media Queries */
@media (max-width: 1400px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    padding: 70px 0 80px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-content-column {
    max-width: 100%;
  }
  
  .about-image {
    max-height: 440px;
  }
}

@media (max-width: 768px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
  }
  
  .pillar-card {
    padding: 0;
    border-right: none;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 55px 0 65px;
  }
  
  .about-container {
    padding: 0 20px;
  }
  
  .about-heading {
    font-size: 2.1rem;
  }
  
  .about-description {
    font-size: 0.95rem;
  }
  
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
    padding: 18px 0;
  }
  
  .pillar-card {
    padding: 0;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pillar-icon-box {
    width: 32px;
    height: 32px;
  }

  .pillar-svg {
    width: 28px;
    height: 28px;
  }

  .pillar-title {
    font-size: 0.86rem;
    line-height: 1.3;
  }
  
  .about-action {
    width: 100%;
  }
  
  .about-action .btn-primary {
    width: 100%;
  }
}

/* ==========================================================================
   Services Showcase Section (6 Cards with Photos & Badges)
   ========================================================================== */

.services-showcase-section {
  position: relative;
  width: 100%;
  padding: 55px 0 32px;
  overflow: hidden;
  background-color: var(--bg-black);
}

.services-showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px) brightness(0.65);
  transform: scale(1.04);
  z-index: 1;
}

.services-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(5, 9, 14, 0.90) 0%, 
    rgba(5, 9, 14, 0.82) 40%, 
    rgba(5, 9, 14, 0.94) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.services-showcase-container {
  position: relative;
  z-index: 10;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.section-header-center {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.services-main-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* 6 Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-showcase-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65), 0 0 24px rgba(229, 26, 36, 0.3);
}

/* Image Wrap */
.service-card-image-wrap {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #111827;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

/* Circular Floating Badge */
.service-card-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px auto 12px;
  position: relative;
  z-index: 3;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-showcase-card:hover .service-card-badge {
  transform: scale(1.14);
  box-shadow: 0 6px 20px rgba(229, 26, 36, 0.35);
  border-color: rgba(229, 26, 36, 0.25);
}

.badge-icon-svg {
  width: 25px;
  height: 25px;
}

/* Card Body */
.service-card-body {
  padding: 0 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.service-card-text {
  font-size: 0.82rem;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.45;
}

/* Responsive Media Queries for Services Showcase */
@media (max-width: 1400px) {
  .services-showcase-container {
    padding: 0 30px;
  }

  .services-cards-grid {
    gap: 15px;
  }

  .service-card-title {
    font-size: 0.96rem;
  }

  .service-card-text {
    font-size: 0.78rem;
  }
}

@media (max-width: 1200px) {
  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card-image-wrap {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .services-showcase-section {
    padding: 70px 0 80px;
  }

  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card-image-wrap {
    height: 160px;
  }

  .services-main-heading {
    font-size: 2.1rem;
  }

  .services-main-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .services-showcase-section {
    padding: 55px 0 65px;
  }

  .services-showcase-container {
    padding: 0 20px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
    margin: 0 auto;
  }

  .service-card-image-wrap {
    height: 190px;
  }
}

/* ==========================================================================
   Why Choose Us Section (Side-by-Side Showcase with Signature)
   ========================================================================== */

.why-choose-section {
  position: relative;
  width: 100%;
  background: #04080D;
  padding: 24px 0 24px;
  z-index: 10;
}

.why-choose-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-choose-card {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  border-radius: 16px;
  overflow: hidden;
  background: #080F18;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Left Image Column */
.why-choose-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #111827;
}

.why-choose-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);
}

.why-choose-card:hover .why-choose-img {
  transform: scale(1.03);
}

.why-choose-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 75%, rgba(8, 15, 24, 0.85) 100%);
  pointer-events: none;
}

/* Right Content Column */
.why-choose-content {
  padding: 50px 48px;
  display: flex;
  align-items: center;
  background: #080F18;
}

.why-choose-inner-grid {
  display: grid;
  grid-template-columns: 1.35fr 1px 0.95fr;
  gap: 38px;
  align-items: center;
  width: 100%;
}

/* Benefits Sub-Column */
.why-choose-benefits-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-choose-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-choose-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.why-choose-heading .heading-line {
  display: block;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition-fast);
}

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

.benefit-icon-badge {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(229, 26, 36, 0.45));
}

.benefit-check-svg {
  width: 24px;
  height: 24px;
}

.benefit-text {
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

/* Vertical Divider */
.why-choose-divider-line {
  width: 1px;
  height: 240px;
  background: rgba(255, 255, 255, 0.12);
  align-self: center;
}

/* Signature Sub-Column */
.why-choose-signature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 8px;
}

.signature-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.vision-quote {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  transform: rotate(-4deg);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

.vision-italic {
  display: block;
  color: #FFFFFF;
  margin-top: 2px;
}

.vision-swoosh {
  width: 165px;
  height: auto;
  margin-top: -6px;
  filter: drop-shadow(0 2px 8px var(--red-glow-strong));
  transform: rotate(-3deg);
}

/* Responsive Media Queries for Why Choose Us */
@media (max-width: 1400px) {
  .why-choose-container {
    padding: 0 30px;
  }

  .why-choose-content {
    padding: 40px 32px;
  }

  .why-choose-inner-grid {
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .why-choose-card {
    grid-template-columns: 1fr;
  }

  .why-choose-media {
    height: 360px;
    min-height: auto;
  }

  .why-choose-media-overlay {
    background: linear-gradient(180deg, transparent 75%, rgba(8, 15, 24, 0.85) 100%);
  }

  .why-choose-inner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-choose-divider-line {
    display: none;
  }

  .why-choose-signature-col {
    padding-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 24px 0 24px;
  }

  .why-choose-container {
    padding: 0 20px;
  }

  .why-choose-content {
    padding: 30px 20px;
  }

  .why-choose-heading {
    font-size: 2.1rem;
  }

  .benefit-text {
    font-size: 0.88rem;
  }

  .vision-quote {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Projects Section (Carousel Showcase with Arrows & Lightbox)
   ========================================================================== */

.projects-section {
  position: relative;
  width: 100%;
  background: #05090E;
  padding: 24px 0 60px;
  z-index: 10;
}

.projects-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top Header Row */
.projects-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.projects-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
}

.projects-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.projects-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.projects-main-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 580px;
}

/* View All Projects Button */
.btn-outline-red {
  background: rgba(10, 16, 26, 0.7);
  border: 1.5px solid var(--primary-red);
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(229, 26, 36, 0.25);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.btn-outline-red:hover {
  background: linear-gradient(135deg, #FF2B34 0%, #E51A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 26, 36, 0.55);
}

.btn-outline-red i {
  transition: transform var(--transition-fast);
}

.btn-outline-red:hover i {
  transform: translateX(4px);
}

/* Slider Wrapper */
.projects-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

/* Arrow Navigation Buttons */
.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 15, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
  z-index: 5;
}

.slider-nav-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: scale(1.08);
  box-shadow: 0 8px 25px var(--red-glow-strong);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

/* Slider Viewport Track */
.projects-track-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}

.projects-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Slide Card */
.project-slide-card {
  flex: 0 0 calc((100% - 72px) / 5);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0D1622;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.project-slide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 26, 36, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(229, 26, 36, 0.25);
}

.project-img-box {
  width: 100%;
  height: 215px;
  position: relative;
  overflow: hidden;
}

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

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

.project-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 14, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-slide-card:hover .project-hover-overlay {
  opacity: 1;
}

.project-view-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px var(--red-glow-strong);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-slide-card:hover .project-view-icon {
  transform: scale(1);
}

/* Pagination Dots */
.projects-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pagination-dot.active {
  background: var(--primary-red);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 10px var(--red-glow-strong);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 26, 36, 0.15);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--primary-red);
  transform: rotate(90deg);
}

/* Responsive Media Queries for Projects */
@media (max-width: 1400px) {
  .projects-container {
    padding: 0 30px;
  }

  .project-slide-card {
    flex: 0 0 calc((100% - 54px) / 4);
  }
}

@media (max-width: 1100px) {
  .projects-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .project-slide-card {
    flex: 0 0 calc((100% - 36px) / 3);
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 24px 0 50px;
  }

  .project-slide-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .project-img-box {
    height: 180px;
  }

  .projects-main-heading {
    font-size: 2.1rem;
  }

  .projects-main-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .projects-section {
    padding: 20px 0 40px;
  }

  .projects-container {
    padding: 0 20px;
  }

  .projects-slider-wrapper {
    gap: 8px;
  }

  .slider-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .project-slide-card {
    flex: 0 0 100%;
  }

  .project-img-box {
    height: 220px;
  }
}

/* ==========================================================================
   Testimonials Section (Trusted by Local Homeowners)
   ========================================================================== */

.testimonials-section {
  position: relative;
  width: 100%;
  background: #F6F8FB;
  padding: 80px 0 90px;
  z-index: 10;
}

.testimonials-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Left-Aligned Header */
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 38px;
}

.testimonials-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonials-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* 3 Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 32px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1), 0 0 24px rgba(229, 26, 36, 0.08);
  border-color: rgba(229, 26, 36, 0.3);
}

/* Red Quotation Icon */
.testimonial-quote-icon {
  width: 32px;
  height: 24px;
  margin-bottom: 22px;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover .testimonial-quote-icon {
  transform: scale(1.1);
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Quote Paragraph */
.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #334155;
  font-weight: 450;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* Footer with Author & 5 Red Stars */
.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  padding-top: 18px;
  margin-top: auto;
}

.testimonial-author-box {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.testimonial-author-location {
  font-size: 0.84rem;
  font-weight: 500;
  color: #64748B;
  margin-top: 2px;
}

/* 5 Red Stars */
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 3.5px;
  color: var(--primary-red);
  font-size: 0.88rem;
  filter: drop-shadow(0 1px 3px rgba(229, 26, 36, 0.25));
}

/* Responsive Media Queries for Testimonials */
@media (max-width: 1200px) {
  .testimonials-container {
    padding: 0 30px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 24px 26px;
  }
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0 70px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card:last-child {
    grid-column: span 1;
  }

  .testimonials-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 520px) {
  .testimonials-section {
    padding: 50px 0 60px;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonial-card {
    padding: 26px 20px 22px;
  }

  .testimonial-text {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   Contact Section (Get In Touch Split Layout with Form)
   ========================================================================== */

.contact-section {
  position: relative;
  width: 100%;
  background: #05090E;
  padding: 85px 0 95px;
  z-index: 10;
  border-top: 1px solid var(--border-subtle);
}

.contact-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Split Card */
.contact-split-card {
  display: grid;
  grid-template-columns: 1.3fr 1px 1.05fr;
  gap: 40px;
  align-items: stretch;
  background: transparent;
}

/* Left Column: Text + Photo */
.contact-left-col {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.6vw, 2.35rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Info List */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-fast);
}

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

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--primary-red);
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--red-glow-strong);
}

.contact-info-link,
.contact-info-text {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-link:hover {
  color: var(--primary-red);
}

/* Left Visual Photo Box */
.contact-media-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0E1622;
}

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

.contact-media-box:hover .contact-img {
  transform: scale(1.06);
}

.contact-media-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Center Vertical Red Divider */
.contact-vertical-divider {
  width: 1px;
  height: 100%;
  min-height: 280px;
  background: rgba(229, 26, 36, 0.4);
  align-self: center;
}

/* Right Column: Contact Form */
.contact-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8px;
}

.contact-quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-form-row {
  width: 100%;
}

.contact-form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-group {
  width: 100%;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.94rem;
  color: #0F172A;
  font-family: var(--font-primary);
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 26, 36, 0.25);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #64748B;
  font-weight: 450;
}

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

/* Submit Button */
.contact-form-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.btn-contact-submit {
  background: var(--primary-red);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 13px 38px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--red-glow-strong);
  transition: all var(--transition-smooth);
  width: auto;
}

.btn-contact-submit:hover {
  background: #FF2B34;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229, 26, 36, 0.6);
}

.btn-contact-submit:active {
  transform: scale(0.98);
}

.btn-contact-submit i {
  transition: transform var(--transition-fast);
}

.btn-contact-submit:hover i {
  transform: translateX(4px);
}

/* Feedback Message */
.contact-form-feedback {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  animation: fadeIn 0.3s ease;
}

.contact-form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Responsive Media Queries for Contact */
@media (max-width: 1200px) {
  .contact-container {
    padding: 0 30px;
  }

  .contact-split-card {
    grid-template-columns: 1fr 1px 1fr;
    gap: 28px;
  }

  .contact-left-col {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .contact-split-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-vertical-divider {
    display: none;
  }

  .contact-left-col {
    grid-template-columns: 1fr 1fr;
  }

  .contact-right-col {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 70px;
  }

  .contact-left-col {
    grid-template-columns: 1fr;
  }

  .contact-media-box {
    min-height: 240px;
  }

  .contact-form-row.two-cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-heading {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 50px 0 60px;
  }

  .contact-container {
    padding: 0 20px;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

/* ==========================================================================
   Service Areas Section (Mid North Coast Grid)
   ========================================================================== */

.service-areas-section {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  padding: 42px 0 42px;
  z-index: 10;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-areas-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-areas-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Left Header Block */
.service-areas-header {
  flex-shrink: 0;
  min-width: 250px;
}

.service-areas-eyebrow {
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-areas-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.18;
  letter-spacing: -0.4px;
}

/* Right Grid (2 rows of 5) */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 24px;
  flex-grow: 1;
}

.service-area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast);
  user-select: none;
}

.service-area-item:hover {
  transform: translateY(-2px);
}

.service-area-icon {
  width: 17px;
  height: 21px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(229, 26, 36, 0.3));
  transition: transform var(--transition-fast);
}

.service-area-item:hover .service-area-icon {
  transform: scale(1.18);
}

.service-area-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-area-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.service-area-item:hover .service-area-name {
  color: var(--primary-red);
}

/* Responsive Media Queries for Service Areas */
@media (max-width: 1350px) {
  .service-areas-container {
    padding: 0 30px;
  }

  .service-areas-layout {
    gap: 32px;
  }

  .service-areas-grid {
    gap: 16px 18px;
  }

  .service-area-name {
    font-size: 0.88rem;
  }
}

@media (max-width: 1100px) {
  .service-areas-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }
}

@media (max-width: 850px) {
  .service-areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 16px;
  }
}

@media (max-width: 550px) {
  .service-areas-section {
    padding: 34px 0 38px;
  }

  .service-areas-container {
    padding: 0 20px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
  }

  .service-area-name {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Footer Section (5 Columns with Dividers & Bottom Bar)
   ========================================================================== */

.site-footer {
  position: relative;
  width: 100%;
  background: #04080D;
  padding: 80px 0 28px;
  z-index: 10;
  color: #FFFFFF;
}

.footer-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 5 Columns Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1px 0.95fr 1px 1.05fr 1px 1.15fr 1px 1.35fr;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 52px;
}

/* Vertical Dividers */
.footer-col-divider {
  width: 1px;
  height: 100%;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

/* Brand Column */
.footer-col.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 22px;
  transition: transform var(--transition-fast);
}

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

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.7));
}

.footer-tagline {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 280px;
}

/* Column Titles */
.footer-col-title {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* Link Lists */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link,
.footer-service-link {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-nav-link:hover,
.footer-service-link:hover {
  color: var(--primary-red);
  transform: translateX(4px);
}

/* Service Areas Text Column */
.footer-areas-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-areas-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.62;
}

/* Contact Info Column */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-badge {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--red-glow-strong);
}

.footer-contact-val {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.footer-contact-val:hover {
  color: var(--primary-red);
}

/* Facebook Icon */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #04080D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.footer-social-icon:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px var(--red-glow-strong);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.designer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.designer-link:hover {
  color: var(--primary-red);
}

/* Responsive Media Queries for Footer */
@media (max-width: 1250px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .footer-col-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

@media (max-width: 520px) {
  .site-footer {
    padding: 50px 0 22px;
  }

  .footer-container {
    padding: 0 20px;
  }

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

/* ==========================================================================
   Luxury Architectural Micro-Interactions (Zoom, Card Lift, Custom Cursor)
   ========================================================================== */

/* 1. Subtle Luxury Architectural Image Zoom */
.about-image-card,
.service-card-image-wrap,
.why-choose-media,
.project-img-box,
.contact-media-box {
  overflow: hidden;
}

.about-image-card .about-image,
.service-card-image-wrap .service-card-img,
.why-choose-media .why-choose-img,
.project-img-box .project-img,
.contact-media-box .contact-media-img {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
  will-change: transform;
}

.about-image-card:hover .about-image,
.service-showcase-card:hover .service-card-img,
.why-choose-card:hover .why-choose-img,
.project-slide-card:hover .project-img,
.contact-media-box:hover .contact-media-img {
  transform: scale(1.045);
}

/* 2. Refined Architectural Card Lift on Hover */
.service-showcase-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.45s ease;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65), 0 0 24px rgba(229, 26, 36, 0.18);
  border-color: rgba(229, 26, 36, 0.4);
}

.testimonial-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.45s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(229, 26, 36, 0.15);
}

.service-area-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.35s ease, 
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.service-area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pillar-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-3px);
}

/* 3. Subtle Custom Architectural Cursor (Desktop Only) */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.12s ease;
  box-shadow: 0 0 8px var(--red-glow-strong);
  opacity: 0;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(229, 26, 36, 0.45);
  background: rgba(229, 26, 36, 0.03);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              background-color 0.35s ease, 
              opacity 0.3s ease;
  opacity: 0;
  backdrop-filter: blur(1px);
}

/* Cursor State on Hovering Interactive Elements */
.custom-cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(229, 26, 36, 0.85);
  background: rgba(229, 26, 36, 0.08);
  box-shadow: 0 0 18px rgba(229, 26, 36, 0.28);
}

.custom-cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(1.35);
}

/* Hide custom cursor on touch & mobile screens */
@media (pointer: coarse), (max-width: 900px) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}








