/* ==========================================================
   Logify - Modern Courier SaaS Design System
   ========================================================== */

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

:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Inter", sans-serif;

  /* Brand Palette */
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --primary-glow: rgba(79, 70, 229, 0.15);

  --secondary: #06B6D4;
  --secondary-light: #22D3EE;

  --accent: #F59E0B;
  --accent-light: #FCD34D;

  --success: #10B981;
  --danger: #EF4444;

  /* Neutrals */
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --gray-950: #020617;

  /* Semantic */
  --background-color: #ffffff;
  --default-color: var(--gray-600);
  --heading-color: var(--gray-900);
  --accent-color: var(--primary);
  --surface-color: var(--gray-50);
  --contrast-color: #ffffff;

  /* Nav */
  --nav-color: var(--gray-500);
  --nav-hover-color: var(--primary);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: var(--gray-700);
  --nav-dropdown-hover-color: var(--primary);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 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.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
}

.light-background {
  --background-color: var(--gray-50);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--gray-900);
  --default-color: var(--gray-300);
  --heading-color: #ffffff;
  --surface-color: var(--gray-800);
  --contrast-color: #ffffff;
}

:root { scroll-behavior: smooth; }

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

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

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

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

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ==========================================================
   Header
   ========================================================== */
.header {
  --background-color: rgba(255,255,255,0);
  --heading-color: #fff;
  color: var(--gray-700);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo { line-height: 1; }
.header .logo img { max-height: 32px; margin-right: 8px; }
.header .logo h1, .header .logo .sitename {
  font-size: 26px;
  margin: 0;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.header .btn-getstarted, .header .btn-getstarted:focus {
  color: #fff;
  background: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  margin: 0 0 0 24px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.header .btn-getstarted:hover {
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Inner pages: header over dark page-title */
.about-page .header .logo .sitename,
.services-page .header .logo .sitename,
.contact-page .header .logo .sitename,
.service-details-page .header .logo .sitename,
.tracking-page .header .logo .sitename {
  color: #fff;
}

.about-page .header .navmenu a,
.services-page .header .navmenu a,
.contact-page .header .navmenu a,
.service-details-page .header .navmenu a,
.tracking-page .header .navmenu a {
  color: rgba(255,255,255,0.75);
}
.about-page .header .navmenu a:hover,
.about-page .header .navmenu .active,
.services-page .header .navmenu a:hover,
.services-page .header .navmenu .active,
.contact-page .header .navmenu a:hover,
.contact-page .header .navmenu .active,
.service-details-page .header .navmenu a:hover,
.service-details-page .header .navmenu .active,
.tracking-page .header .navmenu a:hover,
.tracking-page .header .navmenu .active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.about-page .header .mobile-nav-toggle,
.services-page .header .mobile-nav-toggle,
.contact-page .header .mobile-nav-toggle,
.service-details-page .header .mobile-nav-toggle,
.tracking-page .header .mobile-nav-toggle {
  color: #fff;
}

/* Revert header to normal when scrolled on inner pages */
.about-page.scrolled .header .logo .sitename,
.services-page.scrolled .header .logo .sitename,
.contact-page.scrolled .header .logo .sitename,
.service-details-page.scrolled .header .logo .sitename,
.tracking-page.scrolled .header .logo .sitename {
  color: var(--gray-900) !important;
}

.about-page.scrolled .header .navmenu a,
.services-page.scrolled .header .navmenu a,
.contact-page.scrolled .header .navmenu a,
.service-details-page.scrolled .header .navmenu a,
.tracking-page.scrolled .header .navmenu a {
  color: var(--nav-color) !important;
}
.about-page.scrolled .header .navmenu a:hover,
.about-page.scrolled .header .navmenu .active,
.services-page.scrolled .header .navmenu a:hover,
.services-page.scrolled .header .navmenu .active,
.contact-page.scrolled .header .navmenu a:hover,
.contact-page.scrolled .header .navmenu .active,
.service-details-page.scrolled .header .navmenu a:hover,
.service-details-page.scrolled .header .navmenu .active,
.tracking-page.scrolled .header .navmenu a:hover,
.tracking-page.scrolled .header .navmenu .active {
  color: var(--primary) !important;
  background: var(--primary-glow) !important;
}

.about-page.scrolled .header .mobile-nav-toggle,
.services-page.scrolled .header .mobile-nav-toggle,
.contact-page.scrolled .header .mobile-nav-toggle,
.service-details-page.scrolled .header .mobile-nav-toggle,
.tracking-page.scrolled .header .mobile-nav-toggle {
  color: var(--gray-700) !important;
}

.scrolled .header {
  padding: 10px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 8px 20px; }
  .header .navmenu { order: 3; }
}

/* ==========================================================
   Navigation
   ========================================================== */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0; padding: 0;
    display: flex; list-style: none;
    align-items: center;
    gap: 4px;
  }
  .navmenu li { position: relative; }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--nav-font);
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
  }
  .navmenu a:hover, .navmenu .active, .navmenu li:hover > a {
    color: var(--primary);
    background: var(--primary-glow);
  }
  .navmenu .dropdown ul { box-shadow: var(--shadow-xl); border-radius: var(--radius-md); }
  .navmenu .dropdown a { padding: 10px 20px; }
  .navmenu .dropdown ul a { padding: 10px 20px; }
}

.scrolled .header {
  --background-color: rgba(255,255,255,0.95);
  --heading-color: var(--gray-900);
}

/* Mobile */
@media (max-width: 1199px) {
  .navmenu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    padding: 60px 0 30px;
  }
  .navmenu::-webkit-scrollbar { display: none; }
  .navmenu.active { display: block; }
  .navmenu ul {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--gray-700);
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
  }
  .navmenu a:hover, .navmenu .active { color: var(--primary); background: var(--primary-glow); }
  .navmenu .dropdown a { padding: 12px 16px; }
  .navmenu .dropdown ul a { padding: 10px 16px 10px 30px; }
}

.mobile-nav-toggle {
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-700);
  display: none;
  line-height: 1;
}
@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block; }
}

/* ==========================================================
   Hero Section
   ========================================================== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #EEF2FF 50%, #E0F2FE 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes heroPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

.hero h2 { animation: heroFadeIn 0.8s ease-out both; }
.hero h2 + p { animation: heroFadeIn 0.8s ease-out 0.2s both; }
.hero .tracking-box { animation: heroFadeIn 0.8s ease-out 0.4s both; }
.hero .stats-row { animation: heroFadeIn 0.8s ease-out 0.6s both; }
.hero .hero-img { animation: heroFadeInRight 1s ease-out 0.3s both; }

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .hero-bg { display: none; }

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero h2 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.8;
}

.hero .hero-img { text-align: right; position: relative; z-index: 1; }
.hero .hero-img img { max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }

/* Tracking Box */
.tracking-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  border: 1px solid var(--gray-100);
}

.tracking-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-800);
}

.tracking-form {
  display: flex;
  gap: 10px;
}

.tracking-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-family: var(--default-font);
  transition: all 0.3s ease;
  outline: none;
}
.tracking-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.tracking-form input::placeholder { color: var(--gray-400); }

.tracking-form .btn {
  padding: 14px 32px;
  font-weight: 700;
}

/* Stats Row */
.hero .stats-row {
  display: flex;
  gap: 40px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.hero .stats-row .stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.hero .stats-row .stat-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
}

/* ==========================================================
   Section Styling
   ========================================================== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.section-title span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title h2 {
  margin-bottom: 12px;
}
.section-title p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ==========================================================
   Trusted By / Logos
   ========================================================== */
.trusted-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
}
.trusted-section .section-title { margin-bottom: 30px; }
.trusted-section .section-title span { font-size: 0.75rem; color: var(--gray-400); }
.trusted-section .section-title h2 { font-size: 1rem; color: var(--gray-400); font-weight: 500; }

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.4;
}
.logos-row img {
  height: 30px;
  filter: grayscale(100%);
}

/* ==========================================================
   Features / How It Works
   ========================================================== */
.features .feature-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
}
.features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

/* How It Works Steps */
.how-it-works .step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.how-it-works .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}

.how-it-works .step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.how-it-works .step p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.how-it-works .step::after {
  content: '';
  position: absolute;
  top: 62px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.how-it-works .step:last-child::after { display: none; }

/* ==========================================================
   Services Cards
   ========================================================== */
.card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card .card-img {
  height: 200px;
  overflow: hidden;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img {
  transform: scale(1.05);
}

.card h3 {
  padding: 20px 24px 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.card h3 a { color: var(--gray-900); }
.card h3 a:hover { color: var(--primary); }

.card p {
  padding: 0 24px 24px;
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ==========================================================
   Service Block (Services Page)
   ========================================================== */
.service-block {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  display: block;
}
.service-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-block-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-block:hover .service-block-img img {
  transform: scale(1.05);
}
.service-block-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.service-block-content {
  padding: 24px;
}
.service-block-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.service-block:hover .service-block-content h3 {
  color: var(--primary);
}
.service-block-content p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-block-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.service-block:hover .service-block-link {
  gap: 10px;
}

/* ==========================================================
   CTA Section
   ========================================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .text-center { position: relative; z-index: 1; }
.cta-section h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ==========================================================
   Testimonials
   ========================================================== */
.testimonials {
  padding: 80px 0;
  position: relative;
}
.testimonials .testimonials-bg { display: none; }
.testimonials .dark-background { background: var(--gray-50); }

.testimonial-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.testimonial-item .testimonial-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--gray-100);
}

.testimonial-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-item h4 {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 12px;
}

.testimonial-item .stars {
  margin-bottom: 16px;
}
.testimonial-item .stars i {
  color: var(--accent);
  font-size: 14px;
}

.testimonial-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-item p i.quote-icon-left,
.testimonial-item p i.quote-icon-right { display: none; }

/* ==========================================================
   Pricing
   ========================================================== */
.pricing-section .pricing-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.pricing-section .pricing-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-section .pricing-item.featured {
  border: 2px solid var(--primary);
  position: relative;
  box-shadow: var(--shadow-glow);
}
.pricing-section .pricing-item.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-section h4 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.pricing-section h4 sup {
  font-size: 1.2rem;
  top: -1.2em;
  color: var(--gray-400);
}
.pricing-section h4 span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-section ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.pricing-section ul li i.bi-check { color: var(--success); font-size: 18px; }
.pricing-section ul li i.bi-x { color: var(--gray-300); font-size: 18px; }
.pricing-section ul li.na { color: var(--gray-300); }

.buy-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.pricing-section .pricing-item:not(.featured) .buy-btn {
  background: var(--gray-100);
  color: var(--gray-700);
}
.pricing-section .pricing-item:not(.featured) .buy-btn:hover {
  background: var(--primary);
  color: #fff;
}
.pricing-section .pricing-item.featured .buy-btn {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}
.pricing-section .pricing-item.featured .buy-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-section .faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.faq-active { border-color: var(--primary); box-shadow: 0 4px 12px var(--primary-glow); }

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
}
.faq-item h3 .faq-icon { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.faq-item h3 .faq-toggle {
  margin-left: auto;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}
.faq-item.faq-active h3 .faq-toggle { transform: rotate(180deg); color: var(--primary); }

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.faq-active .faq-content {
  padding: 0 24px 20px;
  max-height: 500px;
}
.faq-content p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  padding: 60px 0 0;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer .footer-top { padding-bottom: 40px; }
.footer .footer-about p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

.footer .footer-about .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer .footer-about .social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}
.footer .footer-about .social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul li { margin-bottom: 10px; }
.footer .footer-links ul li a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer .footer-links ul li a:hover { color: var(--primary-light); padding-left: 4px; }

.footer .footer-contact p { margin-bottom: 8px; color: var(--gray-400); font-size: 0.95rem; }
.footer .footer-contact strong { color: var(--gray-300); }

.footer .sitename {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

/* ==========================================================
   Scroll Top
   ========================================================== */
.scroll-top {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.scroll-top:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
}
.scroll-top.active { opacity: 1; visibility: visible; }

/* ==========================================================
   Preloader
   ========================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader:before {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: preloader-spin 0.8s linear infinite;
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }

#preloader.preloader-hidden { opacity: 0; pointer-events: none; }

/* ==========================================================
   Page Title (inner pages)
   ========================================================== */
.page-title {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  position: relative;
}
.page-title h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-title p { color: var(--gray-300); font-size: 1.05rem; margin-bottom: 0; }
.page-title .breadcrumbs { margin-top: 16px; }
.page-title .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-title .breadcrumbs li { font-size: 0.9rem; color: var(--gray-400); }
.page-title .breadcrumbs li a { color: var(--gray-300); }
.page-title .breadcrumbs li a:hover { color: #fff; }
.page-title .breadcrumbs li.current { color: var(--primary-light); font-weight: 600; }
.page-title .breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--gray-600); }

/* ==========================================================
   About
   ========================================================== */
.about-section .content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.about-section .content ul { list-style: none; padding: 0; }
.about-section .content ul li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.about-section .content ul li i {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.about-section .content ul li h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.about-section .content ul li p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Stats */
.stats-section .stats-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.stats-section .stats-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stats-section .stats-item span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stats-section .stats-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
}

/* Team */
.team-section .member {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.team-section .member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-section .member img { width: 100%; }
.team-section .member .member-content { padding: 24px; }
.team-section .member .member-content h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-section .member .member-content span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.team-section .member .member-content p { font-size: 0.9rem; color: var(--gray-500); margin-top: 12px; }
.team-section .member .social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.team-section .member .social a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
}
.team-section .member .social a:hover { background: var(--primary); color: #fff; }

/* ==========================================================
   Contact
   ========================================================== */
.contact-section .info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.contact-section .info-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.contact-section .info-item i {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-section .info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-section .info-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Form */
.php-email-form .form-control {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--default-font);
  transition: all 0.3s ease;
  background: #fff;
}
.php-email-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  outline: none;
}

.php-email-form .error-message {
  display: none;
  background: #FEF2F2;
  color: var(--danger);
  text-align: left;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}

.php-email-form .sent-message {
  display: none;
  color: var(--success);
  background: #F0FDF4;
  text-align: center;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}

.php-email-form .loading {
  display: none;
  text-align: center;
  padding: 14px;
  margin-bottom: 20px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary);
  border-top-color: var(--gray-200);
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading { to { transform: rotate(360deg); } }

.php-email-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}
.php-email-form button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,0.45);
}

/* ==========================================================
   Service Details
   ========================================================== */
.service-details-section .services-list {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 8px;
  margin-bottom: 24px;
}
.service-details-section .services-list a {
  display: block;
  padding: 12px 16px;
  color: var(--gray-600);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.service-details-section .services-list a:hover { background: #fff; color: var(--primary); }
.service-details-section .services-list a.active { background: var(--primary); color: #fff; }

.service-details-section .services-img {
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

/* ==========================================================
   Get A Quote
   ========================================================== */
.get-a-quote-section .quote-bg {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.get-a-quote-section form {
  background: #fff;
  padding: 40px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ==========================================================
   Tracking Page
   ========================================================== */

/* Tracking Hero */
.tracking-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 60%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tracking-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.tracking-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.tracking-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--secondary-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.tracking-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.tracking-hero h1 span {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tracking-hero p {
  color: var(--gray-300);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Tracking Search */
.tracking-hero-search {
  max-width: 640px;
  margin: 0 auto;
}

.tracking-hero-form {
  width: 100%;
}

.tracking-input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.tracking-input-group:focus-within {
  border-color: var(--primary-light);
}

.tracking-input-icon {
  color: var(--gray-400);
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 12px;
}

.tracking-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--default-font);
  color: var(--gray-800);
  background: transparent;
  padding: 12px 0;
  min-width: 0;
}
.tracking-input-group input::placeholder {
  color: var(--gray-400);
}

.tracking-submit-btn {
  flex-shrink: 0;
  padding: 14px 32px;
  border-radius: var(--radius-full) !important;
}

.tracking-hero-hint {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 14px;
  margin-bottom: 0;
}
.tracking-hero-hint i { color: var(--accent); margin-right: 4px; }
.tracking-hero-hint strong {
  color: var(--gray-200);
  cursor: pointer;
  transition: color 0.2s;
}
.tracking-hero-hint strong:hover { color: var(--secondary-light); }

/* Decorative Shapes */
.tracking-hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.tracking-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.tracking-shape.shape-1 {
  width: 300px; height: 300px;
  top: 10%; right: 5%;
  animation: tracking-float 6s ease-in-out infinite;
}
.tracking-shape.shape-2 {
  width: 180px; height: 180px;
  bottom: 15%; left: 8%;
  animation: tracking-float 8s ease-in-out infinite reverse;
}
.tracking-shape.shape-3 {
  width: 80px; height: 80px;
  top: 30%; left: 15%;
  background: rgba(255,255,255,0.03);
  animation: tracking-float 5s ease-in-out infinite 1s;
}
@keyframes tracking-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Tracking Results Section */
.tracking-results-section { padding-top: 60px; }

/* Status Card */
.tracking-status-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.tracking-status-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tracking-status-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.tracking-status-icon.in-transit {
  background: #EFF6FF;
  color: var(--primary);
}
.tracking-status-icon.delivered {
  background: #F0FDF4;
  color: var(--success);
}
.tracking-status-icon.out-for-delivery {
  background: #FEF3C7;
  color: var(--accent);
}

.tracking-status-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  display: block;
}
.tracking-status-text {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--gray-900);
}

.tracking-status-right {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.tracking-status-meta { text-align: right; }
.tracking-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.tracking-meta-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* Timeline Card */
.tracking-timeline-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.tracking-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tracking-card-title i { color: var(--primary); }

/* Timeline */
.tracking-timeline {
  position: relative;
  padding-left: 32px;
}
.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}

.tracking-timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.tracking-timeline-item:last-child { padding-bottom: 0; }

.tracking-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 3px solid #fff;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--gray-200);
}
.tracking-timeline-item.completed .tracking-timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}
.tracking-timeline-item.active .tracking-timeline-dot {
  background: var(--success);
  box-shadow: 0 0 0 2px var(--success), 0 0 0 6px rgba(16,185,129,0.2);
  animation: tracking-pulse 2s infinite;
}
.tracking-timeline-item.pending .tracking-timeline-dot {
  background: var(--gray-200);
  box-shadow: 0 0 0 2px var(--gray-200);
}
@keyframes tracking-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--success), 0 0 0 6px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 2px var(--success), 0 0 0 10px rgba(16,185,129,0.1); }
}

.tracking-timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.tracking-timeline-status {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 0.95rem;
}
.tracking-timeline-item.pending .tracking-timeline-status {
  color: var(--gray-400);
}
.tracking-timeline-date {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}
.tracking-timeline-location {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.tracking-timeline-location i { margin-right: 4px; color: var(--primary-light); font-size: 12px; }
.tracking-timeline-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}
.tracking-timeline-item.pending .tracking-timeline-desc,
.tracking-timeline-item.pending .tracking-timeline-location { color: var(--gray-400); }

/* Detail Cards */
.tracking-detail-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.tracking-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tracking-detail-item {
  display: flex;
  flex-direction: column;
}
.tracking-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.tracking-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* Progress Bar */
.tracking-progress-bar-wrapper { margin-top: 8px; }
.tracking-progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}
.tracking-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  transition: width 0.8s ease;
}

.tracking-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
}
.tracking-progress-labels span.completed { color: var(--primary); }
.tracking-progress-labels span.active { color: var(--success); font-weight: 700; }

/* Tracking Features */
.tracking-features .feature-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
}
.tracking-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

/* ==========================================================
   Responsive Adjustments
   ========================================================== */
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h2 { font-size: 2.2rem; }
  .tracking-form { flex-direction: column; }
  .hero .stats-row { flex-direction: column; gap: 20px; }
  .how-it-works .step::after { display: none; }
  .footer .footer-top .text-center { text-align: left !important; }

  /* Tracking page responsive */
  .tracking-hero { padding: 120px 0 60px; }
  .tracking-hero h1 { font-size: 2.2rem; }
  .tracking-input-group { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; }
  .tracking-input-group input { padding: 12px 16px; text-align: center; }
  .tracking-input-icon { display: none; }
  .tracking-submit-btn { width: 100%; justify-content: center; border-radius: var(--radius-md) !important; padding: 14px; }
  .tracking-status-card { flex-direction: column; text-align: center; padding: 24px; }
  .tracking-status-left { flex-direction: column; }
  .tracking-status-right { flex-direction: column; gap: 16px; }
  .tracking-status-meta { text-align: center; }
  .tracking-timeline-card { padding: 24px; }
  .tracking-timeline { padding-left: 28px; }
  .tracking-detail-grid { grid-template-columns: 1fr; }
  .tracking-detail-card { padding: 20px; }
  .tracking-progress-labels { font-size: 0.65rem; }
}
