:root {
  /* Color System */
  --color-primary: #1F3A4A;
  --color-secondary: #2F6F8F;
  --color-cta: #1E7F5C;
  --color-accent: #C9A13B;
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F4F6F8;
  --color-text-dark: #2E2E2E;
  --color-text-muted: #6B7280;

  /* Typography */
  --font-main: 'Noto Sans', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  height: 52px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: 'Noto Sans', sans-serif;
}

.btn-primary {
  background-color: var(--color-cta);
  color: white;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(30, 127, 92, 0.2);
}

.btn-primary:hover {
  background-color: #166448;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 127, 92, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  transform: translateY(-2px);
}

/* Header Redesign Refined */
header {
  background-color: var(--color-bg-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.header-top {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
  font-size: 0.85rem;
}

.header-top-inner {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-dark);
}

.contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

/* Main Header Area */
.header-main {
  padding: 0;
  background: white;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
}

.brand-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media only screen and (max-width: 576px) {

  /* Fluid Typography for Brand to prevent line breaks >300px */
  .brand-wrapper {
    width: 100%;
    align-items: center;
    /* Center align on mobile */
    text-align: center;
  }

  .logo span {
    white-space: nowrap;
    /* Scales between 14px and 1.4rem based on width */
    font-size: clamp(16px, 5.5vw, 1.4rem);
  }

  .brand-subtitle {
    white-space: nowrap;
    /* Scales between 10px and 0.75rem based on width */
    font-size: clamp(10px, 3.8vw, 0.75rem);
  }
}

/* Nav specific */
nav>ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav>ul>li {
  position: relative;
  padding: 22px 0;
}

nav a {
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a:hover {
  color: var(--color-cta);
}

nav a svg {
  width: 14px;
  height: 14px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  border-top: 3px solid var(--color-cta);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
  padding: 10px 0;
  border-radius: 0 0 4px 4px;
  display: block !important;
}

nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  display: block;
  width: 100%;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  border-left: 3px solid transparent;
  width: 100%;
  box-sizing: border-box;
}

/* Hide old header contact class if it exists */
.header-contact {
  display: none;
}

/* Hero Carousel Redesign - Refined */
.hero {
  position: relative;
  height: 600px;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding: 0;
}

/* Background Carousel Wrapper */
.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeLoop 15s infinite;
}

/* Desktop Images */
.hero-slide:nth-child(1) {
  animation-delay: 0s;
  background-image: url('../images/hero-desktop-01.webp');
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
  background-image: url('../images/hero-desktop-02.webp');
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
  background-image: url('../images/hero-desktop-03.webp');
}

.hero-slide:nth-child(4),
.hero-slide:nth-child(5) {
  display: none;
}

/* Responsive Hero Images */
@media only screen and (max-width: 992px) {
  .hero-slide:nth-child(1) {
    background-image: url('../images/hero-tablet-01.webp');
  }

  .hero-slide:nth-child(2) {
    background-image: url('../images/hero-tablet-02.webp');
  }

  .hero-slide:nth-child(3) {
    background-image: url('../images/hero-tablet-03.webp');
  }
}

@media only screen and (max-width: 576px) {
  .hero-slide:nth-child(1) {
    background-image: url('../images/hero-mobile-01.webp');
  }

  .hero-slide:nth-child(2) {
    background-image: url('../images/hero-mobile-02.webp');
  }

  .hero-slide:nth-child(3) {
    background-image: url('../images/hero-mobile-03.webp');
  }
}

/* Animation Keyframes */
@keyframes fadeLoop {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  13% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: scale(1.02);
  }

  46% {
    opacity: 0;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Pause on Hover */
.hero:hover .hero-slide {
  animation-play-state: paused;
}

/* --- THE REFINED OVERLAY --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg,
      rgba(31, 58, 74, 0.65) 0%,
      rgba(31, 58, 74, 0.45) 40%,
      rgba(31, 58, 74, 0.0) 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 650px;
}

.hero-label {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #C9A13B;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: rgba(201, 161, 59, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  border: none;
}

.hero h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 52px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.header-contact {
  display: flex;
}

/* Hero Responsive */
@media only screen and (max-width: 992px) {
  .hero h1 {
    font-size: 2.25rem;
    /* Reduced from 2.5rem */
  }

  .hero p {
    font-size: 1rem;
    /* Reduced from 1.15rem */
  }
}

@media only screen and (max-width: 576px) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 100px 0 60px 0;
  }

  .hero .container {
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 1.75rem;
    /* Reduced from 2rem */
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    /* Reduced from 1rem */
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    /* Constrain width */
    margin: 0 auto;
    gap: 0.75rem;
    margin-bottom: 2rem;
    /* Added spacing */
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    /* Smaller button padding */
    font-size: 0.95rem;
    /* Smaller button text */
  }
}

/* Authority Strip Enhanced */
.authority-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #172c3d 100%);
  color: white;
  padding: var(--spacing-md) 0;
  border-bottom: 4px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.authority-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.authority-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: default;
  position: relative;
  overflow: hidden;

  /* Initial State for Scroll Animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Interaction State */
.authority-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px) !important;
  /* Override the scroll position transform when hovering */
  border-color: var(--color-accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Active State (Triggered by JS) */
.authority-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay for Scroll Entry */
.authority-item:nth-child(1) {
  transition-delay: 0.1s;
}

.authority-item:nth-child(2) {
  transition-delay: 0.2s;
}

.authority-item:nth-child(3) {
  transition-delay: 0.3s;
}

.authority-item:nth-child(4) {
  transition-delay: 0.4s;
}


.authority-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent);
  transition: transform 0.4s ease;
}

.authority-item:hover svg {
  transform: scale(1.1) rotate(5deg);
  stroke: #fff;
  filter: drop-shadow(0 0 8px rgba(201, 161, 59, 0.6));
}

.authority-item span {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Shine Effect on Hover */
.authority-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.authority-item:hover::after {
  animation: shine 0.75s;
}

/* --- Portfolio Carousel Section --- */
.portfolio-section {
  position: relative;
  padding: 4rem 0 6rem;
  background-color: #f9fbfd;
  overflow: hidden;
  text-align: center;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  position: relative;
  perspective: 1000px;
  margin: 0 auto;
  /* Responsive Height Adjustment */
  height: 500px;
}

@media only screen and (max-width: 576px) {
  .carousel-container {
    height: 420px;
    /* Reduced height on mobile */
    perspective: 600px;
    /* Stronger perspective for depth */
  }
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
  position: absolute;
  width: 270px;
  height: 480px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 4px solid white;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3D Positions */
.card.center {
  z-index: 10;
  transform: scale(1.05) translateZ(0);
  border-color: var(--color-accent);
  box-shadow: 0 20px 50px rgba(31, 58, 74, 0.3);
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-220px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-380px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.right-1 {
  z-index: 5;
  transform: translateX(220px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}



/* --- MOBILE RESPONSIVE CAROUSEL TRANSFORMS --- */
@media only screen and (max-width: 576px) {

  /* Center Card: Slightly smaller if needed, but keep prominence */
  .card.center {
    transform: scale(1) translateZ(0);
    z-index: 20;
    box-shadow: 0 10px 30px rgba(31, 58, 74, 0.25);
  }

  /* Left/Right 1: Much closer to center to fit in viewport */
  .card.left-1 {
    transform: translateX(-40px) scale(0.85) translateZ(-50px);
    opacity: 0.8;
    z-index: 10;
  }

  .card.right-1 {
    transform: translateX(40px) scale(0.85) translateZ(-50px);
    opacity: 0.8;
    z-index: 10;
  }

  /* Left/Right 2: Hide or push far back to reduce clutter */
  .card.left-2 {
    transform: translateX(-80px) scale(0.7) translateZ(-100px);
    opacity: 0;
    /* Fade out to focus user on top 3 */
  }

  .card.right-2 {
    transform: translateX(80px) scale(0.7) translateZ(-100px);
    opacity: 0;
  }

  /* Card Size Adjustment */
  .card {
    width: 240px;
    /* Slightly narrower */
    height: 400px;
    /* Shorter */
  }
}

.card.right-2 {
  z-index: 1;
  transform: translateX(380px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Filters for non-active */
.card:not(.center) img {
  filter: grayscale(80%) contrast(0.9);
  transition: 0.8s;
}

/* Navigation */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}

@media only screen and (max-width: 576px) {

  /* Push arrows further out or bottom to avoid blocking content */
  .nav-arrow {
    background: rgba(31, 58, 74, 0.8);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .nav-arrow.left {
    left: 5px;
  }

  .nav-arrow.right {
    right: 5px;
  }
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 58, 74, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* Page Headers (Reusable) */
.page-header {
  padding: 120px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-header-bg-about {
  background-image: url('../images/about_header_bg.webp');
  /* No gradient overlay as requested */
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Stats Strip (Reusable) */
.stats-strip {
  background: var(--color-primary);
  padding: 40px 0;
  color: white;
  margin-top: 40px;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: white;
}

.stat-item span {
  opacity: 0.9;
  font-size: 1rem;
}

/* Services */

/* Services Improved */
.services {
  padding: var(--spacing-xl) 0;
  background-color: #fafafa;
  /* Subtle background separation */
}

@media only screen and (max-width: 768px) {
  .services {
    padding: var(--spacing-lg) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  position: relative;
  border-radius: 12px;
  /* Softer corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  /* Ensure footer/content flow */
  height: 100%;
  /* Equal height cards */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(31, 58, 74, 0.15);
  /* Richer hover shadow */
}

.service-image {
  height: 220px;
  /* Slightly taller */
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
  /* Subtle zoom */
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  /* Pushes content to fill space */
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
}

.service-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Mobile adjustments */
@media only screen and (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* Full width on mobile */
    gap: 1.5rem;
    padding: 0 10px;
    /* Extra side buffer */
  }

  .service-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* Lighter shadow on mobile */
  }

  .service-content {
    padding: 1.25rem;
    text-align: left;
    /* Keep left alignment for readability, or center if user prefers */
  }

  .service-content h3 {
    font-size: 1.25rem;
  }
}

.service-link {
  color: var(--color-cta);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* About Snapshot Improved */
.about-snapshot {
  background-color: var(--color-bg-light);
  padding: var(--spacing-xl) 0;
}

/* About Main Grid (Strict Isolation) */
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Desktop: Side by Side */
  gap: 4rem;
  align-items: center;
}

/* Strict Mobile Override (Jallad Mode) */
@media only screen and (max-width: 992px) {
  .about-main-grid {
    grid-template-columns: 1fr !important;
    /* Force Stack */
    gap: 4rem;
    text-align: center;
  }
}


/* About Main Grid (Strict Isolation) */
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Desktop: Side by Side */
  gap: 5rem;
  /* Larger gap for layered images */
  align-items: center;
}

/* --- LEFT: Layered Images --- */
.about-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
  /* Fixed height for layering */
  margin: 0 auto;
}

/* Big Image */
/* Big Image (Updated to Single) */
.image-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 58, 74, 0.15);
  z-index: 1;
}

.image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-images-wrapper:hover .image-one img {
  transform: scale(1.05);
}



/* Experience Badge */
/* Experience Badge (Top Right & Stylish) */
/* Experience Badge (Premium Brand Seal) */
/* Experience Badge (Scalloped SVG Seal) */
.experience-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  left: auto;

  /* Reset shape styles for SVG */
  background: url('../images/seal_bg.svg') no-repeat center center;
  background-size: contain;
  background-color: transparent;
  /* No solid bg */
  border: none;
  box-shadow: none;
  /* Shadow is in SVG or applied to filter if needed */
  border-radius: 0;
  /* Square container for the round SVG */

  width: 160px;
  /* Larger to fit scallop */
  height: 160px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  text-align: center;

  /* Add shadow to the SVG shape itself */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));

  animation: floatBadge 4s ease-in-out infinite;
}

/* Remove CSS Borders (Handled by SVG) */
.experience-badge::after {
  content: none;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Mobile Badge Adjustments */
@media only screen and (max-width: 576px) {
  .experience-badge {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -10px;
    /* Remove CSS borders if any remain */
    box-shadow: none;
    border: none;
  }

  /* Filter needs to be re-applied or adjusted if needed */
  .experience-badge {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  }

  .badget-count {
    font-size: 1.8rem;
  }

  .badge-text {
    font-size: 0.55rem;
    max-width: 60px;
  }
}

.badget-count {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  /* White Numbers for contrast on Navy Inner Circle of SVG */
  font-family: inherit;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  position: relative;
  top: 0;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 80px;
  letter-spacing: 1px;
  color: var(--color-accent);
  /* Gold Text */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* Decorative lines mimicking seal text path */
  padding: 2px 0;
  margin-top: 2px;
}

.about-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  height: auto;
  /* Prevent distortion */
  box-shadow: 0 20px 40px rgba(31, 58, 74, 0.15);
  transition: transform 0.4s ease;
  display: block;
  /* Remove inline whitespace */
}

.about-image:hover img {
  transform: translateY(-5px) scale(1.02);
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

/* --- NEW ABOUT PAGE SECTIONS --- */

/* 1. What We Do - Feature Grid */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  /* Softer base shadow */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  /* Higher lift */
  box-shadow: 0 20px 40px rgba(31, 58, 74, 0.12);
  /* Deeper shadow */
  border-color: transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  /* Gradient Border */
  transition: width 0.4s ease;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(31, 58, 74, 0.05);
  /* Navy tint */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* 2. Why Choose Us (Redesigned 2x2 Grid) */
.trust-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.trust-card {
  background: white;
  padding: 2.2rem;
  border-radius: 16px;
  /* Rounder corners */
  border: 1px solid #eee;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.trust-card:hover {
  box-shadow: 0 15px 35px rgba(31, 58, 74, 0.08);
  /* Sophisticated shadow */
  transform: translateY(-4px);
  border-color: transparent;
}

.trust-card-icon {
  min-width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
  border-radius: 12px;
  /* Soft square icon bg */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1.4rem;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
  /* Prevent icon shrinking */
}

.trust-card:hover .trust-card-icon {
  background: var(--color-cta);
  color: white;
  transform: scale(1.1) rotate(5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card-content h4 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* 3. Compliance & Info Block */
.compliance-block {
  background: #F8FAFC;
  border-left: 4px solid var(--color-primary);
  padding: 2.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-group h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list li {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-list li::before {
  content: '•';
  color: var(--color-accent);
  font-weight: bold;
}

/* 3. Service Area & Compliance (Refined) */
.compliance-section h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compliance-section p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-area-box,
.transparency-box {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.area-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compliance-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.compliance-checklist li::before {
  content: '❯';
  position: absolute;
  left: 0;
  color: var(--color-cta);
  font-weight: bold;
  font-size: 0.9rem;
  top: 3px;
}

/* 4. Business Identity (New) */
.identity-section {
  background: #F8FAFC;
  border-top: 1px solid #eee;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  /* 40/60 split */
  gap: 4rem;
  align-items: center;
}

.identity-info h2 {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.identity-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1.5rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-detail-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.4;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-cta);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.map-btn:hover {
  text-decoration: underline;
}

.official-badge-box {
  background: var(--color-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.official-badge-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.official-badge-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

/* Responsive Adjustments for About Page */

/* Responsive Adjustments for About Page Typography & Layout */

/* 1. Tablet & Smaller Laptops (< 992px) */
@media only screen and (max-width: 992px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    text-align: center;
    /* Center main intro on tablet */
    max-width: 700px;
    margin: 0 auto;
  }

  .about-image {
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .about-lead {
    border-left: 0 !important;
    /* Force override */
    border-bottom: 3px solid var(--color-cta);
    /* Switch to bottom border */
    padding-bottom: 1rem;
    padding-left: 0 !important;
    display: inline-block;
  }

  .about-checklist {
    text-align: left;
    /* Keep checklist left aligned */
    display: inline-block;
  }

  .founder-block {
    justify-content: center;
    /* Center founder info */
  }

  .about-images-wrapper {
    margin: 0 auto;
    max-width: 500px;
    height: 450px;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .organization-badge-box {
    margin: 0 auto;
    max-width: 450px;
  }

  .contact-detail-card {
    text-align: center;
  }

  /* Feature cards can stay grid, but maybe reduce padding */
  .feature-card {
    padding: 2rem;
  }
}

/* 2. Tablets & Large Mobile (< 768px) */
@media only screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
    /* Reduce section headers */
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .trust-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-card {
    flex-direction: column;
    /* Stack icon and text */
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .compliance-grid-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail-card[style*="span 2"] {
    grid-column: span 1 !important;
  }

  .identity-info h2 {
    font-size: 2rem;
  }
}

/* 3. Small Mobile (< 576px) */
@media only screen and (max-width: 576px) {

  /* Global Typography Fixes */
  .section-header h2,
  .about-content h2,
  .identity-info h2 {
    font-size: 1.75rem;
    /* readable on small screens */
  }

  .section-header p,
  .about-desc,
  .compliance-section p {
    font-size: 0.95rem;
    /* Standard body size */
    text-align: justify;
    /* Consistent reading alignment */
  }

  .about-images-wrapper {
    height: 350px;
  }

  .experience-badge {
    width: 110px;
    /* Slight increase from 90px */
    height: 110px;
    top: -20px;
    right: -10px;
    /* Pull back slightly */
    padding: 10px;
    /* Ensure internal spacing */
  }

  .badget-count {
    font-size: 1.5rem;
    line-height: 1;
    /* Tighter leading */
    margin-bottom: 2px;
  }

  .badge-text {
    font-size: 0.6rem;
    /* Readable but small */
    max-width: 80px;
    /* Allow wider text flow */
    line-height: 1.2;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
    /* Center card content */
  }

  .feature-icon {
    margin: 0 auto 1rem auto;
    /* Center icon */
  }

  .service-area-box,
  .transparency-box {
    padding: 1.5rem;
  }

  /* Compliance list stays left aligned for readability */
  .compliance-checklist,
  .area-list {
    text-align: left;
  }

  .compliance-section p {
    text-align: left;
    /* Don't justify short descriptions */
  }
}

.section-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  background: rgba(201, 161, 59, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.about-content h2 {
  font-size: 2.5rem;
  /* Larger Headline */
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--color-primary);
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-cta);
  padding-left: 1rem;
}

.about-desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Checklist */
.about-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}

.about-checklist i,
.about-checklist svg {
  color: var(--color-cta);
  width: 20px;
  height: 20px;
  background: rgba(30, 127, 92, 0.1);
  border-radius: 50%;
  padding: 2px;
}

/* Founder Block */
.founder-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.founder-info h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.founder-info span {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Tablet & Mobile Responsive */
/* Old .about-grid mobile queries removed as class is renamed */

/* Support Section - Responsive Refined */
.support {
  padding: var(--spacing-xl) 0;
}

/* Specific Override for Support Section Layout */
.support .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.support-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.support-item i,
.support-item svg {
  color: var(--color-cta);
  min-width: 20px;
  margin-top: 3px;
}

/* Responsive Breakpoints */
@media only screen and (max-width: 992px) {
  .support {
    padding: 4rem 0;
  }

  .support .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .support-list {
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Keep icons nicely aligned with text even when centered */
  .support-item {
    text-align: left;
    /* Keep item text left aligned for readability */
    width: 100%;
  }

  .support-grid {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .support {
    padding: 2.5rem 0;
  }

  .support h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-item {
    font-size: 0.95rem;
  }
}

/* =========================================
   OPTION 1: SIDE DRAWER (header-v1) - PREMIUM
   ========================================= */

@media only screen and (max-width: 992px) {
  .header-top {
    display: none;
  }

  .header-inner {
    flex-direction: row;
    /* Keep row for Logo + Menu Btn */
    justify-content: space-between;
    padding: 5px 15px;
    /* Added side padding */
    align-items: center;
  }

  .desktop-nav {
    display: none;
  }

  /* Mobile Toggle Button - High Contrast & Touch Friendly */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    /* Clean Light Background */
    border: 2px solid #E2E8F0;
    /* Definitive Border */
    color: var(--color-primary);
    cursor: pointer;
    width: 48px;
    /* Touch Target min 44px */
    height: 48px;
    border-radius: 8px;
    transition: all 0.2s ease;
    z-index: 1002;
    margin-right: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
  }

  .mobile-toggle:hover {
    background: white;
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 4px 8px rgba(201, 161, 59, 0.15);
    transform: translateY(-1px);
  }

  .mobile-toggle:active {
    background: #F1F5F9;
    transform: translateY(0);
    box-shadow: none;
  }

  .mobile-toggle i,
  .mobile-toggle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
    /* Thicker strokes for better visibility */
  }

  /* Adjust Toggle for Small Screens */
  @media only screen and (max-width: 576px) {
    .mobile-toggle {
      width: 40px;
      height: 40px;
      padding: 6px;
    }

    .mobile-toggle i,
    .mobile-toggle svg {
      width: 22px;
      height: 22px;
      stroke-width: 2px;
    }
  }

  /* Drawer Container - Premium Slide */
  .side-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden off-screen */
    width: 300px;
    /* Slightly wider */
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-like easing */
    display: flex;
    flex-direction: column;
  }

  .side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 74, 0.4);
    backdrop-filter: blur(4px);
    /* Glass effect */
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Drawer Open State */
  body.drawer-open {
    overflow: hidden;
  }

  .drawer-open .side-drawer {
    right: 0;
  }

  .drawer-open .side-drawer-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer Header */
  .drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }

  .drawer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .brand-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }

  .brand-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
  }

  .drawer-close {
    background: #f9fafb;
    border: 1px solid #eee;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .drawer-close:hover {
    background: #f3f4f6;
    color: #d00;
    transform: rotate(90deg);
  }

  /* Drawer Content */
  .drawer-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Contact Buttons (Now at Bottom) */
  .drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    /* Push to bottom of content area if needed, or just below nav */
    padding-top: 24px;
    border-top: 1px solid #eee;
    border-bottom: none;
    margin-bottom: 0;
  }

  .drawer-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s;
    text-align: center;
  }

  /* Phone Button Style */
  .drawer-contact a[href^="tel"] {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(31, 58, 74, 0.2);
  }

  /* Email Button Style */
  .drawer-contact a[href^="mailto"] {
    background: white;
    color: var(--color-text-dark);
    border: 2px solid #f3f4f6;
  }

  .drawer-contact a i {
    width: 18px;
    height: 18px;
  }

  .drawer-contact a:active {
    transform: scale(0.98);
  }

  /* Navigation List - Strict Vertical Stacking */
  .drawer-nav ul {
    display: flex;
    /* Turn on Flexbox */
    flex-direction: column;
    /* Force Column Direction */
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    /* Full width */
  }

  .drawer-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid #f9fafb;
    display: block;
    /* Ensure Block level behavior */
    width: 100%;
    padding: 0 !important;
    /* Override global nav padding */
  }

  .drawer-nav li:last-child {
    border-bottom: none;
  }

  .drawer-nav a,
  .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    /* Reduced padding from 16px to 10px */
    width: 100%;
    background: none;
    border: none;
    font-size: 1.05rem;
    /* Larger font */
    color: var(--color-text-dark);
    text-align: left;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
  }

  /* Active/Hover states */
  .drawer-nav a:hover,
  .submenu-toggle:hover {
    color: var(--color-primary);
    padding-left: 8px;
    /* Slide effect */
    transition: all 0.2s;
  }

  /* Strict Accessibility Focus */
  .drawer-nav a:focus-visible,
  .submenu-toggle:focus-visible,
  .mobile-toggle:focus-visible,
  .drawer-close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Submenus */
  .drawer-submenu {
    list-style: none;
    padding-left: 0;
    background: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .submenu-toggle i {
    transition: transform 0.3s;
  }

  .submenu-toggle.active i {
    transform: rotate(180deg);
  }

  .drawer-submenu li {
    border-bottom: none;
    padding: 0 !important;
  }

  .drawer-submenu a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 8px 12px 8px 16px;
  }

  .drawer-submenu a:hover {
    color: var(--color-primary);
    background: #f0f0f0;
  }
}

.support-card {
  background: white;
  border: 1px solid #E5E7EB;
  padding: var(--spacing-md);
  border-radius: 8px;
  text-align: center;
}

.support-icon {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: #11222E;
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.footer-app-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #9CA3AF;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: #6B7280;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
}

.header-cta {
  display: block;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
}

.logo {
  font-size: 1.75rem;
}

h1 {
  font-size: 3rem;
}

/* --- Global Section Spacing Adustment --- */
section {
  padding: 3rem 0;
}

.hero {
  padding: 0;
}

.authority-strip {
  padding: 1.5rem 0;
}

/* --- Portfolio Carousel Section Compact --- */
.portfolio-section {
  position: relative;
  padding: 2.5rem 0;
  background-color: #f8fafc;
  overflow: hidden;
  text-align: center;
}

.portfolio-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.carousel-container {
  width: 100%;
  max-width: 1000px;
  height: 380px;
  position: relative;
  perspective: 1000px;
  margin: 0 auto;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
  position: absolute;
  width: 200px;
  height: 340px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 3px solid white;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3D Positions Compact */
.card.center {
  z-index: 10;
  transform: scale(1.05) translateZ(0);
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(31, 58, 74, 0.25);
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-140px) scale(0.9) translateZ(-60px);
  opacity: 0.9;
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-250px) scale(0.8) translateZ(-150px);
  opacity: 0.6;
}

.card.right-1 {
  z-index: 5;
  transform: translateX(140px) scale(0.9) translateZ(-60px);
  opacity: 0.9;
}

.card.right-2 {
  z-index: 1;
  transform: translateX(250px) scale(0.8) translateZ(-150px);
  opacity: 0.6;
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Navigation */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.nav-arrow:hover {
  background: var(--color-primary);
  color: white;
}

.nav-arrow.left {
  left: 40px;
}

.nav-arrow.right {
  right: 40px;
}

/* Counter Style */
.controls-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.carousel-counter {
  background: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 5px;
}

.carousel-counter span {
  color: var(--color-primary);
  font-size: 1rem;
}

/* =========================================
   HEADER DEMO OPTIONS (Migrated)
   ========================================= */

/* --- SHARED DEFAULTS --- */
.mobile-toggle {
  display: none;
  /* Hidden on Desktop */
}

.side-drawer {
  display: none;
}

.sticky-bar {
  display: none;
}

/* =========================================
   OPTION 1: SIDE DRAWER (header-v1) - PREMIUM
   ========================================= */

@media only screen and (max-width: 992px) {
  .header-v1 .header-top {
    display: none;
  }

  .header-v1 .header-inner {
    flex-direction: row;
    /* Keep row for Logo + Menu Btn */
    justify-content: space-between;
    padding: 5px 15px;
    /* Added side padding */
    align-items: center;
  }

  .header-v1 .desktop-nav {
    display: none;
  }

  /* Mobile Toggle Button - High Contrast & Touch Friendly */
  .header-v1 .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    /* Clean Light Background */
    border: 2px solid #E2E8F0;
    /* Definitive Border */
    color: var(--color-primary);
    cursor: pointer;
    width: 48px;
    /* Touch Target min 44px */
    height: 48px;
    border-radius: 8px;
    transition: all 0.2s ease;
    z-index: 1002;
    margin-right: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
  }

  .header-v1 .mobile-toggle:hover {
    background: white;
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 4px 8px rgba(201, 161, 59, 0.15);
    transform: translateY(-1px);
  }

  .header-v1 .mobile-toggle:active {
    background: #F1F5F9;
    transform: translateY(0);
    box-shadow: none;
  }

  .header-v1 .mobile-toggle i,
  .header-v1 .mobile-toggle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
    /* Thicker strokes for better visibility */
  }

  /* Adjust Toggle for Small Screens */
  @media only screen and (max-width: 576px) {
    .header-v1 .mobile-toggle {
      width: 40px;
      height: 40px;
      padding: 6px;
    }

    .header-v1 .mobile-toggle i,
    .header-v1 .mobile-toggle svg {
      width: 22px;
      height: 22px;
      stroke-width: 2px;
    }
  }

  /* Drawer Container - Premium Slide */
  .header-v1 .side-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden off-screen */
    width: 300px;
    /* Slightly wider */
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-like easing */
    display: flex;
    flex-direction: column;
  }

  .header-v1 .side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 74, 0.4);
    backdrop-filter: blur(4px);
    /* Glass effect */
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Drawer Open State */
  .header-v1 body.drawer-open {
    overflow: hidden;
  }

  .drawer-open .side-drawer {
    right: 0;
  }

  .drawer-open .side-drawer-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer Header */
  .drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }

  .drawer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .brand-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }

  .brand-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
  }

  .drawer-close {
    background: #f9fafb;
    border: 1px solid #eee;
    cursor: pointer;
    color: var(--color-text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .drawer-close:hover {
    background: #f3f4f6;
    color: #d00;
    transform: rotate(90deg);
  }

  /* Drawer Content */
  .drawer-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Contact Buttons (Now at Bottom) */
  .drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    /* Push to bottom of content area if needed, or just below nav */
    padding-top: 24px;
    border-top: 1px solid #eee;
    border-bottom: none;
    margin-bottom: 0;
  }

  .drawer-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s;
    text-align: center;
  }

  /* Phone Button Style */
  .drawer-contact a[href^="tel"] {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(31, 58, 74, 0.2);
  }

  /* Email Button Style */
  .drawer-contact a[href^="mailto"] {
    background: white;
    color: var(--color-text-dark);
    border: 2px solid #f3f4f6;
  }

  .drawer-contact a i {
    width: 18px;
    height: 18px;
  }

  .drawer-contact a:active {
    transform: scale(0.98);
  }

  /* Navigation List - Strict Vertical Stacking */
  .drawer-nav ul {
    display: flex;
    /* Turn on Flexbox */
    flex-direction: column;
    /* Force Column Direction */
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    /* Full width */
  }

  .drawer-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid #f9fafb;
    display: block;
    /* Ensure Block level behavior */
    width: 100%;
    padding: 0 !important;
    /* Override global nav padding */
  }

  .drawer-nav li:last-child {
    border-bottom: none;
  }

  .drawer-nav a,
  .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    /* Reduced padding from 16px to 10px */
    width: 100%;
    background: none;
    border: none;
    font-size: 1.05rem;
    /* Larger font */
    color: var(--color-text-dark);
    text-align: left;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
  }

  /* Active/Hover states */
  .drawer-nav a:hover,
  .submenu-toggle:hover {
    color: var(--color-primary);
    padding-left: 8px;
    /* Slide effect */
    transition: all 0.2s;
  }

  /* Strict Accessibility Focus */
  .drawer-nav a:focus-visible,
  .submenu-toggle:focus-visible,
  .mobile-toggle:focus-visible,
  .drawer-close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Submenus */
  .drawer-submenu {
    list-style: none;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 5px;
  }

  .drawer-submenu a {
    font-size: 0.95rem;
    padding: 12px 20px;
    color: var(--color-text-muted);
    border-left: 3px solid transparent;
  }

  .drawer-submenu a:hover {
    background: #f3f4f6;
    border-left-color: var(--color-accent);
    padding-left: 24px;
    color: var(--color-text-dark);
  }

  .submenu-toggle i {
    width: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s;
  }

  .submenu-toggle.active i {
    transform: rotate(180deg);
    color: var(--color-primary);
  }
}

/* Fix for About Page Header Responsiveness */
@media only screen and (max-width: 992px) {
  .page-header-bg-about {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 250px;
    padding: 60px 0;
  }
}

@media only screen and (max-width: 576px) {
  .page-header-bg-about {
    background-image: url('../images/about-header-mobile-v2.webp') !important;
    background-position: center bottom !important;
    background-size: cover !important;
    min-height: 380px;
    /* Optimal vertical height */
    height: auto;
    padding: 100px 20px 60px 20px;
    /* Spacious padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  /* Add a dark overlay to ensure text pops against any background part */
  .page-header-bg-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 74, 0.4);
    /* Navy tint overlay */
    z-index: 1;
  }

  .page-header-bg-about .container {
    width: 100%;
    position: relative;
    z-index: 5;
    /* Text above overlay */
  }

  .page-header-bg-about h1 {
    font-size: 2.6rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.2;
  }

  .page-header-bg-about p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
  }
}

/* --- UTILITY CLASSES FOR INDEX REFACTOR --- */
.bg-light {
  background-color: var(--color-bg-light);
}

.text-sm {
  font-size: 0.9rem !important;
}

.text-primary-bold {
  font-weight: 600;
  color: var(--color-primary);
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.d-inline-block {
  display: inline-block;
}

/* --- BUTTON VARIANTS --- */
.btn-white {
  background: white;
  color: var(--color-primary);
  border: 2px solid white;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-btn-override {
  color: white !important;
  border-color: white !important;
}

/* --- SPECIFIC COMPONENT OVERRIDES --- */
.about-snapshot-subtitle {
  color: var(--color-secondary);
  font-size: 1.4rem;
}

/* --- LEGAL PAGE STYLES --- */
.legal-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.legal-alert {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.legal-alert p {
  margin-bottom: 0;
  color: #856404;
  font-size: 0.95rem;
}

.legal-contact-box {
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

@media only screen and (max-width: 768px) {
  .legal-wrapper {
    padding: 1.5rem;
  }
}

.justify-center {
  justify-content: center !important;
}

/* --- LEGAL PAGE UTILITIES --- */
.section-padded {
  padding: 4rem 0;
}

.legal-meta {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.legal-heading {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  color: var(--color-primary);
  /* Ensure consistent color */
}

/* Contact Box Internals */
.contact-title {
  margin-top: 0;
  color: var(--color-primary);
}

.contact-row {
  margin-bottom: 5px;
}

.contact-link {
  color: var(--color-secondary);
}

.legal-footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

/* --- CONTACT PAGE STYLES (Custom Semantic Layout) --- */
.contact-page-wrapper {
  padding: 8rem 0 5rem;
}

/* Custom Grid Layout - Replacing Bootstrap Grid Dependence */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* Ratio similar to col-5 / col-7 */
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Info Side (Left) */
.contact-details-col {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .contact-details-col {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.contact-info-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--color-text-dark);
}

.contact-info-list {
  margin-top: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.contact-icon-box {
  width: 65px;
  height: 65px;
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.contact-info-text {
  margin-left: 1.5rem;
}

.contact-title-sm {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
  text-transform: capitalize;
}

.contact-link-lg {
  display: block;
  color: var(--color-text-body);
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-link-lg:hover {
  color: var(--color-primary);
}

.address-text {
  margin-bottom: 0;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

/* Form Side (Right) */
.contact-form-col {
  padding-left: 1rem;
}

@media (max-width: 992px) {
  .contact-form-col {
    padding-left: 0;
  }
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .custom-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-control-custom {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background-color: #F4F5F8;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--color-text-body);
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Subtle shadow on focus */
  outline: none;
}

.g-recaptcha {
  margin-bottom: 1.5rem;
}

/* CTA Strip Styling (New WhatsApp Focus) */
.contact-cta-box {
  background: #11295D;
  padding: 3rem 4rem;
  border-radius: 12px;
  color: white;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(17, 41, 93, 0.15);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-left-content {
  display: flex;
  align-items: center;
}

.cta-right-actions {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-cta-box {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
  }

  .cta-left-content {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .cta-icon-phone {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }

  .cta-right-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    margin-top: 0;
  }
}

.cta-icon-phone {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 1.5rem;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.cta-phone-link {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.google-map-container {
  /* Overlap effect */
  padding-top: 5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* --- RESPONSIVE TYPOGRAPHY & SPACING --- */
@media (max-width: 992px) {
  .contact-info-title {
    font-size: 2.5rem;
  }

  .contact-page-wrapper {
    padding: 6rem 0 4rem;
  }
}

@media (max-width: 768px) {
  .contact-info-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .contact-cta-box {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }

  .google-map-container {
    margin-top: -2rem !important;
  }
}

@media (max-width: 576px) {
  .contact-info-title {
    font-size: 1.8rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .contact-title-sm {
    font-size: 1rem;
  }

  .contact-link-lg {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-phone-link {
    font-size: 1.1rem;
  }
}

/* --- SERVICE / PLAN DETAIL PAGE TEMPLATE --- */

/* Page Header Override for Detail Pages */
.page-header-bg-service {
  background-image: linear-gradient(rgba(17, 41, 93, 0.85), rgba(17, 41, 93, 0.7)), url('../images/hero_bg_family.webp');
  background-size: cover;
  background-position: center;
}

.service-details-wrapper {
  padding: 7rem 0;
}

.service-main-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  /* Sidebar Left (Smaller), Content Right (Larger) */
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .service-main-grid {
    grid-template-columns: 1fr;
    /* Stack on Tablet/Mobile */
  }

  /* Order change: Content First, Sidebar Last on Mobile */
  .sidebar-col {
    order: 2;
  }

  .content-col {
    order: 1;
  }
}

/* Sidebar Styles */
.sidebar-box {
  background: #F4F5F8;
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--color-cta);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 10px;
}

.service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  color: var(--color-text-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.service-list a:hover,
.service-list a.active {
  background: white;
  color: var(--color-primary);
  transform: translateX(5px);
  border-left: 3px solid var(--color-primary);
}

.service-list i {
  color: var(--color-cta);
  font-size: 1.1rem;
}

.sidebar-contact-box {
  background: linear-gradient(135deg, var(--color-primary), #0d2149);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.sidebar-contact-box i.big-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.sidebar-contact-box h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.sidebar-contact-box .phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cta);
  display: block;
  margin: 1.5rem 0;
  text-decoration: none;
}

/* Main Content Styles */
/* Main Content Styles */
.service-content-image {
  width: 100%;
  height: 400px;
  /* Fixed height for professional look */
  object-fit: cover;
  /* Ensures image covers area without distortion */
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .service-content-image {
    height: 250px;
    /* Adjusted for mobile */
  }
}

.highlight-strip {
  background: #F4F5F8;
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border-left: 4px solid var(--color-primary);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-text span.label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.highlight-text span.value {
  display: block;
  font-size: 1.2rem;
  color: var(--color-primary);
  /* Blue highlight value */
  font-weight: 800;
}

.content-title {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.content-subtitle {
  font-size: 1.8rem;
  color: var(--color-text-dark);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-text {
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Feature Two Column Grid (Image Left, Checkmarks Right) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-image-side {
    display: none;
    /* Hide secondary image on mobile/tablet to avoid clutter */
  }
}

.feature-image-side img {
  width: 100%;
  border-radius: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

.feature-list i {
  color: var(--color-cta);
  /* Gold Checkmark */
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Custom Table for Plan Details */
.details-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  border: 1px solid #eee;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  /* Force scroll on small mobile */
}

.details-table th,
.details-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.details-table th {
  background: #F8FAFC;
  color: var(--color-primary);
  font-weight: 700;
  width: 40%;
}

.details-table tr:hover td {
  background: #fdfdfd;
}