/* ==========================================================================
   ON TIME FIX - Premium Mobile-First Design System
   Hostinger Linux Compatible: Pure relative forward-slash paths (/)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary-dark: #0B192C;
  --primary-navy: #0F172A;
  --primary-deep: #070F1E;
  --primary-surface: #1E293B;
  
  --secondary-blue: #0284C7;
  --secondary-light: #38BDF8;
  --secondary-hover: #0369A1;

  --accent-orange: #FF6B00;
  --accent-warm: #FF7A1A;
  --accent-hover: #EA580C;
  --accent-soft: #FFF7ED;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-hover: #22BF5B;

  /* Neutrals */
  --bg-white: #FFFFFF;
  --bg-offwhite: #F8FAFC;
  --bg-slate: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --border-light: #E2E8F0;
  --border-card: #CBD5E1;

  /* 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;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 35px rgba(15, 23, 42, 0.15);
  --shadow-cta: 0 8px 20px rgba(255, 107, 0, 0.35);
  --shadow-wa: 0 8px 20px rgba(37, 211, 102, 0.35);

  /* Spacing */
  --container-max: 1200px;
  --header-height: 72px;
  --bottom-bar-height: 68px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  /* Mobile safe bottom padding to ensure fixed bottom bar never hides content */
  padding-bottom: calc(var(--bottom-bar-height) + 16px);
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --------------------------------------------------------------------------
   3. Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(2, 132, 199, 0.1);
  color: var(--secondary-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
  .section-desc {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.45);
}

.btn-secondary {
  background: var(--secondary-blue);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: #FFFFFF;
  color: var(--primary-dark);
}

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

.btn-outline-dark:hover {
  background: var(--bg-slate);
  border-color: var(--text-muted);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .brand-logo img {
  height: 38px;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
  }

  .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--secondary-blue);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: var(--radius-full);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-call-btn {
  display: none;
}

@media (min-width: 640px) {
  .header-call-btn {
    display: inline-flex;
  }
}

/* Hamburger Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--bg-slate);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Slide-in Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: #FFFFFF;
  z-index: 999;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-slate);
  color: var(--secondary-blue);
}

.mobile-nav-link.active {
  border-left: 4px solid var(--accent-orange);
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   6. Mobile Sticky Bottom CTA Bar (360px - 991px)
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-bar-height);
  background: rgba(11, 25, 44, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 998;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.bottom-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
}

.bottom-bar-inner .btn {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: var(--primary-deep);
  color: var(--text-white);
  padding: 3rem 0 4rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 15, 30, 0.82) 0%,
    rgba(11, 25, 44, 0.92) 75%,
    rgba(15, 23, 42, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  color: #FFFFFF;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-text {
  font-size: 1rem;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0 6rem 0;
  }
  .hero-title {
    font-size: 3.25rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
}

/* Trust Strip */
.trust-strip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #E2E8F0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-item svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. Introduction Section (Split View)
   -------------------------------------------------------------------------- */
.intro-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro-image-wrap:hover img {
  transform: scale(1.03);
}

.intro-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.intro-floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.intro-floating-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.intro-floating-badge .badge-text span {
  font-size: 0.75rem;
  color: #94A3B8;
}

.intro-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-text-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.intro-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.intro-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.intro-feature-item svg {
  color: var(--secondary-blue);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Services Grid Section
   -------------------------------------------------------------------------- */
.services-section {
  padding: 4.5rem 0;
  background: var(--bg-offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-light);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--primary-dark);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 25, 44, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--primary-dark);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-orange);
  gap: 0.55rem;
}

/* --------------------------------------------------------------------------
   10. Why On Time Fix (Dark Blue Section)
   -------------------------------------------------------------------------- */
.why-section {
  padding: 5rem 0;
  background: var(--primary-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-section .section-title {
  color: #FFFFFF;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.15);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.why-card:hover .why-icon {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: transparent;
}

.why-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.why-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. How It Works (3 Steps)
   -------------------------------------------------------------------------- */
.how-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-blue);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--primary-dark);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.1);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem auto;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-phone-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   12. Service Area (Bangalore Section)
   -------------------------------------------------------------------------- */
.area-section {
  position: relative;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 5rem 0;
  overflow: hidden;
}

.area-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.area-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.area-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(7, 15, 30, 0.95) 100%);
  z-index: 2;
}

.area-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.area-content .section-title {
  color: #FFFFFF;
}

.area-content .section-desc {
  color: #CBD5E1;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   13. Visual Collage Section
   -------------------------------------------------------------------------- */
.collage-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .collage-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.collage-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: var(--primary-dark);
}

@media (min-width: 768px) {
  .collage-item {
    height: 220px;
  }
  .collage-item.tall {
    grid-column: span 2;
  }
}

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

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

.collage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0.85rem 0.65rem 0.85rem;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.9) 0%, transparent 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   14. Full-Width Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0B192C 0%, #102A45 50%, #070F1E 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255, 107, 0, 0.4);
}

.final-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.final-cta-text {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 1.5rem;
}

.final-phone-display {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-orange);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: var(--transition);
}

.final-phone-display:hover {
  color: #FFFFFF;
  transform: scale(1.03);
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 520px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   15. Dedicated Page Header / Hero (Services, About, Gallery)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--primary-dark);
  color: #FFFFFF;
  padding: 4rem 0 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   16. Detailed Services Page Rows
   -------------------------------------------------------------------------- */
.service-detail-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail-block:nth-child(even) {
  background: var(--bg-offwhite);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .service-detail-grid.reverse {
    direction: rtl;
  }
  .service-detail-grid.reverse > * {
    direction: ltr;
  }
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 380px;
}

.service-detail-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail-content h2 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 520px) {
  .service-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.checklist-item svg {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   17. Gallery & Lightbox
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 4rem 0;
  background: var(--bg-offwhite);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  background: var(--bg-white);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-dark);
  color: #FFFFFF;
  border-color: var(--primary-dark);
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  background: var(--primary-dark);
}

@media (min-width: 768px) {
  .gallery-card {
    height: 240px;
  }
}

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

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 44, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #FFFFFF;
}

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

.gallery-card-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.gallery-card-tag {
  font-size: 0.75rem;
  color: var(--secondary-light);
  font-weight: 600;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--accent-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--secondary-blue);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: -60px;
  }
  .lightbox-next {
    right: -60px;
  }
}

/* --------------------------------------------------------------------------
   18. Contact Form & Details
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
  }
}

.contact-info-card {
  background: var(--primary-dark);
  color: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.contact-info-header h3 {
  color: #FFFFFF;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-header p {
  color: #94A3B8;
  margin-bottom: 2rem;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.18);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-content h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-content a,
.contact-item-content p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 520px) {
  .contact-form-wrap {
    padding: 2.5rem 2rem;
  }
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-card);
  background: #FFFFFF;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-feedback.success {
  display: block;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

/* --------------------------------------------------------------------------
   19. Footer (Dark, Premium)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--primary-deep);
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-orange);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--secondary-light);
}

.footer-phone-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   20. Utility & Micro-Animations
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

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

.animate-fade {
  animation: fadeIn 0.6s ease forwards;
}
