/* ==========================================================================
   TOP FOUR TECHNICAL SERVICES LLC - Dubai Ultra-Luxury Signature Edition (V4.0)
   ========================================================================== */

:root {
  /* Ultra-Luxury Canvas */
  --bg-deep: #020610;
  --bg-dark: #070e1d;
  --bg-card-dark: #0c182d;
  --bg-card-glass: rgba(12, 24, 45, 0.78);
  
  --bg-main: #f8fafc;
  --bg-card-light: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --primary: #050d1a;
  --primary-navy: #0a192f;
  --primary-light: #162a45;
  
  /* Imperial Dubai Gold Palette */
  --gold-sheen: #fff2b2;
  --gold-start: #f8d070;
  --gold: #d4af37;
  --gold-rich: #c59b27;
  --gold-dark: #936e10;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.4);
  
  --accent: #d97706;
  --accent-light: #f59e0b;
  
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border: rgba(226, 232, 240, 0.85);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  /* 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;
  
  /* Radii & Shadows */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 14px 40px -10px rgba(5, 13, 26, 0.08), 0 4px 14px -2px rgba(5, 13, 26, 0.04);
  --shadow-card-hover: 0 25px 55px -12px rgba(5, 13, 26, 0.18), 0 0 25px rgba(212, 175, 55, 0.2);
  --shadow-dark-card: 0 25px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.4);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Keyframes & Dynamic Motion Animations
   ========================================================================== */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.65); }
}

@keyframes shimmerEffect {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes marqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pingRing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.float-slow-delayed {
  animation: floatSlow 6s ease-in-out 3s infinite;
}

/* Reveal on Scroll Animations */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Luxury Typography & Badges
   ========================================================================== */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff2b2 0%, #f8d070 30%, #d4af37 70%, #936e10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stitch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--gold-subtle);
  color: #c59b27;
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.stitch-badge.primary {
  background: rgba(5, 13, 26, 0.06);
  color: var(--primary);
  border: 1px dashed rgba(5, 13, 26, 0.25);
}

.stitch-badge.white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px auto;
}

.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  color: var(--primary);
  margin-top: 14px;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Luxury Top Announcement Bar & Live Ticker
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #020610 0%, #070e1d 50%, #020610 100%);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 1001;
}

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

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  overflow: hidden;
}

.top-bar-info a, .top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 600;
  transition: var(--transition-fast);
}

.top-bar-info a:hover {
  color: var(--gold-start);
}

.top-bar-info i {
  color: var(--gold);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pingRing 1.8s infinite;
}

/* ==========================================================================
   Infinite Marquee Trust Ticker
   ========================================================================== */
.luxury-marquee-wrap {
  background: #040914;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.luxury-marquee {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeAnim 35s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.marquee-item i {
  color: var(--gold);
}

.marquee-separator {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

/* ==========================================================================
   Single-Line Luxury Navbar (Never Wraps to 2 Lines)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(5, 13, 26, 0.08);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px 24px;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #070e1d 0%, #162a45 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-start);
  box-shadow: 0 6px 18px rgba(5, 13, 26, 0.3);
  border: 1px dashed var(--gold-border);
  font-size: 1.2rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-icon {
  transform: rotate(-6deg) scale(1.06);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.14em;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links & System */
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.14);
  border: 1px dashed rgba(212, 175, 55, 0.5);
}

.nav-link i.fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  color: var(--gold-rich);
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Mega Dropdown for Services */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  width: 500px;
  box-shadow: 0 25px 50px rgba(5, 13, 26, 0.18), 0 0 0 1px rgba(212, 175, 55, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-subtle);
  transform: translateX(3px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-rich);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dropdown-text h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.dropdown-text p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

/* Nav Actions */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37 0%, #b87b14 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f8d070 0%, #d4af37 100%);
  color: #050d1a;
  text-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card-light);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #25d366 0%, #1ebd5a 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  border: none;
  box-shadow: 0 6px 20px var(--whatsapp-glow);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--accent);
}

/* ==========================================================================
   Mobile Drawer Navigation
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: #070e1d;
  color: #ffffff;
  z-index: 2000;
  padding: 24px;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  border-left: 1px dashed var(--gold-border);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 16, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 22px;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  font-size: 0.98rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-start);
  border-color: var(--gold-border);
}

.mobile-nav-links a i {
  color: var(--gold);
  width: 20px;
}

/* ==========================================================================
   Ultra-Luxury Hero Section with Glow & Motion
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #020610 0%, #070e1d 50%, #0a192f 100%);
  color: #ffffff;
  padding: 95px 0 105px 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -150px;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 18px 0 16px 0;
}

.hero-subtitle {
  font-size: 1.14rem;
  color: #cbd5e1;
  margin-bottom: 34px;
  max-width: 580px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 26px;
  border-top: 1px dashed rgba(212, 175, 55, 0.35);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff2b2 0%, #f8d070 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.trust-item span {
  font-size: 0.82rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 700;
}

/* Hero Media Card */
.hero-card-wrap {
  position: relative;
}

.hero-image-card {
  position: relative;
  background: var(--bg-card-glass);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 30px 65px -15px rgba(0, 0, 0, 0.7);
  border: 1px dashed var(--gold-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.floating-badge {
  position: absolute;
  background: rgba(7, 14, 29, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px dashed var(--gold-border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-white);
  z-index: 5;
}

.floating-badge.badge-top {
  top: -20px;
  right: -20px;
}

.floating-badge.badge-bottom {
  bottom: -20px;
  left: -20px;
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d4af37 0%, #936e10 100%);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.floating-info h4 {
  font-size: 0.96rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.floating-info p {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Quick Estimator Luxury Bar
   ========================================================================== */
.quick-estimator-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  margin-bottom: 50px;
}

.estimator-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  box-shadow: 0 25px 60px -10px rgba(5, 13, 26, 0.14), 0 0 0 1px rgba(212, 175, 55, 0.35);
  border: 1px dashed var(--gold-border);
}

.estimator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.estimator-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.estimator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.94rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Full Detailed Scope Module (From PDF Slide 11)
   ========================================================================== */
.scope-detailed-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.scope-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.scope-chip-card {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.scope-chip-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.scope-chip-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-subtle);
  color: var(--gold-rich);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.scope-chip-text h4 {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.scope-chip-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   About Section & Mosaic
   ========================================================================== */
.about-section {
  padding: 85px 0;
}

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

.about-images-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.mosaic-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.mosaic-item:nth-child(2) {
  margin-top: 30px;
}

.mosaic-item:nth-child(3) {
  margin-top: -30px;
}

.about-badge-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #070e1d;
  color: #ffffff;
  padding: 18px 26px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.about-badge-overlay strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  background: linear-gradient(135deg, #fff2b2 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.about-badge-overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  font-weight: 800;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  color: var(--primary);
  line-height: 1.2;
  margin: 14px 0 18px 0;
  font-weight: 900;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.65;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.7;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.94rem;
  color: var(--primary);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Services Grid & Luxury Cards
   ========================================================================== */
.services-section {
  padding: 85px 0;
  background-color: var(--bg-subtle);
}

.service-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--accent);
}

.filter-btn.active {
  background: #070e1d;
  color: #ffffff;
  border-color: var(--gold-border);
  box-shadow: 0 6px 20px rgba(5, 13, 26, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

.service-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-icon-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #070e1d 0%, #162a45 100%);
  color: var(--gold-start);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border: 1px dashed var(--gold-border);
}

.service-body {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-sublist {
  list-style: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.service-sublist li {
  font-size: 0.86rem;
  color: var(--text-main);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.service-sublist li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
}

.service-footer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.service-footer-action a {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-footer-action a:hover {
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   AMC Section (Luxury Dark)
   ========================================================================== */
.amc-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #020610 0%, #070e1d 60%, #0a192f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.amc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.amc-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin: 16px 0 18px 0;
  line-height: 1.2;
}

.amc-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.amc-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.amc-plan-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.amc-plan-pill:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.amc-plan-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d4af37 0%, #936e10 100%);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.amc-plan-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.amc-plan-text p {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.amc-banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed var(--gold-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

.amc-banner-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ==========================================================================
   Why Choose Us (6 Pillars)
   ========================================================================== */
.why-us-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 26px;
}

.why-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-normal);
  position: relative;
}

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

.why-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(5, 13, 26, 0.07);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-rich);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Interactive Service Coverage Areas with Community Dispatch Action
   ========================================================================== */
.coverage-section {
  padding: 85px 0;
  background: var(--bg-subtle);
}

.coverage-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px dashed var(--gold-border);
}

.areas-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.area-chip i {
  color: var(--accent);
}

.area-chip:hover {
  background: #070e1d;
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(5, 13, 26, 0.25);
}

.area-chip:hover i {
  color: var(--gold-start);
}

/* ==========================================================================
   Project Gallery
   ========================================================================== */
.gallery-section {
  padding: 85px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.94) 0%, rgba(5, 13, 26, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: var(--transition-fast);
  color: #ffffff;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.82rem;
  color: var(--gold-start);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

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

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

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 85px 0;
  background: var(--bg-subtle);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.faq-accordion-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(5, 13, 26, 0.08);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px 24px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
}

.contact-info-panel {
  background: linear-gradient(135deg, #020610 0%, #070e1d 50%, #0a192f 100%);
  color: #ffffff;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold-border);
  box-shadow: var(--shadow-dark-card);
}

.contact-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  margin: 14px 0 16px 0;
}

.contact-info-panel p {
  color: #cbd5e1;
  font-size: 0.96rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-start);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.contact-text-box h5 {
  font-size: 0.86rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  font-weight: 800;
}

.contact-text-box a, .contact-text-box p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

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

.contact-form-panel {
  background: #ffffff;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold-border);
  box-shadow: var(--shadow-card);
}

.contact-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 28px;
}

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

.form-group-full {
  margin-bottom: 18px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #020610 0%, #010308 100%);
  color: #94a3b8;
  padding: 75px 0 26px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-start);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
}

/* Floating Actions */
.floating-mobile-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition-fast);
}

.float-whatsapp {
  background: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  animation: pingRing 2.5s infinite;
}

.float-phone {
  background: linear-gradient(135deg, #070e1d 0%, #162a45 100%);
  border: 1px solid var(--gold-border);
  color: var(--gold-start);
}

.float-btn:hover {
  transform: scale(1.12);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
  .nav-links {
    display: none !important;
  }
  
  .menu-toggle {
    display: flex !important;
  }
  
  .nav-cta-wrap .btn-primary {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .amc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  
  .top-bar-info {
    justify-content: center;
    gap: 14px;
  }
  
  .top-bar-actions {
    display: none;
  }
  
  .form-grid-2,
  .about-features-list,
  .amc-plans-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    position: static;
    margin-top: 12px;
  }
  
  .floating-badge.badge-top,
  .floating-badge.badge-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  
  .hero-image-card {
    padding: 8px;
  }
  
  .hero-img-main {
    height: 280px;
  }
}
