/* Import Poppins Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Design Tokens & Variables */
:root {
  /* Color Palette */
  --color-primary-dark: #041536;    /* JCL Dark Navy */
  --color-brand-blue: #005AE6;      /* JCL Brand Electric Blue */
  --color-brand-blue-alt: #1557E1;  /* JCL Accent Blue */
  --color-brand-gold: #FFCA04;      /* JCL Highlight Gold */
  --color-warm-cream: #FFF4CD;      /* JCL Logo Background Cream */
  --color-light-bg: #F4F7FC;        /* Clean Light Background */
  --color-white: #FFFFFF;
  --color-text-dark: #1E293B;       /* Charcoal Text */
  --color-text-light: #64748B;      /* Gray Muted Text */
  --color-border: #E2E8F0;          /* Soft border color */
  --color-success: #10B981;
  
  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(4, 21, 54, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(4, 21, 54, 0.08), 0 4px 6px -2px rgba(4, 21, 54, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(4, 21, 54, 0.12), 0 10px 10px -5px rgba(4, 21, 54, 0.04);
  --shadow-indigo: 0 10px 25px rgba(0, 90, 230, 0.15);
  
  /* Layout & Transitions */
  --max-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

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

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-brand-blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-brand-blue);
  border-radius: 2px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-header-left .section-title::after {
  left: 0;
  transform: none;
}

.section-desc {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.section-bg-dark .section-desc {
  color: #94A3B8;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-indigo);
}

.btn-primary:hover {
  background-color: var(--color-brand-blue-alt);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 90, 230, 0.25);
}

.btn-secondary {
  background-color: var(--color-brand-gold);
  color: var(--color-primary-dark);
}

.btn-secondary:hover {
  background-color: #E2B202;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 202, 4, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--color-brand-blue);
  color: var(--color-brand-blue);
  background-color: rgba(0, 90, 230, 0.02);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
}

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

/* 1. TOP BAR */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #94A3B8;
  font-size: 0.8125rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item svg {
  color: var(--color-brand-gold);
  width: 14px;
  height: 14px;
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a:hover {
  color: var(--color-brand-gold);
}

/* 2. HEADER */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.sticky {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 80px;
  transition: var(--transition-smooth);
}

.header.sticky .logo img {
  height: 60px;
}

/* Main Navigation */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-brand-blue);
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary-dark);
}

/* 3. HERO & CALCULATOR */
.hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(4, 21, 54, 0.85) 0%, rgba(4, 21, 54, 0.6) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 120px 0 140px 0;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Brand Pattern Background Details */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/pattern.svg');
  background-size: 400px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tag {
  background-color: rgba(0, 90, 230, 0.2);
  border: 1px solid rgba(0, 90, 230, 0.3);
  color: var(--color-brand-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-white);
}

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

.hero-desc {
  font-size: 1.125rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

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

.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-gold);
}

.stat-lbl {
  font-size: 0.8125rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Calculator Card Styling */
.calc-card {
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  color: var(--color-text-dark);
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-white);
}

.calc-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-subtitle {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

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

.calc-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  display: block;
}

/* Toggle Tabs */
.calc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background-color: var(--color-light-bg);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.calc-tab {
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 10px 4px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.calc-tab.active {
  background-color: var(--color-white);
  color: var(--color-brand-blue);
  box-shadow: var(--shadow-sm);
}

/* Inputs and Sliders */
.calc-slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-light-bg);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-brand-blue);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 90, 230, 0.3);
  transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-count-display {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand-blue);
  min-width: 60px;
  text-align: right;
}

/* Checkbox Switch styling */
.calc-checkbox-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-light-bg);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.checkbox-desc {
  display: flex;
  flex-direction: column;
}

.checkbox-desc-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.checkbox-desc-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .4s;
  border-radius: 24px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-white);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-toggle {
  background-color: var(--color-brand-blue);
}

input:checked + .slider-toggle:before {
  transform: translateX(20px);
}

/* Pricing Results box */
.calc-result-box {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.result-row:last-child {
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.result-lbl {
  font-size: 0.8125rem;
  color: #94A3B8;
}

.result-val {
  font-size: 1rem;
  font-weight: 600;
}

.result-val-total {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brand-gold);
}

.calc-btn {
  width: 100%;
}

.calc-btn svg {
  margin-left: 8px;
  transition: var(--transition-smooth);
}

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

/* 4. ABOUT US */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  z-index: 2;
  position: relative;
}

/* Decorative badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-brand-blue);
  color: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  text-align: center;
}

.about-badge-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-brand-gold);
}

.about-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about-text-content p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.about-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feat-icon {
  background-color: var(--color-light-bg);
  color: var(--color-brand-blue);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feat-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* 5. MISSION & VISION */
.split-sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.split-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 50px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.split-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 90, 230, 0.15);
}

.split-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 90, 230, 0.08);
  color: var(--color-brand-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.split-icon svg {
  width: 30px;
  height: 30px;
}

.split-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.split-card-desc {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Bullet list */
.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.split-list-item svg {
  color: var(--color-brand-blue);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 6. LOCATION SECTION */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.location-content-box .section-desc {
  margin-bottom: 30px;
}

.location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.loc-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.loc-card:hover {
  border-color: var(--color-brand-blue);
  background-color: var(--color-light-bg);
  transform: translateX(4px);
}

.loc-icon {
  background-color: rgba(0, 90, 230, 0.06);
  color: var(--color-brand-blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Modern Map Frame mockup */
.map-mock-box {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 12px;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E2E8F0;
  background-image: linear-gradient(rgba(4, 21, 54, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(4, 21, 54, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Styling fake map details to make it look premium and real */
.map-road {
  position: absolute;
  background-color: var(--color-white);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.05);
}
.map-road-1 { top: 30%; left: 0; width: 100%; height: 30px; transform: rotate(-5deg); }
.map-road-2 { top: 0; left: 60%; width: 40px; height: 100%; transform: rotate(15deg); }
.map-road-3 { top: 60%; left: 20%; width: 25px; height: 100%; transform: rotate(-45deg); }

.map-river {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #C0D6F9;
  opacity: 0.7;
  transform: skewY(5deg);
}

.map-marker {
  position: absolute;
  top: 40%;
  left: 55%;
  z-index: 10;
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-marker-pin {
  width: 36px;
  height: 36px;
  background-color: var(--color-brand-blue);
  border: 3px solid var(--color-white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 90, 230, 0.4);
}

.map-marker-inner {
  width: 12px;
  height: 12px;
  background-color: var(--color-brand-gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-marker-pulse {
  position: absolute;
  bottom: -4px;
  width: 12px;
  height: 4px;
  background: rgba(4, 21, 54, 0.4);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

.map-info-popup {
  position: absolute;
  top: 15%;
  left: 10%;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  z-index: 20;
  max-width: 250px;
}

.map-info-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-brand-gold);
}

.map-info-text {
  font-size: 0.75rem;
  color: #CBD5E1;
  line-height: 1.4;
}

/* 7. CONTACT US & FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item-box {
  display: flex;
  gap: 20px;
}

.contact-item-icon {
  background-color: rgba(0, 90, 230, 0.1);
  color: var(--color-brand-blue);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-item-detail {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-social-links {
  margin-top: 20px;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
}

.contact-social-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.contact-social-icons {
  display: flex;
  gap: 16px;
}

.contact-social-btn {
  background-color: var(--color-light-bg);
  color: var(--color-primary-dark);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.contact-social-btn:hover {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
  border-color: var(--color-brand-blue);
  transform: translateY(-2px);
}

/* Contact Form styling */
.contact-form-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-input-container {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--color-light-bg);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-brand-blue);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(0, 90, 230, 0.1);
}

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

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

/* Form feedback alerts */
.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.form-status.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* 8. FOOTER */
.footer {
  background-color: var(--color-primary-dark);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo img {
  height: 80px;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  background-color: rgba(255, 255, 255, 0.05);
  color: #94A3B8;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col-title {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-brand-blue);
}

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

.footer-link-item a {
  font-size: 0.9rem;
}

.footer-link-item a:hover {
  color: var(--color-brand-gold);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

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

.footer-contact-item svg {
  color: var(--color-brand-gold);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer-copyright {
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  color: #64748B;
}

.footer-legal-links a:hover {
  color: #94A3B8;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* 9. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .calc-card {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .map-mock-box {
    order: -1; /* Display map above listing on tablet/mobile */
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on mobile for cleaner look */
  }
  
  .header-content {
    height: 70px;
  }
  
  /* Mobile menu implementation overlay */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-cta {
    display: none; /* Hide top CTA in mobile menu row */
  }
  
  .split-sections-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-badge {
    display: none; /* Hide details badge on small screens */
  }
}


/* ==========================================================================
   JCL PROMISE SECTION (RESPONSIVE GRID)
   ========================================================================== */
.split-delivery-row {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.delivery-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
  line-height: 1.25;
}

.delivery-desc {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.delivery-badge-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.delivery-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-success);
}

.delivery-badge-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

.delivery-img-col {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.delivery-img-col img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsiveness for JCL Promise Row */
@media (max-width: 992px) {
  .split-delivery-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    margin-top: 40px;
  }
  
  .delivery-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .split-delivery-row {
    padding: 24px 20px;
    gap: 24px;
    border-radius: 12px;
  }
  
  .delivery-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .delivery-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
}
