/* =============================================================
   INDO COURIER - Main Stylesheet
   Premium International Courier Website
   Version: 1.0 | indocourier.in
   ============================================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary-red: #E21B23;
  --primary-blue: #0B3C6D;
  --primary-blue-dark: #082d52;
  --primary-red-dark: #b81218;
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --gradient-main: linear-gradient(135deg, #0B3C6D 0%, #E21B23 100%);
  --gradient-hero: linear-gradient(135deg, rgba(11,60,109,0.93) 0%, rgba(226,27,35,0.85) 100%);
  --gradient-blue: linear-gradient(135deg, #0B3C6D 0%, #1565c0 100%);
  --gradient-red: linear-gradient(135deg, #E21B23 0%, #ff5722 100%);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utility Classes ---- */
.text-red { color: var(--primary-red) !important; }
.text-blue { color: var(--primary-blue) !important; }
.bg-blue { background: var(--primary-blue); }
.bg-red { background: var(--primary-red); }
.bg-light-grey { background: var(--light-grey); }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-header { text-align: center; margin-bottom: 55px; }
.section-header .badge-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(226,27,35,0.12), rgba(11,60,109,0.12));
  color: var(--primary-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(226,27,35,0.2);
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px; height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--gradient-main);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(226,27,35,0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226,27,35,0.45);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn-red {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(226,27,35,0.3);
}
.btn-red:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226,27,35,0.45);
  color: var(--white);
}

.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-blue:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background: var(--primary-blue);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar .divider { margin: 0 10px; opacity: 0.4; }

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 0;
}
.brand-logo-icon {
  width: 52px; height: 52px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  display: block;
}
.brand-text .brand-name span { color: var(--primary-red); }
.brand-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-red) !important;
  background: rgba(226,27,35,0.07);
}
.navbar-nav .nav-link.track-btn {
  background: var(--primary-red);
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 50px;
  margin-left: 6px;
}
.navbar-nav .nav-link.track-btn:hover {
  background: var(--primary-red-dark);
  color: white !important;
}

.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
  padding: 4px 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B3C6D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--primary-blue);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-particles {
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(226,27,35,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title .highlight {
  color: #ffd54f;
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-image-side {
  position: relative;
  z-index: 3;
}
.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%; height: 450px;
  object-fit: cover;
  display: block;
}
.hero-image-placeholder {
  width: 100%; height: 450px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}
.hero-image-placeholder i { font-size: 4rem; margin-bottom: 12px; }

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: floatUpDown 3s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hero-float-card-2 { top: 20px; right: -20px; animation-delay: 1.5s; }

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   TRACKING SECTION
   ============================================================ */
.tracking-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.tracking-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(11,60,109,0.18);
  padding: 40px 50px;
  border-top: 5px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}
.tracking-card::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(226,27,35,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.tracking-card .track-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 6px;
}
.tracking-card .track-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.tracking-input-group {
  display: flex;
  gap: 0;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.tracking-input-group:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(11,60,109,0.1);
}
.tracking-input-group .form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  flex: 1;
}
.tracking-input-group .track-btn-submit {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
}
.tracking-input-group .track-btn-submit:hover {
  background: var(--primary-red-dark);
}

.tracking-features {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tracking-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.tracking-feature i { color: #4caf50; font-size: 0.9rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.icon-bg-1 { background: rgba(226,27,35,0.1); color: var(--primary-red); }
.icon-bg-2 { background: rgba(11,60,109,0.1); color: var(--primary-blue); }
.icon-bg-3 { background: rgba(76,175,80,0.1); color: #388e3c; }
.icon-bg-4 { background: rgba(255,152,0,0.1); color: #e65100; }
.icon-bg-5 { background: rgba(156,39,176,0.1); color: #7b1fa2; }
.icon-bg-6 { background: rgba(0,150,136,0.1); color: #00695c; }
.icon-bg-7 { background: rgba(233,30,99,0.1); color: #c2185b; }
.icon-bg-8 { background: rgba(63,81,181,0.1); color: #283593; }

/* ============================================================
   COUNTRIES SECTION
   ============================================================ */
.country-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
  color: inherit;
}
.country-flag {
  font-size: 2.8rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.country-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.country-delivery {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226,27,35,0.2);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-main);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}
.why-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   SHIPPING PROCESS
   ============================================================ */
.process-section { background: var(--primary-blue); }
.process-section .section-header h2 { color: white; }
.process-section .section-header p { color: rgba(255,255,255,0.7); }
.process-section .badge-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-top: 2px dashed rgba(255,255,255,0.4);
}
.process-step:last-child::after { display: none; }

.step-number {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}
.step-number:hover { background: var(--primary-red); border-color: var(--primary-red); }
.step-number .step-num {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-number i {
  font-size: 1.6rem;
  color: white;
}
.process-step h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-grey); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin: 10px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-size: 8rem;
  color: rgba(226,27,35,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: #ffc107;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-slider .owl-dots .owl-dot span {
  background: rgba(11,60,109,0.3) !important;
}
.testimonial-slider .owl-dots .owl-dot.active span {
  background: var(--primary-red) !important;
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.contact-cta-section {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}
.contact-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; text-align: center; }
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; }

.cta-contact-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 16px 22px;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}
.cta-contact-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: white;
}
.cta-contact-item i { font-size: 1.5rem; }
.cta-contact-item .contact-label {
  font-size: 0.72rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.cta-contact-item .contact-value {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
}

.footer-main { padding: 70px 0 40px; }

.footer-brand .brand-text .brand-name { color: white; }
.footer-brand .brand-text .brand-tagline { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact li i {
  color: var(--primary-red);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover { background: var(--primary-red); color: white; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary-red); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: white;
}
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover::before { opacity: 1; }

.float-whatsapp { background: #25d366; }
.float-call { background: var(--primary-blue); }
.float-email { background: var(--primary-red); }

/* ============================================================
   RATE TABLE
   ============================================================ */
.rate-table-wrap {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.rate-table thead th {
  background: var(--primary-blue);
  color: white;
  padding: 18px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rate-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  vertical-align: middle;
}
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:hover td { background: rgba(11,60,109,0.04); }
.rate-table .flag-cell { font-size: 1.6rem; }
.rate-table .price-cell {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-red);
}
.rate-table .delivery-badge {
  background: rgba(11,60,109,0.08);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}
.rate-table .book-btn {
  padding: 7px 18px;
  background: var(--primary-red);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.rate-table .book-btn:hover { background: var(--primary-red-dark); color: white; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-main);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .page-hero-content { position: relative; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb-custom { margin-top: 16px; }
.breadcrumb-custom .breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.65); }
.breadcrumb-custom .breadcrumb-item a:hover { color: white; }
.breadcrumb-custom .breadcrumb-item.active { color: white; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .contact-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-main);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.contact-info-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: block;
}
.contact-info-card a:hover { color: var(--primary-red); }

.contact-form-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.form-group-custom label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}
.form-control-custom {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  font-family: var(--font-main);
}
.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11,60,109,0.1);
}
.form-control-custom::placeholder { color: rgba(0,0,0,0.35); }
textarea.form-control-custom { resize: vertical; min-height: 120px; }

/* ============================================================
   SEO CONTENT PAGES
   ============================================================ */
.seo-content { font-size: 0.95rem; line-height: 1.9; color: #444; }
.seo-content h2 { font-size: 1.5rem; color: var(--primary-blue); margin: 32px 0 14px; }
.seo-content h3 { font-size: 1.2rem; color: var(--primary-blue); margin: 24px 0 10px; }
.seo-content p { margin-bottom: 16px; }
.seo-content ul { margin: 16px 0; padding-left: 0; }
.seo-content ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #555;
}
.seo-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.faq-question i { transition: var(--transition); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { padding: 0 24px 18px; max-height: 300px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  height: 400px;
  background: var(--light-grey);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-muted);
  font-size: 1rem;
  border: 2px dashed var(--border-color);
}
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; color: var(--primary-blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-padding { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-image-placeholder { height: 300px; }
  .tracking-card { padding: 28px 24px; }
  .process-step::after { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 1.6rem; }
  .navbar-collapse { background: white; padding: 16px; border-radius: 12px; box-shadow: var(--shadow-md); margin-top: 8px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 50px 0; }
  .tracking-card { padding: 24px 18px; }
  .tracking-input-group { flex-direction: column; border-radius: 12px; }
  .tracking-input-group .track-btn-submit { border-radius: 0 0 12px 12px; justify-content: center; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary-custom,
  .hero-cta-group .btn-outline-custom { justify-content: center; text-align: center; }
  .cta-contact-items { flex-direction: column; align-items: center; }
  .rate-table { font-size: 0.8rem; }
  .rate-table thead th, .rate-table tbody td { padding: 12px 10px; }
  .hero-float-card { display: none; }
  .floating-buttons { bottom: 20px; right: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .brand-text .brand-name { font-size: 1.15rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* Scroll animations via JS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Smooth scroll offset for sticky navbar ---- */
[id] { scroll-margin-top: 80px; }

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-red); }

/* ---- Selection Color ---- */
::selection { background: rgba(226,27,35,0.2); }
