/* ==========================================================================
   AFPM Packers & Movers - Premium Custom Stylesheet
   ========================================================================== */

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

/* Design Tokens & Theme Variables */
:root {
  /* Colors */
  --primary-color: #0b192f;        /* Deep Sapphire Blue */
  --primary-light: #172a45;       /* Light Sapphire */
  --primary-rgb: 11, 25, 47;
  --accent-color: #f97316;         /* Logistics Orange */
  --accent-hover: #ea580c;
  --accent-rgb: 249, 115, 22;
  
  --text-dark: #0f172a;           /* Slate 900 */
  --text-muted: #475569;          /* Slate 600 */
  --text-light: #94a3b8;          /* Slate 400 */
  --bg-light: #f8fafc;            /* Slate 50 */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;        /* Slate 200 */
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 25px -5px rgba(11, 25, 47, 0.08), 0 8px 10px -6px rgba(11, 25, 47, 0.04);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; position: relative; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.25rem; color: var(--text-muted); }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }

/* Accent border under section titles */
h2.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 50px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 99px;
}

h2.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-center { text-align: center; }

/* Grid and Container System */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section {
  padding: 5.5rem 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

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

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

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Top bar details */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.top-bar-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info a:hover {
  color: var(--accent-color);
}

.top-bar-cta {
  font-weight: 600;
}

/* Header & Sticky Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color); /* Logistics orange accent border */
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--primary-color);
}

.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem;
}

.logo {
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition-normal);
}

.logo img {
  height: 54px;
  display: block;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Light divider on dark header */
  padding-top: 0.65rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85); /* Light text */
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.95rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-color);
  border-radius: 99px;
  transition: var(--transition-normal);
}

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

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

/* Header Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-light); /* Matching dark sub-menu background */
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  list-style: none;
  min-width: 270px;
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--accent-color);
  padding-left: 1.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: #ffffff; /* White lines on dark header */
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO BACKROUND SLIDER: Overlay & Split Form Grid
   ========================================================================== */
.hero-slider-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-color);
  padding: 5.5rem 0;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 25, 47, 0.92) 35%, rgba(11, 25, 47, 0.5) 100%);
  z-index: 3;
}

.hero-static-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-info-column {
  color: var(--bg-white);
}

.hero-info-column h1 {
  color: var(--bg-white);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-info-column h1 span {
  color: var(--accent-color);
}

.hero-info-column p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-checklist li span {
  color: var(--accent-color);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
}

/* Quote Cards inside Hero */
.hero-quote-card {
  background-color: var(--bg-white);
  padding: 2.25rem;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  position: relative;
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 16px 16px 0 0;
}

.hero-quote-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

/* Input Fields Styles */
.form-group {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-normal);
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f97316' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  padding-right: 2rem;
}

/* Category Tab Selector */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  background-color: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  user-select: none;
}

.category-card:hover {
  border-color: var(--accent-color);
  background-color: rgba(249, 115, 22, 0.02);
}

.category-card.selected {
  border-color: var(--accent-color);
  background-color: rgba(249, 115, 22, 0.06);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.category-card .card-icon {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.category-card .card-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Trust Ribbon */
.trust-ribbon {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.trust-item span.icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* ==========================================================================
   ABOUT INTRO SECTION: Badge & Image Grid
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-images {
  position: relative;
  height: 440px;
}

.about-img-main {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

.experience-badge {
  position: absolute;
  left: -20px;
  bottom: 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
}

.experience-badge .num {
  font-size: 2.5rem;
  font-family: var(--font-headings);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   SERVICE CARD DESIGN: Premium 3-column Grid
   ========================================================================== */
.services-section {
  background-color: var(--bg-white);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.25);
}

.service-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

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

.service-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-body p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--primary-color);
}

.service-link span {
  transition: var(--transition-fast);
}

.service-link:hover span {
  transform: translateX(5px);
}

/* ==========================================================================
   STATISTICS & COUNTERS SECTION
   ========================================================================== */
.stats-section {
  background-image: linear-gradient(rgba(11, 25, 47, 0.92), rgba(11, 25, 47, 0.96)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--bg-white);
  padding: 5.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.stat-item .count {
  font-size: 3.5rem;
  font-family: var(--font-headings);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   TIMELINE STEPS SYSTEM
   ========================================================================== */
.timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3.5rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 5;
}

.timeline-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 3px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-normal);
}

.timeline-step:hover .timeline-number,
.timeline-step.active .timeline-number {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-white);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.15);
}

.timeline-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.timeline-step p {
  font-size: 0.85rem;
  margin: 0;
}

/* ==========================================================================
   DETAILED INQUIRY SECTION (SPLIT LAYOUT)
   ========================================================================== */
.detailed-inquiry-section {
  background-color: var(--bg-light);
}

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

.inquiry-info-box {
  padding-right: 1.5rem;
}

.info-bullet {
  display: flex;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.info-bullet .bullet-icon {
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-top: 0.2rem;
  background: rgba(249, 115, 22, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-bullet h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.detailed-form-wrapper {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.detailed-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 16px 16px 0 0;
}

.detailed-form-wrapper h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.detailed-form-wrapper .grid-2 {
  gap: 1.25rem;
}

/* ==========================================================================
   TESTIMONIAL CARDS
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-white);
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(249, 115, 22, 0.1);
  line-height: 1;
}

.stars {
  color: #fb8c00;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.user-avatar {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-headings);
}

.user-details h5 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.user-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INNER PAGE LAYOUTS
   ========================================================================== */
.page-header {
  background-image: linear-gradient(rgba(11, 25, 47, 0.85), rgba(11, 25, 47, 0.95)), url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 5rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: var(--accent-color);
}

.breadcrumbs span {
  margin: 0 0.5rem;
}

.inner-page-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3.5rem;
}

.sidebar-widget {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.75rem;
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  border-left: 3.5px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-left-color: var(--accent-color);
  padding-left: 1.25rem;
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-headings);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-content {
  border-top-color: var(--border-color);
}

/* ==========================================================================
   CORPORATE FOOTER: Clean 4-Column Layout
   ========================================================================== */
footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 5rem 0 0;
  border-top: 5px solid var(--accent-color);
}

footer h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1.25rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: bold;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact-info li span {
  color: var(--accent-color);
  font-size: 1.15rem;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.footer-contact-info a {
  display: block;
  color: var(--bg-white);
  font-weight: 600;
}

.footer-contact-info a:hover {
  color: var(--accent-color);
}

.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem 0;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.sub-footer p:last-child {
  margin-bottom: 0;
}

/* Floating Actions: Call & WhatsApp Floating Icons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 999;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.8rem;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-call {
  background-color: var(--accent-color);
  animation: pulse-orange 2s infinite;
  align-self: flex-start;
}

.float-whatsapp {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
  align-self: flex-end;
}

/* Keyframes */
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 25, 47, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  font-weight: bold;
}

.success-modal h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.success-modal p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .inner-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.95rem; }
  .section { padding: 4rem 0; }
  
  .top-bar {
    display: block !important;
    padding: 0.4rem 0 !important;
  }
  .top-bar .flex-container {
    justify-content: center !important;
  }
  .top-bar-info {
    justify-content: center !important;
    gap: 1.25rem !important;
    padding: 0 !important;
  }
  .top-bar-info li:nth-child(3),
  .top-bar-cta {
    display: none !important;
  }

  .navbar {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative;
    padding: 0.8rem 0 !important;
  }
  
  .logo {
    margin-bottom: 0 !important;
  }
  
  nav {
    display: none !important;
  }
  
  .burger {
    display: flex !important;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-menu {
    position: fixed;
    top: 106px !important;
    left: -100%;
    width: 100%;
    height: calc(100vh - 106px) !important;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    gap: 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    display: block;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background-color: var(--bg-light);
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    border-radius: 4px;
    margin-top: 0.5rem;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .trust-ribbon-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-images { height: 350px; }
  
  .split-inquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
  .inquiry-info-box { padding-right: 0; }
  .detailed-form-wrapper { padding: 1.75rem; }
  
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-container::before {
    display: none;
  }
  
  .floating-actions {
    bottom: 20px;
    padding: 0 20px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-info-column h1 { font-size: 2rem; }
}

/* ==========================================================================
   CERTIFICATIONS & ACCREDITATIONS SECTION
   ========================================================================== */
.certifications-section {
  background-color: var(--bg-white);
}

.cert-grid {
  margin-top: 3rem;
}

.cert-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.3);
  background-color: var(--bg-white);
}

.cert-badge {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.cert-card:hover .cert-badge {
  transform: scale(1.1) rotate(5deg);
}

.cert-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cert-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.cert-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.cert-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .cert-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   HERO TRUST BADGES & COMPACT FORM ROW
   ========================================================================== */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust-badges .badge-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
}

.form-row-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   ESTIMATED SHIFTING RATES SECTION
   ========================================================================== */
.rates-section {
  background-color: var(--bg-light);
}

.rates-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.rates-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.2);
}

.rates-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1.5rem;
  text-align: center;
}

.rates-header h3 {
  color: var(--bg-white);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.rates-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th, .rates-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  text-align: left;
}

.rates-table th {
  background-color: var(--bg-light);
  color: var(--primary-color);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
}

.rates-table td {
  border-bottom: 1px solid var(--border-color);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table td.price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 0.95rem;
}

.rates-footer {
  padding: 1.25rem 1.5rem;
  background-color: #fafbfc;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

/* ==========================================================================
   MOBILE STICKY BOTTOM CTA BAR
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(11, 25, 47, 0.1);
  grid-template-columns: repeat(2, 1fr);
  z-index: 9999;
  border-top: 1px solid var(--border-color);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transition-fast);
}

.cta-call {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.cta-call:hover {
  background-color: var(--primary-light);
}

.cta-whatsapp {
  background-color: #25d366;
  color: var(--bg-white);
}

.cta-whatsapp:hover {
  background-color: #128c7e;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
  }
  
  /* Hide the old circular floaters on mobile to avoid overlapping */
  .floating-actions {
    display: none !important;
  }
  
  /* Add padding-bottom to body to prevent text overlap with sticky bar */
  body {
    padding-bottom: 56px !important;
  }
}

/* ==========================================================================
   SAFETY STANDARD / ZERO DAMAGE SECTION RESPONSIVENESS
   ========================================================================== */
.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.safety-card {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .safety-card {
    padding: 2.25rem 1.5rem;
  }
}

/* ==========================================================================
   POPULAR SHIFTING ROUTES PAN INDIA
   ========================================================================== */
.routes-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.route-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.route-link-item::before {
  content: '🚛';
  margin-right: 0.5rem;
  font-size: 1rem;
}

.route-link-item:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.route-search-wrapper input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

@media (max-width: 768px) {
  .routes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .routes-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-light);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem auto 3rem;
  max-width: 800px;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

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

.gallery-card.hide {
  display: none;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.3);
}

.gallery-img-wrapper {
  height: 260px;
  overflow: hidden;
  position: relative;
  background-color: var(--primary-color);
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  display: block;
}

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

.gallery-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
}

.gallery-info h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-img-wrapper {
    height: 220px;
  }
  .gallery-filter-bar {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   HOMEPAGE CUSTOM COMPONENT STYLES
   ========================================================================== */

/* 1. Custom Accordion Styling */
.custom-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-white);
  transition: var(--transition-normal);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: var(--bg-light);
  transition: var(--transition-normal);
}

.accordion-header:hover {
  background-color: rgba(249, 115, 22, 0.02);
}

.accordion-item.active {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.accordion-item.active .accordion-header {
  background-color: rgba(249, 115, 22, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.accordion-header .icon {
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
  color: var(--accent-color);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-content p {
  padding: 1.25rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* 2. Core Values Grid Styling */
.values-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background-color: var(--bg-white);
  padding: 2.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.25);
}

.value-card .value-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.value-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* 3. Geographic Coverage Maps Styling */
.maps-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.map-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.map-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.15);
}

.map-card h3 {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.map-wrapper {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.map-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-normal);
}

.map-card:hover .map-img {
  transform: scale(1.02);
}

.map-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* 4. Homepage Gallery Showcase Styling */
.home-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-gallery-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.home-gallery-card .img-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
}

.home-gallery-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.home-gallery-card .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(11, 25, 47, 0.95), rgba(11, 25, 47, 0.3) 70%, transparent 100%);
  color: var(--bg-white);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 5;
}

.home-gallery-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.home-gallery-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.home-gallery-card .overlay h4 {
  color: var(--accent-color);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.home-gallery-card .overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* 5. Pre-Footer Contact Cards Styling */
.contact-boxes-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-box-card {
  background-color: var(--bg-white);
  padding: 2.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.contact-box-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.25);
}

.contact-box-card .icon {
  font-size: 2.25rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.contact-box-card h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-box-card p {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
}

.contact-box-card p a.highlight-link {
  color: var(--accent-color);
}

.contact-box-card p a.highlight-link:hover {
  color: var(--accent-hover);
}

.contact-box-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.contact-box-card .address-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

/* 6. Media Queries for New Sections */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .maps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-wrapper {
    height: 340px;
  }
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-accordion .accordion-header {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
  .custom-accordion .accordion-content p {
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
  }
  .home-gallery-card {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .map-wrapper {
    height: 280px;
  }
  .home-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-boxes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-box-card {
    padding: 1.75rem 1.25rem;
  }
}
