/* ==========================================================================
   MUKUBAGOLD MERCHANTS - MAIN STYLESHEET
   Brand Colors: Navy Blue (#0B2545) & Amber Gold (#F5B027)
   Clean, modern, responsive, corporate logistics styling.
   ========================================================================== */

/* CSS Variables */
:root {
  --navy-dark: #0B2545;
  --navy-medium: #133863;
  --navy-light: #1E40AF;
  --gold-primary: #F5B027;
  --gold-hover: #D48C00;
  --gold-bg: #FFFBEB;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --border-color: #E2E8F0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 37, 69, 0.1), 0 8px 10px -6px rgba(11, 37, 69, 0.05);
  --shadow-lg: 0 20px 30px -10px rgba(11, 37, 69, 0.15);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--navy-medium);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-hover);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.text-gold { color: var(--gold-primary); }
.text-navy { color: var(--navy-dark); }
.text-muted { color: var(--text-muted); }
.font-sans { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--navy-dark); color: #ffffff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #ffffff; }
.bg-navy p { color: #CBD5E1; }
.bg-gold-light { background-color: var(--gold-bg); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid Systems */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--navy-dark);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info a {
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info a:hover {
  color: var(--gold-primary);
}

.top-badge {
  background: rgba(245, 176, 39, 0.2);
  color: var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Main Navigation */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: 'Georgia', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-dark);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-hover);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--navy-medium);
  font-weight: 700;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--navy-dark);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--navy-medium);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--navy-dark);
  color: var(--navy-dark);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--navy-dark);
  color: #ffffff;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Hero Section Slider & Carousel */
.hero {
  position: relative;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
  background-color: var(--navy-dark);
  min-height: 560px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  padding: 6rem 0 7rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

/* Slide 1 - General Cross Border */
.hero-slide-1 {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.50) 0%, rgba(19, 56, 99, 0.55) 100%), url('../images/hero1.jpg');
}

/* Slide 2 - Freight & Border Corridor */
.hero-slide-2 {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.50) 0%, rgba(15, 23, 42, 0.55) 100%), url('../images/border_freight.jpg');
}

/* Slide 3 - Corporate & Industrial Sourcing */
.hero-slide-3 {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.50) 0%, rgba(30, 64, 175, 0.55) 100%), url('../images/corporate_sourcing.jpg');
}

.hero-content {
  max-width: 780px;
  animation: fadeInUp 0.8s ease forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 176, 39, 0.22);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #ffffff;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.18rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Arrow Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.65);
  border: 1px solid rgba(245, 176, 39, 0.6);
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-control:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(245, 176, 39, 0.4);
}

.slider-control-prev {
  left: 20px;
}

.slider-control-next {
  right: 20px;
}

/* Slider Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 36px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(245, 176, 39, 0.6);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .slider-control { display: none; }
}

/* Inner Page Header Banners with Background Image */
.page-banner {
  position: relative;
  padding: 4.5rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.page-banner-about {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.60) 0%, rgba(19, 56, 99, 0.75) 100%), url('../images/hero1.jpg');
}

.page-banner-services {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.60) 0%, rgba(15, 23, 42, 0.75) 100%), url('../images/logistics.jpg');
}

.page-banner-how-it-works {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.60) 0%, rgba(30, 64, 175, 0.75) 100%), url('../images/border_freight.jpg');
}

.page-banner-shop-request {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.90) 0%, rgba(19, 56, 99, 0.85) 100%), url('../images/corporate_sourcing.jpg');
}

.page-banner-pricing {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.90) 0%, rgba(15, 23, 42, 0.85) 100%), url('../images/mining.jpg');
}

.page-banner-tracking {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.88) 0%, rgba(30, 64, 175, 0.85) 100%), url('../images/border_freight.jpg');
}

.page-banner-faq {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.60) 0%, rgba(19, 56, 99, 0.75) 100%), url('../images/branding.jpg');
}

.page-banner-contact {
  background-image: linear-gradient(135deg, rgba(11, 37, 69, 0.60) 0%, rgba(15, 23, 42, 0.75) 100%), url('../images/storage-hub.jpg');
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.breadcrumb a {
  color: #E2E8F0;
}

.breadcrumb a:hover {
  color: var(--gold-primary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* Service Image Cards (Homepage & Services Page) */
.service-img-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy-dark);
  color: var(--gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--gold-primary);
}

.service-img-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-img-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}

.service-img-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Interactive Floating Image Box */
.image-showcase-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-primary);
}

.image-showcase-box img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-stat-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 37, 69, 0.92);
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}

.floating-stat-badge strong {
  color: var(--gold-primary);
  font-size: 1.2rem;
  display: block;
}

.floating-stat-badge span {
  font-size: 0.82rem;
  color: #CBD5E1;
}

/* Feature Cards & Service Cards */
.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--gold-bg);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 176, 39, 0.3);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Section Header Component */
.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  color: var(--gold-hover);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
}

/* Process Timeline (How It Works) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

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

.process-step {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(11, 37, 69, 0.08);
}

/* Statistics Counter Section */
.stats-bar {
  background-color: var(--navy-dark);
  color: #ffffff;
  padding: 3.5rem 0;
  border-top: 4px solid var(--gold-primary);
}

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

.stat-number {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #94A3B8;
  font-weight: 600;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

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

.client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-medium);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Forms */
.form-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.form-control, .form-select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus, .form-select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-medium);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(19, 56, 99, 0.1);
}

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

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ Accordions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background-color: var(--gold-bg);
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--gold-hover);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

/* Tracking Timeline Demo */
.tracking-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-badge.in-transit {
  background-color: #FEF3C7;
  color: #B45309;
}

.status-badge.delivered {
  background-color: #D1FAE5;
  color: #047857;
}

.tracking-timeline {
  position: relative;
  padding-left: 2rem;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background-color: var(--border-color);
}

.timeline-step {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 4px solid var(--border-color);
}

.timeline-step.completed .timeline-dot {
  background-color: var(--gold-primary);
  border-color: var(--navy-dark);
}

.timeline-step.active .timeline-dot {
  background-color: var(--navy-medium);
  border-color: var(--gold-primary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 176, 39, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 176, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 176, 39, 0); }
}

.timeline-content {
  background: var(--bg-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.timeline-title {
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.timeline-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing Table */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.popular {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-primary);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.price {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 1.5rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-features {
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* Footer */
footer {
  background-color: var(--navy-dark);
  color: #94A3B8;
  padding-top: 4rem;
  border-top: 5px solid var(--gold-primary);
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #CBD5E1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-sadc {
  display: inline-block;
  background: rgba(245, 176, 39, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}
