/* Premium 2026 Service Website Styles
Modern Glassmorphism • Smooth Animations • Perfect Readability
============================================================ */

/* 1. Global Styles & CSS Variables (Exact Task Palette) */
:root {
  /* Primary Palette (Task Colors) */
  --primary: #0F4C81;           /* Deep Blue */
  --secondary: #2DA9FF;         /* Light Blue */
  --accent: #FF7A18;            /* Orange Accent */

  /* Semantic variants (used across components) */
  --primary-color: var(--primary);
  --secondary-color: var(--secondary);
  --accent-color: var(--accent);
  --bg-color: #F5F7FA;          /* Background Color */
  --bg-primary: var(--bg-color);
  --light-color: var(--bg-color);
  --bg-secondary: #FFFFFF;
  --white-color: var(--bg-secondary);
  --dark-color: #0B1F3D;

  --text-dark: #2E2E2E;         /* Primary text */
  --text-light: #64748B;        /* Secondary text */
  --text-muted: #94A3B8;        /* Muted text */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent), #FF9A45);
  --gradient-glass: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

  /* Typography */
  --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--bg-primary);
  overflow-x: hidden;
  color-adjust: exact;
}

/* Reinforce high contrast and visibility */
* {
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Simple responsive grid system (mobile-first) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.row > * {
  padding: 0 0.25rem;
  margin-bottom: 0.5rem;
}

/* Basic utility helpers (for existing markup using bootstrap-like classes) */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }

.g-1, .gap-1 { gap: 0.25rem !important; }
.g-2, .gap-2 { gap: 0.5rem !important; }
.g-3, .gap-3 { gap: 1rem !important; }
.g-4, .gap-4 { gap: 1.5rem !important; }
.g-5, .gap-5 { gap: 2rem !important; }

.mb-5 { margin-bottom: 3rem !important; }
.mt-auto { margin-top: auto !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }



.col, .col-12, .col-sm-6, .col-md-4, .col-md-6, .col-md-8, .col-lg-3, .col-lg-4, .col-lg-6 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-8 {
    width: 66.6667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Simple Buttons (High legibility) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
  gap: var(--space-xs);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

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

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(15,76,129,0.3);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
}

.btn-accent:hover {
  box-shadow: 0 12px 32px rgba(255,122,24,0.3);
}

.btn-secondary {
  background: #25D366;
  color: white;
}

.btn-secondary:hover {
  background: #20BA5A;
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}

.btn-large { 
  padding: var(--space-md) 2.5rem; 
  font-size: 1.1rem; 
}

/* Sticky Header (Simple & Clear) */
.header {
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

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

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.main-nav a {
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.header .nav-call-btn {
  margin-left: var(--space-lg);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-call {
  display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  left: 0;
  transition: 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-open .hamburger {
  background: transparent;
}

.nav-open .hamburger::before {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-open .hamburger::after {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* 4. Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 129, 0.55);
  pointer-events: none;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: var(--space-xl);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn {
  min-width: 180px;
}

/* Make hero blobs less intrusive and keep focus on content */
.hero-blobs {
  display: none;
}

/* 5. General Section Styling */
section {
    padding: 4rem 0;
}

/* Ensure anchor jumps account for sticky nav */
article[id],
section[id] {
    scroll-margin-top: 110px;
}

/* Service Page Sticky Navigation */
.services-nav {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(15, 76, 129, 0.12);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: 0.75rem 0;
}

.services-nav-inner {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 0 0.5rem;
    scroll-snap-type: x mandatory;
}

.services-nav-link {
    scroll-snap-align: center;
}

@media (max-width: 860px) {
    .services-nav-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.services-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(15, 76, 129, 0.18);
    background: rgba(255,255,255,0.8);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.services-nav-link:hover,
.services-nav-link.active {
    background: rgba(15, 76, 129, 0.12);
    border-color: rgba(15, 76, 129, 0.35);
    color: var(--primary-color);
}

.services-nav-link i {
    font-size: 1.05rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: min(340px, calc(100% - 3rem));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1100;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    border-radius: var(--radius-md);
    padding: 1rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: rgba(15, 76, 129, 0.93);
    color: white;
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.toast-hidden {
    opacity: 0;
    transform: translateY(12px);
}

.toast-success {
    background: rgba(0, 123, 80, 0.95);
}

.toast-error {
    background: rgba(180, 40, 60, 0.95);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.toast-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.3;
}

.toast-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: rgba(255,255,255,1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 6. About Section */
.about-section {
    background-color: var(--white-color);
}

.about-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.25rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: rgba(15, 25, 40, 0.9);
}

.about-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.coverage-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: rgba(15, 25, 40, 0.85);
}

.coverage-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

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

.highlight i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

/* 7. Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(15, 76, 129, 0.06);
}

.highlight-item i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 0.35rem;
}

/* 8. Service Area Display (Contact Page) */
.service-areas-section {
    padding: 3.5rem 0;
}

.service-areas-section .section-title {
    margin-bottom: 0.75rem;
}

.service-areas-section .section-subtitle {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.area-card {
    padding: 1.8rem;
    border-radius: var(--radius-md);
    background: var(--white-color);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-link:hover .area-card,
.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.area-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.area-card i {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-card h3 {
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

.feature-item {
    background: var(--white-color);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
}

/* 8. CTA Section */
.cta-section {
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
}

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

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 9. Page Header (for inner pages) */
.page-header {
    background-color: var(--light-color);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

/* 10. Services Page */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-content h2 {
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-showcase-card .service-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(15, 76, 129, 0.11);
}

.service-showcase-card a.btn {
    width: fit-content;
}

/* Service Showcase Card - NEW Overlay Design */
.service-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
    padding: 0;
    overflow: hidden;
    min-height: 480px; /* Ensure a good height for the image */
    border-radius: var(--radius-md);
}

/* Gradient overlay */
.service-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 61, 0.98) 10%, rgba(11, 31, 61, 0.7) 40%, transparent 80%);
    transition: background 0.4s ease;
}

.service-showcase-card:hover::after {
    background: linear-gradient(to top, rgb(11, 31, 61) 20%, rgba(11, 31, 61, 0.75) 50%, transparent 85%);
}

.service-showcase-card__image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-showcase-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

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

.service-showcase-card__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
}

/* Adjust content colors for the new dark background */
.service-showcase-card__content h2,
.service-showcase-card__content p {
    color: var(--white-color);
}

.service-showcase-card__content p {
    color: rgba(255, 255, 255, 0.8);
}

.service-showcase-card__content .service-icon-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-showcase-card__content .list-unstyled li {
    color: rgba(255, 255, 255, 0.9);
}

.service-showcase-card__content .list-unstyled li i {
    color: var(--accent-color); /* Use accent color for checkmarks */
}

.service-showcase-card__content .btn-primary {
    background: var(--gradient-accent); /* Use accent color for the button */
    color: white;
}

.service-showcase-card__content .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(255,122,24,0.35);
}

/* Grid layout for large screens to ensure perfect row alignment */
@media (min-width: 992px) {
    .services-showcase .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch; /* Ensure items fill the row height */
    }
    .services-showcase .row.g-4 > .col-lg-6 {
        width: auto; /* Reset bootstrap width */
        margin: 0; /* Reset bootstrap margins */
    }
}

/* 11. Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-text {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
}

.text-muted {
    color: rgba(0, 0, 0, 0.65);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
}

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* 12. Footer */
.footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #444;
}

.footer-col h3 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white-color);
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col i {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

/* 13. Responsive Design (Media Queries) */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero { padding: 4.5rem 0; }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) .service-image {
        order: 0;
    }

    .service-image {
        margin-bottom: 2rem;
    }

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

@media (max-width: 768px) {
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(11, 31, 61, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        padding-top: 6rem;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav a {
        color: var(--white-color);
        font-size: 1.2rem;
        padding: 0.75rem 0;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-open .hamburger {
        background: transparent;
    }

    .nav-open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background: var(--white-color);
    }

    .nav-open .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
        background: var(--white-color);
    }

    .header {
        padding: 1.2rem 0;
    }

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

    .mobile-call {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
}

.services-overview {
    background: var(--light-color);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-quick-card {
    padding: 1.8rem 1.6rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.process-section {
    background: var(--white-color);
    padding: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.process-card {
    padding: 2rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.12);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    text-align: left;
}

.process-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 76, 129, 0.12);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.process-card h3 {
    margin-bottom: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
