/* ==========================================
   Tridev Relocation Packers & Movers
   MOBILE-FIRST STYLESHEET (css/mobile.css)
   ========================================== */

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

:root {
  /* Colors */
  --primary: #63C5DA;
  --primary-rgb: 99, 197, 218;
  --secondary: #0A192F;
  --secondary-rgb: 10, 25, 47;
  --secondary-light: #172A45;
  --text-dark: #0A192F;
  --text-muted: #5A6E7F;
  --bg-light: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.85);
  --white: #FFFFFF;
  --light-gray: #E2E8F0;
  --success: #10B981;
  --shadow: 0 10px 30px -15px rgba(10, 25, 47, 0.1);
  --shadow-hover: 0 20px 40px -15px rgba(99, 197, 218, 0.3);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-slow: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Light / Dark Mode Override Base Variables */
body.dark {
  --bg-light: #060B13;
  --bg-card: rgba(17, 34, 64, 0.85);
  --text-dark: #F8FAFC;
  --text-muted: #8892B0;
  --light-gray: #233554;
  --shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  --white: #0A192F;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  position: relative;
  transition: var(--transition-fast);
}

/* Disable AOS animations on mobile viewports to prevent layout translation overflows */
@media screen and (max-width: 768px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4ab4cc;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, #00F2FE 100%);
  transition: width 0.1s ease;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-loader {
  width: 150px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.preloader-truck {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 2.5rem;
  color: var(--primary);
  animation: drive 1.8s infinite linear;
}
.preloader-road {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--light-gray);
  border-radius: 2px;
}
.preloader-road::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30px;
  background: var(--primary);
  animation: road-dash 1.8s infinite linear;
}
.preloader-text {
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  margin-top: 15px;
  letter-spacing: 2px;
  animation: pulse 1.5s infinite;
}

@keyframes drive {
  0% { transform: translateX(-40px); }
  50% { transform: translateX(50px) translateY(-2px); }
  100% { transform: translateX(160px); }
}
@keyframes road-dash {
  0% { transform: translateX(-50px); }
  100% { transform: translateX(150px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-slow);
  background: rgba(99, 197, 218, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 0;
  animation: headerSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.dark header {
  background: rgba(99, 197, 218, 0.92);
}
header.scrolled {
  padding: 4px 0;
  background: rgba(99, 197, 218, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  transition: transform var(--transition-fast) ease;
}
body.dark .logo {
  color: #FFFFFF;
}
.logo:hover {
  transform: translateY(-1px);
}
.logo-icon {
  font-size: 1.8rem;
  color: #FFFFFF;
}
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: all var(--transition-fast) ease;
}
.logo:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.1;
}
.logo-text span {
  font-size: 0.75rem;
  display: block;
  font-weight: 400;
  color: #0A192F;
}

/* Hamburger Menu button */
.hamburger {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #FFFFFF;
  transition: var(--transition-fast);
}
body.dark .hamburger-line {
  background-color: #FFFFFF;
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Links Drawer */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  height: 100vh;
  width: 75%;
  max-width: 320px;
  background: var(--secondary);
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  padding: 50px 20px;
}
body.dark .nav-menu {
  background: #0B132B;
}
.nav-menu.active {
  transform: translateX(0);
}
.nav-item {
  list-style: none;
}
.nav-link {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
}
.nav-link.active, .nav-link:hover {
  color: var(--primary);
  background: rgba(99, 197, 218, 0.1);
}
.theme-toggle-btn {
  display: none !important;
}
.admin-header .theme-toggle-btn {
  display: block !important;
}

/* Floating Actions & Widgets */
.floating-widgets {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}
.floating-btn:hover {
  transform: translateY(-5px);
}
.floating-whatsapp {
  background: #25D366;
}
.floating-call {
  background: var(--primary);
}
.floating-top {
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  font-size: 1.1rem;
}
.floating-top.show {
  opacity: 1;
  visibility: visible;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 14px rgba(99, 197, 218, 0.35);
}
.btn-primary:hover {
  background: #50b6cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 197, 218, 0.45);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}
body.dark .btn-secondary {
  background: var(--secondary-light);
}
body.dark .btn-secondary:hover {
  background: #233554;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}



/* Section Common Layouts */
section {
  padding: 60px 0;
}
.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle {
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  display: block;
}
.section-title {
  color: var(--text-dark);
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title.no-line::after {
  display: none;
}

/* Card glassmorphism default styling */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
}
body.dark .glass-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   PAGE: HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: 100px 0 60px;
}
.hero-slider {
  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%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(17, 42, 80, 0.65) 100%);
  z-index: 2;
}
body.dark .hero-overlay {
  background: linear-gradient(135deg, rgba(6, 11, 19, 0.85) 0%, rgba(10, 25, 47, 0.75) 100%);
}

/* Floating Glow Orbs for Animated Background */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.3;
  animation: drift 18s infinite alternate ease-in-out;
  pointer-events: none;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -50px;
  left: -50px;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: #00F2FE;
  bottom: -100px;
  right: -50px;
  animation-delay: -6s;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 50px) scale(1.1); }
  100% { transform: translate(-30px, 90px) scale(0.95); }
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  padding-top: 80px;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out;
}
body.dark .hero-title {
  color: #FFFFFF;
}
.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E2E8F0 !important;
  min-height: 48px;
}
#typing-text {
  color: var(--primary) !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(99, 197, 218, 0.3);
}
body.dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.hero-buttons .btn {
  width: 80%;
  max-width: 280px;
}

/* Moving Truck Animation inside Hero */
.hero-truck-animation {
  position: absolute;
  bottom: 8px;
  left: -200px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 2rem;
  color: var(--primary);
  animation: move-truck 18s infinite linear;
}
.hero-truck-animation::after {
  content: 'TRIDEV MOVERS';
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.6rem;
  background: var(--primary);
  color: var(--secondary);
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 1px;
}
@keyframes move-truck {
  0% { left: -150px; }
  100% { left: 100%; }
}

/* Stats Counter Section */
.stats-banner {
  padding: 40px 0;
  position: relative;
  z-index: 5;
}
.stats-card-wrapper {
  background: #63C5DA;
  border-radius: 20px;
  padding: 40px 20px 30px;
  box-shadow: 0 15px 35px rgba(99, 197, 218, 0.25);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-card {
    border-right: 1px solid rgba(10, 25, 47, 0.1);
  }
  .stat-card:last-child {
    border-right: none;
  }
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 992px) {
  .stat-card {
    justify-content: center;
    padding: 10px 20px;
  }
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(10, 25, 47, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0A192F;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-icon-box {
  transform: scale(1.1);
}
.stat-text-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.stat-num {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0A192F;
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(10, 25, 47, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.stats-tagline {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(10, 25, 47, 0.85);
  font-family: var(--font-body);
  font-weight: 500;
  border-top: 1px solid rgba(10, 25, 47, 0.08);
  padding-top: 20px;
}
body.dark .stats-card-wrapper {
  background: #63C5DA;
}

/* ==========================================
   PAGE: ABOUT US SECTION
   ========================================== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 15px;
  height: 300px;
}
.about-img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
}
.about-img-1 {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
}
.about-img-2 {
  grid-column: 4 / 7;
  grid-row: 3 / 7;
  border: 5px solid var(--bg-light);
  z-index: 2;
}
.about-img-3 {
  grid-column: 1 / 4;
  grid-row: 5 / 7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-headings);
}
.about-feat-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(99, 197, 218, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ==========================================
   PAGE: SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
/* Multi-color styling variables for Services cards */
.service-card:nth-child(8n+1) { --card-accent: #00B4D8; --card-accent-rgb: 0, 180, 216; }
.service-card:nth-child(8n+2) { --card-accent: #7209B7; --card-accent-rgb: 114, 9, 183; }
.service-card:nth-child(8n+3) { --card-accent: #4CC9F0; --card-accent-rgb: 76, 201, 240; }
.service-card:nth-child(8n+4) { --card-accent: #FF007F; --card-accent-rgb: 255, 0, 127; }
.service-card:nth-child(8n+5) { --card-accent: #FF9F1C; --card-accent-rgb: 255, 159, 28; }
.service-card:nth-child(8n+6) { --card-accent: #2EC4B6; --card-accent-rgb: 46, 196, 182; }
.service-card:nth-child(8n+7) { --card-accent: #3A86C8; --card-accent-rgb: 58, 134, 200; }
.service-card:nth-child(8n+8) { --card-accent: #E0115F; --card-accent-rgb: 224, 17, 95; }

.service-card {
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--card-accent) !important;
  transition: var(--transition-slow);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08), 0 8px 24px rgba(var(--card-accent-rgb), 0.25);
  border-color: rgba(var(--card-accent-rgb), 0.3) !important;
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(var(--card-accent-rgb), 0.12) !important;
  color: var(--card-accent) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(var(--card-accent-rgb), 0.1);
}
.service-card:hover .service-icon-wrap {
  background: var(--card-accent) !important;
  color: var(--white) !important;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(var(--card-accent-rgb), 0.4);
}
.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: var(--font-headings);
  font-weight: 700;
}
.service-card-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card .learn-more-btn {
  border-color: var(--card-accent) !important;
  color: var(--card-accent) !important;
}
.service-card .learn-more-btn:hover {
  background: var(--card-accent) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 15px rgba(var(--card-accent-rgb), 0.3);
}

/* ==========================================
   PAGE: WHY CHOOSE US
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 30px 20px;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Premium Multicolor Card Backgrounds */
.why-card:nth-child(6n+1) {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  border-color: #7DD3FC !important;
}
.why-card:nth-child(6n+1) .why-icon { color: #0284C7; }
.why-card:nth-child(6n+1) h3 { color: #0369A1; }
.why-card:nth-child(6n+1) p { color: #075985; }

.why-card:nth-child(6n+2) {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border-color: #86EFAC !important;
}
.why-card:nth-child(6n+2) .why-icon { color: #16A34A; }
.why-card:nth-child(6n+2) h3 { color: #15803D; }
.why-card:nth-child(6n+2) p { color: #166534; }

.why-card:nth-child(6n+3) {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-color: #FCD34D !important;
}
.why-card:nth-child(6n+3) .why-icon { color: #D97706; }
.why-card:nth-child(6n+3) h3 { color: #B45309; }
.why-card:nth-child(6n+3) p { color: #78350F; }

.why-card:nth-child(6n+4) {
  background: linear-gradient(135deg, #F5F3FF 0%, #E0E7FF 100%);
  border-color: #C7D2FE !important;
}
.why-card:nth-child(6n+4) .why-icon { color: #4F46E5; }
.why-card:nth-child(6n+4) h3 { color: #4338CA; }
.why-card:nth-child(6n+4) p { color: #3730A3; }

.why-card:nth-child(6n+5) {
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
  border-color: #FBCFE8 !important;
}
.why-card:nth-child(6n+5) .why-icon { color: #DB2777; }
.why-card:nth-child(6n+5) h3 { color: #BE185D; }
.why-card:nth-child(6n+5) p { color: #9D174D; }

.why-card:nth-child(6n+6) {
  background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
  border-color: #67E8F9 !important;
}
.why-card:nth-child(6n+6) .why-icon { color: #0D9488; }
.why-card:nth-child(6n+6) h3 { color: #0F766E; }
.why-card:nth-child(6n+6) p { color: #115E59; }

/* Dark Mode Multicolor Card Backgrounds */
body.dark .why-card:nth-child(6n+1) {
  background: linear-gradient(135deg, #075985 0%, #0369A1 100%);
  border-color: #0284C7 !important;
}
body.dark .why-card:nth-child(6n+1) .why-icon { color: #38BDF8; }
body.dark .why-card:nth-child(6n+1) h3 { color: #F0F9FF; }
body.dark .why-card:nth-child(6n+1) p { color: #BAE6FD; }

body.dark .why-card:nth-child(6n+2) {
  background: linear-gradient(135deg, #166534 0%, #14532D 100%);
  border-color: #15803D !important;
}
body.dark .why-card:nth-child(6n+2) .why-icon { color: #4ADE80; }
body.dark .why-card:nth-child(6n+2) h3 { color: #F0FDF4; }
body.dark .why-card:nth-child(6n+2) p { color: #BBF7D0; }

body.dark .why-card:nth-child(6n+3) {
  background: linear-gradient(135deg, #78350F 0%, #451A03 100%);
  border-color: #B45309 !important;
}
body.dark .why-card:nth-child(6n+3) .why-icon { color: #FBBF24; }
body.dark .why-card:nth-child(6n+3) h3 { color: #FFFBEB; }
body.dark .why-card:nth-child(6n+3) p { color: #FDE68A; }

body.dark .why-card:nth-child(6n+4) {
  background: linear-gradient(135deg, #3730A3 0%, #312E81 100%);
  border-color: #4F46E5 !important;
}
body.dark .why-card:nth-child(6n+4) .why-icon { color: #818CF8; }
body.dark .why-card:nth-child(6n+4) h3 { color: #EEF2FF; }
body.dark .why-card:nth-child(6n+4) p { color: #C7D2FE; }

body.dark .why-card:nth-child(6n+5) {
  background: linear-gradient(135deg, #9D174D 0%, #831843 100%);
  border-color: #BE185D !important;
}
body.dark .why-card:nth-child(6n+5) .why-icon { color: #F472B6; }
body.dark .why-card:nth-child(6n+5) h3 { color: #FDF2F8; }
body.dark .why-card:nth-child(6n+5) p { color: #FBCFE8; }

body.dark .why-card:nth-child(6n+6) {
  background: linear-gradient(135deg, #115E59 0%, #134E4A 100%);
  border-color: #0D9488 !important;
}
body.dark .why-card:nth-child(6n+6) .why-icon { color: #2DD4BF; }
body.dark .why-card:nth-child(6n+6) h3 { color: #F0FDFA; }
body.dark .why-card:nth-child(6n+6) p { color: #CCFBF1; }

/* ==========================================
   PAGE: PRICING SECTION
   ========================================== */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  font-family: var(--font-headings);
  font-weight: 600;
}
.pricing-toggle-label {
  cursor: pointer;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  transition: .4s;
  border-radius: 34px;
}
.slider-toggle:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
input:checked + .slider-toggle {
  background-color: var(--primary);
}
input:checked + .slider-toggle:before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.pricing-card {
  position: relative;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 15px;
  border-radius: 20px;
  text-transform: uppercase;
}
.price-tag {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 15px 0 5px;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.pricing-features {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  text-align: left;
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}
.pricing-features li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}
.pricing-features li i {
  color: var(--success);
}

/* ==========================================
   PAGE: PROCESS TIMELINE
   ========================================== */
.timeline-container {
  position: relative;
  margin: 40px 0;
  padding-left: 20px;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--light-gray);
}
.timeline-step {
  position: relative;
  margin-bottom: 35px;
  padding-left: 25px;
}
.timeline-dot {
  position: absolute;
  left: -20px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 4px rgba(99, 197, 218, 0.2);
  z-index: 2;
  transition: var(--transition-fast);
}
.timeline-step:hover .timeline-dot {
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(99, 197, 218, 0.4);
}
.timeline-num {
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
}
.timeline-step-title {
  font-size: 1.2rem;
  margin-top: 2px;
  margin-bottom: 8px;
}
.timeline-step-desc {
  font-size: 0.85rem;
  margin: 0;
}

/* Premium Multicolor Steps for Process Timeline */
.timeline-step:nth-child(6n+1) .timeline-num { color: #0284C7; }
.timeline-step:nth-child(6n+1) .timeline-step-title { color: #0369A1; }
.timeline-step:nth-child(6n+1) .timeline-dot { background: #0284C7; box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2); }
.timeline-step:nth-child(6n+1):hover .timeline-dot { background: #0369A1; box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.4); }

.timeline-step:nth-child(6n+2) .timeline-num { color: #16A34A; }
.timeline-step:nth-child(6n+2) .timeline-step-title { color: #15803D; }
.timeline-step:nth-child(6n+2) .timeline-dot { background: #16A34A; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2); }
.timeline-step:nth-child(6n+2):hover .timeline-dot { background: #15803D; box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.4); }

.timeline-step:nth-child(6n+3) .timeline-num { color: #D97706; }
.timeline-step:nth-child(6n+3) .timeline-step-title { color: #B45309; }
.timeline-step:nth-child(6n+3) .timeline-dot { background: #D97706; box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2); }
.timeline-step:nth-child(6n+3):hover .timeline-dot { background: #B45309; box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.4); }

.timeline-step:nth-child(6n+4) .timeline-num { color: #4F46E5; }
.timeline-step:nth-child(6n+4) .timeline-step-title { color: #4338CA; }
.timeline-step:nth-child(6n+4) .timeline-dot { background: #4F46E5; box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2); }
.timeline-step:nth-child(6n+4):hover .timeline-dot { background: #4338CA; box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.4); }

.timeline-step:nth-child(6n+5) .timeline-num { color: #DB2777; }
.timeline-step:nth-child(6n+5) .timeline-step-title { color: #BE185D; }
.timeline-step:nth-child(6n+5) .timeline-dot { background: #DB2777; box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.2); }
.timeline-step:nth-child(6n+5):hover .timeline-dot { background: #BE185D; box-shadow: 0 0 0 6px rgba(219, 39, 119, 0.4); }

.timeline-step:nth-child(6n+6) .timeline-num { color: #0D9488; }
.timeline-step:nth-child(6n+6) .timeline-step-title { color: #0F766E; }
.timeline-step:nth-child(6n+6) .timeline-dot { background: #0D9488; box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2); }
.timeline-step:nth-child(6n+6):hover .timeline-dot { background: #0F766E; box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.4); }

/* Dark Mode Process Timeline Custom Colors */
body.dark .timeline-step:nth-child(6n+1) .timeline-num { color: #38BDF8; }
body.dark .timeline-step:nth-child(6n+1) .timeline-step-title { color: #F0F9FF; }

body.dark .timeline-step:nth-child(6n+2) .timeline-num { color: #4ADE80; }
body.dark .timeline-step:nth-child(6n+2) .timeline-step-title { color: #F0FDF4; }

body.dark .timeline-step:nth-child(6n+3) .timeline-num { color: #FBBF24; }
body.dark .timeline-step:nth-child(6n+3) .timeline-step-title { color: #FFFBEB; }

body.dark .timeline-step:nth-child(6n+4) .timeline-num { color: #818CF8; }
body.dark .timeline-step:nth-child(6n+4) .timeline-step-title { color: #EEF2FF; }

body.dark .timeline-step:nth-child(6n+5) .timeline-num { color: #F472B6; }
body.dark .timeline-step:nth-child(6n+5) .timeline-step-title { color: #FDF2F8; }

body.dark .timeline-step:nth-child(6n+6) .timeline-num { color: #2DD4BF; }
body.dark .timeline-step:nth-child(6n+6) .timeline-step-title { color: #F0FDFA; }

/* ==========================================
   PAGE: TRACKING SECTION
   ========================================== */
.tracking-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.tracking-box {
  padding: 30px;
}
.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.input-group {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.input-group:focus-within {
  transform: translateY(-3px);
}
.form-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.form-input:hover {
  border-color: var(--primary);
  background: rgba(99, 197, 218, 0.03);
}
.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(99, 197, 218, 0.15);
}
body.dark .form-input:focus {
  background: var(--secondary-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.form-heading {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}
.form-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Quick Quote Form overrides (Light/Dark themes) */
.hero-quick-quote {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(10, 25, 47, 0.1) !important;
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.08) !important;
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 30px;
  width: 100%;
}
body.dark .hero-quick-quote {
  background: rgba(10, 25, 47, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}
.hero-quick-quote h3 {
  color: var(--text-dark) !important;
}
body.dark .hero-quick-quote h3 {
  color: #FFFFFF !important;
}
.hero-quick-quote .form-input {
  background: rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(10, 25, 47, 0.12) !important;
  color: var(--text-dark) !important;
}
body.dark .hero-quick-quote .form-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}
.hero-quick-quote .form-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(99, 197, 218, 0.25) !important;
}
.hero-quick-quote label {
  background: #FFFFFF !important;
  color: var(--text-muted) !important;
}
body.dark .hero-quick-quote label {
  background: #112240 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.hero-quick-quote .form-input:focus + label,
.hero-quick-quote .form-input:not(:placeholder-shown) + label {
  color: var(--primary) !important;
}

.input-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
  background: var(--white);
  padding: 0 5px;
}
.form-input:focus + label,
.form-input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

/* Tracking Result Timeline */
.tracking-result-card {
  margin-top: 25px;
  display: none; /* Shown dynamically */
}
.tracking-header {
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.track-id-display {
  font-family: var(--font-headings);
  color: var(--primary);
  font-weight: 700;
}
.track-route {
  font-weight: 600;
  margin-top: 5px;
  font-size: 0.95rem;
}
.tracking-status-flow {
  position: relative;
  padding-left: 20px;
}
.tracking-status-flow::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  height: calc(100% - 20px);
  width: 2px;
  background: var(--light-gray);
}
.tracking-flow-step {
  position: relative;
  padding-left: 25px;
  margin-bottom: 25px;
}
.tracking-flow-step.completed .tracking-flow-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.tracking-flow-dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 2px solid var(--bg-light);
  z-index: 2;
}
.track-step-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.track-step-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================
   PAGE: QUOTE FORM SECTION (Advanced Form)
   ========================================== */
.quote-box {
  max-width: 700px;
  margin: 0 auto;
}
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 25px;
}
.textarea-group {
  grid-column: 1 / -1;
}

/* ==========================================
   PAGE: GALLERY SECTION
   ========================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-title {
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.95);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  font-family: var(--font-headings);
}

/* ==========================================
   PAGE: TESTIMONIALS SECTION
   ========================================== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100% !important;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
}
.testimonial-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll-left-to-right 28s infinite linear;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
.testimonial-slide {
  width: auto !important;
  padding: 0;
  display: flex;
  flex-shrink: 0;
}
.testimonial-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 197, 218, 0.22) 0%, rgba(99, 197, 218, 0.08) 100%) !important;
  border: 1.5px solid rgba(99, 197, 218, 0.4) !important;
  box-shadow: 0 10px 30px rgba(99, 197, 218, 0.1) !important;
  padding: 30px 25px;
  border-radius: 16px;
  min-width: 320px;
  max-width: 320px;
  margin: 10px 15px;
  flex-shrink: 0;
  transition: var(--transition-slow);
}
body.dark .testimonial-card {
  background: linear-gradient(135deg, rgba(99, 197, 218, 0.22) 0%, rgba(10, 25, 47, 0.6) 100%) !important;
  border-color: rgba(99, 197, 218, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(99, 197, 218, 0.3) !important;
  border-color: var(--primary) !important;
}
.testi-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 10px rgba(99, 197, 218, 0.25);
}
.testi-stars {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.testi-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-dark) !important;
}
body.dark .testi-text {
  color: rgba(255, 255, 255, 0.95) !important;
}
.testi-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--text-dark) !important;
}
body.dark .testi-name {
  color: var(--white) !important;
}
.testi-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.carousel-dots {
  display: none !important;
}

@keyframes marquee-scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ==========================================
   PAGE: FAQ SECTION (Accordion)
   ========================================== */
.faq-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition-fast);
}
.faq-header-btn {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
}
.faq-icon-arrow {
  transition: transform 0.3s ease;
  color: var(--primary);
}
.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(99, 197, 218, 0.1);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.active .faq-body {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-body p {
  margin: 0;
  font-size: 0.9rem;
}

/* ==========================================
   PAGE: CONTACT US SECTION
   ========================================== */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: rgba(99, 197, 218, 0.08); /* Soft primary theme tint */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 197, 218, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}
body.dark .contact-info-card {
  background: rgba(17, 34, 64, 0.85); /* Matches body dark bg-card variable */
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-detail-item {
  display: flex;
  gap: 15px;
}
.contact-detail-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(99, 197, 218, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.contact-detail-text p {
  margin: 0;
  font-size: 0.9rem;
}

.map-container {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
body.dark footer {
  background: #070D19;
}
.footer-waves {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
.footer-waves svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 60px;
  transform: rotate(180deg);
}
.footer-waves .shape-fill {
  fill: var(--secondary);
}
body.dark .footer-waves .shape-fill {
  fill: #070D19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.social-icon:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-links-col h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-links-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-col li {
  margin-bottom: 10px;
}
.footer-links-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-links-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

/* ==========================================
   ADMIN LOGIN & PANEL DESIGN
   ========================================== */
.admin-login-body {
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.admin-login-card h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--font-headings);
}
.admin-login-card .form-input {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.admin-login-card label {
  background: #0A192F;
  color: rgba(255,255,255,0.5);
}
.admin-login-card .form-input:focus + label,
.admin-login-card .form-input:not(:placeholder-shown) + label {
  background: #0A192F;
}

/* Admin Dashboard Panel */
.admin-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-header {
  background: var(--secondary);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-nav {
  background: var(--secondary-light);
  display: flex;
  overflow-x: auto;
  padding: 10px;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.admin-nav::-webkit-scrollbar {
  height: 4px;
}
.admin-nav-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-headings);
  font-weight: 600;
  transition: var(--transition-fast);
}
.admin-nav-btn.active, .admin-nav-btn:hover {
  background: var(--primary);
  color: var(--secondary);
}

.admin-main {
  flex: 1;
  padding: 20px;
  background: var(--bg-light);
}
.admin-section {
  display: none;
}
.admin-section.active {
  display: block;
}

/* Admin Grid / Tables */
.admin-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 25px;
}
.admin-stat-box {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--primary);
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  margin-top: 15px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-table th, .admin-table td {
  padding: 15px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
}
.admin-table th {
  background: rgba(99, 197, 218, 0.05);
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
}
.admin-table tr:hover {
  background: rgba(99, 197, 218, 0.02);
}

.badge-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-pending { background: rgba(245,158,11,0.15); color: #D97706; }
.badge-transit { background: rgba(59,130,246,0.15); color: #2563EB; }
.badge-delivered { background: rgba(16,185,129,0.15); color: #059669; }

.action-btn-group {
  display: flex;
  gap: 8px;
}
.action-btn {
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}
.btn-edit { background: #3B82F6; }
.btn-delete { background: #EF4444; }

/* Admin Forms & Modals */
.admin-form-group {
  margin-bottom: 15px;
}
.admin-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}
.admin-form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--text-dark);
}
.admin-form-control:focus {
  border-color: var(--primary);
}

/* Modal styles */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.admin-modal.active {
  display: flex;
}
.admin-modal-content {
  width: 100%;
  max-width: 500px;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
body.dark .admin-modal-content {
  background: var(--secondary-light);
  color: var(--white);
}
.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.admin-modal-close {
  font-size: 1.5rem;
  cursor: pointer;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide tracking options globally */
.nav-menu a[href*="tracking.html"],
.footer-links-col a[href*="tracking.html"],
.admin-sidebar button[data-section="tracking"],
.admin-nav button[data-section="tracking"],
.admin-stat-box:has(#dash-stat-track) {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .admin-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }
}

/* Service Coverage Section Styles */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.coverage-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--primary) !important;
}
body.dark .coverage-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.coverage-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(99, 197, 218, 0.12);
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(99, 197, 218, 0.1);
}
.coverage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.coverage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.coverage-cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: var(--transition-fast);
}
body.dark .city-pill {
  background: var(--secondary-light);
  border-color: rgba(255,255,255,0.05);
  color: var(--white);
}
.city-pill i {
  color: var(--primary);
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}
.city-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  color: var(--primary);
}
.city-pill:hover i {
  transform: scale(1.2) translateY(-2px);
}

@media screen and (max-width: 480px) {
  .logo-text {
    font-size: 0.95rem !important;
  }
  .logo-text span {
    font-size: 0.65rem !important;
  }
  .logo-icon {
    font-size: 1.4rem !important;
  }
  .hamburger {
    padding: 5px;
  }
}


