/* ==========================================================================
   ARK PROMOTERS PVT LTD - LUXURY GOLD & WHITE DESIGN SYSTEM
   HIGH CONTRAST & MAXIMUM LEGIBILITY EDITION
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Luxury Gold Palette */
  --gold-50: #FAF6EB;
  --gold-100: #F3EACC;
  --gold-200: #E6D499;
  --gold-300: #D9BE66;
  --gold-400: #D4AF37;
  --gold-500: #C5A059;
  --gold-600: #B38936;
  --gold-700: #8C681C;
  
  --gold-gradient: linear-gradient(135deg, #E5C358 0%, #F5E7B2 50%, #C59B27 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F3D472 0%, #FFF2CC 50%, #D4AF37 100%);
  --dark-navy: #0A0F1D;
  --dark-card: #111827;
  --dark-input: #1E293B;
  
  /* White & Neutral Palette */
  --white: #FFFFFF;
  --off-white: #FCFCFD;
  --bg-sand: #F8F6F0;
  --bg-pearl: #F4F6F9;
  --bg-slate: #0B111E;
  
  /* High-Contrast Text Colors */
  --text-dark: #0F172A;
  --text-body-dark: #334155;
  --text-light: #FFFFFF;
  --text-light-muted: #CBD5E1;
  --text-gold: #D4AF37;
  --text-gold-light: #F3E5AB;
  
  /* Borders & Shadows */
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-gold-solid: #D4AF37;
  --border-subtle: #E2E8F0;
  --border-dark-subtle: #334155;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.35);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-display: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-max: 1320px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s ease-in-out;
}

/* Reset & Base */
*, *::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(--white);
  color: var(--text-body-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

ul {
  list-style: none;
}

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

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

/* Utilities */
.text-gold {
  color: var(--text-gold) !important;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: #FEF9EE;
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-full);
  color: #8C681C;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  color: #64748B;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #1A1303;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-600);
  font-weight: 700;
}

.btn-outline-gold:hover {
  background: var(--gold-600);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.btn-white:hover {
  background: var(--gold-50);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */
.top-bar {
  background: #0B111E;
  color: #CBD5E1;
  font-size: 0.825rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  font-weight: 500;
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

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

.main-header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.2);
  width: 100%;
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-icon-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo:hover .brand-logo-icon-img {
  transform: scale(1.05);
}

.brand-logo-img {
  height: 52px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-brand-col .brand-logo {
  margin-bottom: 0.75rem;
}

.footer-brand-col .brand-logo-icon-img {
  height: 50px;
  max-height: 50px;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B111E;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: #0B111E;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-title span {
  color: var(--gold-600);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748B;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1E293B;
  padding: 0.4rem 0.2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.phone-quick {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  cursor: pointer;
}

.phone-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1.5px solid var(--border-gold-solid);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.phone-details {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748B;
  line-height: 1;
  white-space: nowrap;
}

.phone-number {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
}

.phone-quick:hover .phone-number {
  color: var(--gold-600);
}

.nav-booking-btn {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.85rem !important;
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Floating Quick Actions Bar */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 999;
}

.floating-btn {
  width: 48px;
  height: 48px;
  background: #0B111E;
  color: var(--text-gold);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  gap: 0.15rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.floating-btn span {
  font-size: 0.6rem;
  font-weight: 700;
}

.floating-btn:hover {
  background: var(--gold-gradient);
  color: #0B111E;
  transform: translateX(-4px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: #0B111E;
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 35%, rgba(212, 175, 55, 0.25) 0%, transparent 60%),
    linear-gradient(90deg, rgba(11, 17, 30, 0.92) 0%, rgba(11, 17, 30, 0.70) 50%, rgba(11, 17, 30, 0.40) 100%),
    url('https://images.pexels.com/photos/1216589/pexels-photo-1216589.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1') center/cover no-repeat;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-full);
  color: #FFD700;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(11, 17, 30, 0.65);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stat-icon {
  font-size: 1.6rem;
  color: var(--text-gold);
}

.hero-stat-info strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-info span {
  font-size: 0.75rem;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-cta-btns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--border-gold-solid);
  background: #111827;
}

.hero-visual-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.hero-floating-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 17, 30, 0.92);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-gold);
}

.tag-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

/* Consultation Bar */
.consultation-bar-wrap {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 3.5rem;
}

.consultation-bar {
  background: #0F172A;
  border: 2px solid var(--border-gold-solid);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 180px;
  gap: 1.25rem;
  align-items: center;
}

.consultation-header {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 1rem;
}

.consultation-header h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.consultation-header h3 span {
  color: var(--text-gold);
}

.consultation-header p {
  font-size: 0.8rem;
  color: #CBD5E1;
}

.form-group-quick label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F8FAFC;
  margin-bottom: 0.4rem;
}

.form-group-quick select, .form-group-quick input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #1E293B;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Trust Ribbon */
.trust-ribbon {
  background: #0B111E;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.25rem 0;
}

.trust-ribbon-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--border-gold-solid);
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 700;
}

.trust-text span {
  font-size: 0.78rem;
  color: #CBD5E1;
}

/* ==========================================================================
   🔥 HIGH CONTRAST CONSTRUCTION COST CALCULATOR SECTION 🔥
   ========================================================================== */
.calculator-section {
  padding: 6.5rem 0;
  background: #090E1A !important;
  color: #FFFFFF !important;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--border-gold-solid);
  border-bottom: 2px solid var(--border-gold-solid);
}

.calc-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.calculator-wrapper {
  background: #0F172A !important;
  border: 2px solid var(--border-gold-solid) !important;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.calc-header h3 {
  font-size: 1.85rem;
  color: #FFFFFF !important;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.calc-header p {
  color: #CBD5E1 !important;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.calc-step-group {
  margin-bottom: 1.85rem;
}

.calc-step-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFD700 !important;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calc-input-range {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.calc-input-range input[type="range"] {
  flex-grow: 1;
  height: 8px;
  background: #334155;
  border-radius: 4px;
  outline: none;
  accent-color: var(--border-gold-solid);
}

.range-val-badge {
  background: var(--gold-gradient);
  color: #0B111E;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Package Grade Radio Cards (High Contrast Dark & Gold) */
.calc-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.calc-radio-card {
  position: relative;
  background: #1E293B !important;
  border: 1.5px solid #334155 !important;
  border-radius: var(--radius-md);
  padding: 1.35rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.calc-radio-card input {
  position: absolute;
  opacity: 0;
}

.calc-radio-card h4 {
  font-size: 1.05rem;
  color: #FFFFFF !important;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.calc-radio-card span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFD700 !important;
  display: block;
  margin-bottom: 0.25rem;
}

.calc-radio-card small {
  display: block;
  font-size: 0.75rem;
  color: #94A3B8 !important;
  line-height: 1.35;
  font-weight: 600;
}

/* ACTIVE Selected Package Card */
.calc-radio-card.active, .calc-radio-card:hover {
  background: #25334D !important;
  border: 2px solid var(--border-gold-solid) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.calc-radio-card.active h4 {
  color: #FFFFFF !important;
}

.calc-radio-card.active span {
  color: #FFE600 !important;
}

.calc-radio-card.active small {
  color: #E2E8F0 !important;
}

/* Addons Checkbox Labels (High Contrast) */
.calc-addons-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #1E293B !important;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #334155 !important;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: #F8FAFC !important;
  transition: var(--transition);
}

.addon-checkbox-label:hover {
  border-color: var(--border-gold-solid) !important;
  background: #25334D !important;
}

.addon-checkbox-label input {
  accent-color: var(--border-gold-solid);
  width: 18px;
  height: 18px;
}

/* Calculator Summary Box */
.calc-summary-card {
  background: #0B111E !important;
  border: 2px solid var(--border-gold-solid) !important;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.summary-title {
  font-size: 1.35rem;
  color: #FFFFFF !important;
  font-weight: 800;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.summary-breakdown {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: #CBD5E1 !important;
  font-weight: 600;
}

.summary-item strong {
  color: #FFFFFF !important;
  font-weight: 800;
}

.total-price-box {
  background: rgba(212, 175, 55, 0.18) !important;
  border: 2px solid var(--border-gold-solid) !important;
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.total-price-box span {
  display: block;
  font-size: 0.85rem;
  color: #FFD700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.total-price-box strong {
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFFFFF !important;
  display: block;
  line-height: 1.1;
  margin-top: 0.35rem;
}

/* ==========================================================================
   🔥 HIGH CONTRAST BOOKING WIZARD SECTION 🔥
   ========================================================================== */
.booking-section {
  padding: 6.5rem 0;
  background: #090E1A !important;
  color: #FFFFFF !important;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--border-gold-solid);
}

.booking-wizard-card {
  background: #0F172A !important;
  border: 2px solid var(--border-gold-solid) !important;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  max-width: 1050px;
  margin: 0 auto;
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 3.5rem;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.wizard-progress-fill {
  position: absolute;
  top: 24px;
  left: 50px;
  height: 3px;
  background: var(--gold-gradient);
  width: 0%;
  z-index: 2;
  transition: width 0.4s ease;
}

.wizard-step-node {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.node-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0B111E;
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.wizard-step-node.active .node-circle {
  background: var(--gold-gradient);
  color: #0B111E;
  border-color: #FFF;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  transform: scale(1.1);
}

.wizard-step-node.completed .node-circle {
  background: #10B981;
  border-color: #10B981;
  color: #FFF;
}

.node-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-step-node.active .node-label {
  color: #FFD700;
}

.wizard-step-pane {
  display: none;
  animation: stepFadeIn 0.35s ease;
}

.wizard-step-pane.active {
  display: block;
}

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

.step-pane-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.step-pane-header h3 {
  color: #FFFFFF !important;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.step-pane-header p {
  color: #CBD5E1 !important;
  font-size: 1rem;
  font-weight: 500;
}

/* Visual Category Cards (Step 1) */
.visual-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.visual-choice-card {
  background: #1E293B !important;
  border: 1.5px solid #334155 !important;
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.visual-choice-card h4 {
  font-size: 1.1rem;
  color: #FFFFFF !important;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.visual-choice-card span {
  font-size: 0.82rem;
  color: #94A3B8 !important;
  display: block;
  font-weight: 600;
}

.choice-icon {
  font-size: 2.2rem;
  color: #FFD700;
  margin-bottom: 0.85rem;
}

.visual-choice-card:hover, .visual-choice-card.selected {
  background: #25334D !important;
  border: 2px solid var(--border-gold-solid) !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.visual-choice-card.selected span {
  color: #E2E8F0 !important;
}

/* Facing Pills (Step 2) */
.facing-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.facing-pill {
  padding: 0.95rem 1rem;
  background: #1E293B;
  border: 1.5px solid #334155;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.facing-pill.selected, .facing-pill:hover {
  background: var(--gold-gradient);
  color: #0B111E;
  border-color: #FFF;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Time Slots (Step 3) */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.timeslot-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #1E293B;
  border: 1.5px solid #334155;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.timeslot-pill.selected, .timeslot-pill:hover {
  background: #25334D;
  border: 2px solid var(--border-gold-solid);
  color: #FFD700;
}

/* Engineer Select Cards */
.engineer-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.engineer-card-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #1E293B;
  border: 1.5px solid #334155;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.engineer-card-pill img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold-solid);
}

.engineer-card-pill h5 {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.engineer-card-pill span {
  font-size: 0.78rem;
  color: #CBD5E1;
  font-weight: 600;
}

.engineer-card-pill.selected, .engineer-card-pill:hover {
  background: #25334D;
  border: 2px solid var(--border-gold-solid);
}

.wizard-nav-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* Booking Confirmation Ticket */
.booking-ticket-wrap {
  background: #0B111E;
  border: 2px solid var(--border-gold-solid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  max-width: 620px;
  margin: 0 auto;
}

.ticket-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B111E;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.ticket-id-tag {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1.5px dashed var(--border-gold-solid);
  color: #FFD700;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.ticket-details-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.ticket-row:last-child {
  border-bottom: none;
}

.ticket-row span {
  color: #CBD5E1;
  font-weight: 600;
}

.ticket-row strong {
  color: #FFFFFF;
  font-weight: 800;
}

/* ==========================================================================
   ABOUT US, SERVICES, PROJECTS & OTHER SECTIONS
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-left-visual {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-100);
}

.about-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold-gradient);
  color: #0B111E;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
  border: 2px solid #FFF;
}

.about-experience-badge strong {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-body-dark);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.checklist-item i {
  color: var(--gold-600);
  font-size: 1.1rem;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.vm-card {
  background: var(--bg-sand);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: #0B111E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.vm-card p {
  color: var(--text-body-dark);
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-box {
  background: var(--white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.value-box:hover {
  border-color: var(--border-gold-solid);
  background: var(--gold-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

.value-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.value-box p {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

/* Specialist Engineers Team Section */
.engineers-section {
  padding: 6rem 0;
  background: #090E1A !important;
  color: #FFFFFF !important;
  border-top: 2px solid var(--border-gold-solid);
  border-bottom: 2px solid var(--border-gold-solid);
}

.engineers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.engineer-team-card {
  background: #0F172A;
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.engineer-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.3);
  border-color: #FFE600;
}

.engineer-card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1E293B;
}

.engineer-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.engineer-team-card:hover .engineer-card-img-wrap img {
  transform: scale(1.06);
}

.engineer-verified-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 17, 30, 0.9);
  border: 1px solid var(--border-gold-solid);
  color: #FFD700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.engineer-card-info {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.engineer-card-info h4 {
  font-size: 1.3rem;
  color: #FFD700 !important;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.engineer-role-tag {
  font-size: 0.88rem;
  color: #CBD5E1 !important;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.engineer-book-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .engineers-grid {
    grid-template-columns: 1fr;
  }
}

/* Services */
.services-section {
  padding: 6rem 0;
  background: var(--bg-pearl);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.services-grid-10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.service-card:hover .service-thumb img {
  transform: scale(1.06);
}

.service-icon-floating {
  position: absolute;
  bottom: 0.85rem;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--border-gold-solid);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--text-dark);
}

.service-body p {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-700);
}

.service-link:hover {
  color: var(--text-dark);
  gap: 0.65rem;
}

/* Projects */
.projects-section {
  padding: 6rem 0;
  background: var(--bg-pearl);
}

.portfolio-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: var(--white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: #0F172A;
  color: #FFD700;
  border-color: #0F172A;
  box-shadow: var(--shadow-md);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.project-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-completed { background: #10B981; color: #FFF; }
.badge-ongoing { background: var(--border-gold-solid); color: #0B111E; }
.badge-upcoming { background: #6366F1; color: #FFF; }

.project-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-category {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.4rem;
}

.project-details h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
  margin-top: auto;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background: var(--white);
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 17, 30, 0.2) 0%, rgba(11, 17, 30, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--text-gold);
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Before & After Slider */
.before-after-section {
  padding: 6rem 0;
  background: var(--white);
}

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-gold-solid);
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-after-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 980px;
  max-width: none;
  object-fit: cover;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--border-gold-solid);
  z-index: 5;
  cursor: ew-resize;
}

.ba-slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  color: #0B111E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 3px solid #FFF;
}

.ba-tag {
  position: absolute;
  top: 1.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(11, 17, 30, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-gold-solid);
  z-index: 4;
}

.ba-tag.before-tag { right: 1.5rem; }
.ba-tag.after-tag { left: 1.5rem; }

/* Metrics Bar */
.metrics-bar {
  background: var(--gold-gradient);
  color: #0B111E;
  padding: 2.75rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-box strong {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.metric-box span {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Why Choose Us */
.why-section {
  padding: 6rem 0;
  background: var(--white);
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.why-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-pearl);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  transition: var(--transition);
  flex: 1;
}

.why-feature-card:hover {
  background: var(--gold-50);
  border-color: var(--border-gold-solid);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: var(--radius-sm);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.why-text p {
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.5;
}

/* Downloads Center */
.download-center-box {
  background: var(--bg-sand);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1.5px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.download-center-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.15rem;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.download-item:hover {
  border-color: var(--border-gold-solid);
  background: var(--gold-50);
  transform: translateY(-2px);
}

.download-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.download-info i {
  color: #E11D48;
  font-size: 1.35rem;
}

.download-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.download-info span {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.download-btn-icon {
  color: var(--gold-700);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.testimonial-card-featured {
  background: var(--bg-pearl);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border-gold);
  position: relative;
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold-600);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold-solid);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 600;
}

.stars-rating {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.site-visit-callout {
  background: #0B111E;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border-gold-solid);
  text-align: center;
  position: relative;
}

.site-visit-callout h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.site-visit-callout p {
  color: #CBD5E1;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* Partners Logo Ticker */
.partners-section {
  padding: 2.5rem 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  background: var(--white);
}

.partners-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-bottom: 1.5rem;
}

.partners-logos-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo-item {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Careers Section */
.careers-section {
  padding: 6rem 0;
  background: var(--bg-sand);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.job-card {
  background: var(--white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.job-type-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: var(--gold-50);
  border: 1px solid var(--border-gold-solid);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-800);
  margin-bottom: 1rem;
}

.job-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--text-body-dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  background: #0B111E;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border-gold-solid);
}

.contact-info-panel h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.contact-card-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--border-gold-solid);
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-card-text span {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.4;
  display: block;
}

.contact-form-panel {
  background: var(--bg-sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border-gold);
}

.contact-form-panel h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-panel p {
  color: #64748B;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Footer */
.main-footer {
  background: #070B14;
  color: #CBD5E1;
  padding-top: 5rem;
  border-top: 2px solid var(--border-gold-solid);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col .logo-title {
  color: var(--white);
}

.footer-brand-col p {
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold-gradient);
  color: #0B111E;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

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

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #CBD5E1;
  font-weight: 500;
}

.footer-links-list a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--text-gold);
  margin-top: 0.25rem;
}

.footer-bottom-bar {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-bar p {
  margin: 0;
}

.back-to-top-btn {
  background: var(--gold-gradient);
  color: #0B111E;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.back-to-top-btn:hover {
  transform: translateY(-3px);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 30, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-dialog {
  background: var(--white);
  border: 2px solid var(--border-gold-solid);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  padding: 1.5rem 2rem;
  background: #0B111E;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
}

.modal-header h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.modal-close-btn {
  background: none;
  border: none;
  color: #CBD5E1;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #FFD700;
}

.modal-body {
  padding: 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--border-gold-solid);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #0B111E;
  border: 2px solid var(--border-gold-solid);
  color: var(--white);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  font-weight: 600;
  transition: var(--transition);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #FFD700;
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 1366px) {
  .nav-container { padding: 0.65rem 1.5rem; }
  .nav-menu { gap: 0.85rem; }
  .nav-link { font-size: 0.82rem; }
  .phone-label { display: none; }
  .header-cta-group { gap: 0.65rem; }
}

@media (max-width: 1200px) {
  .why-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .download-center-box {
    grid-column: span 2;
  }
}

@media (max-width: 1150px) {
  .phone-quick { display: none; }
  .nav-menu { gap: 0.75rem; }
  .nav-link { font-size: 0.8rem; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-layout-grid { grid-template-columns: 1fr; }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .why-grid-layout { grid-template-columns: 1fr; }
  .download-center-box { grid-column: span 1; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .consultation-bar { grid-template-columns: 1fr 1fr; }
  .consultation-header { grid-column: span 2; border-right: none; }
  .timeslot-grid { grid-template-columns: 1fr; }
  .engineer-choice-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid-10 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .visual-choice-grid { grid-template-columns: 1fr; }
  .facing-pills-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .consultation-bar { grid-template-columns: 1fr; }
  .trust-ribbon-inner { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .floating-actions { display: none; }
  .booking-wizard-card { padding: 1.5rem; }
  .node-label { display: none; }
}
