/* =====================================================
   Le Guide Bilingue - Styles personnalisés
   Inspiré du design touristique moderne
   ===================================================== */

/* ---- Variables de couleurs ---- */
:root {
  --primary: #00d8ff;        /* Vert émeraude - couleur principale */
  --primary-dark: #16a2ba;
  --primary-light: #4ab8cc;
  --secondary: #fcc342;      /* Orange doré - accent */
  --secondary-dark: #cb9b2c;
  --dark: #1a1a2e;           /* Bleu nuit très sombre */
  --dark-2: #16213e;
  --light-bg: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e9ecef;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- NAVBAR ---- */
.navbar-custom {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
  transition: var(--transition);
}
.navbar-custom.scrolled {
  padding: 8px 0;
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(10px);
}
.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand-logo .brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.navbar-brand-logo .brand-text {
  line-height: 1.2;
}
.navbar-brand-logo .brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  display: block;
  width: 100px;
}
.navbar-brand-logo .brand-sub {
  font-size: 0.68rem;
  color: var(--primary);
  display: block;
  font-weight: 500;
}
.navbar-custom .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
  background: rgba(10, 157, 110, 0.08);
}
.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.btn-reserve-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: white !important;
  border-radius: 25px !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(10,157,110,0.3) !important;
}
.btn-reserve-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(10,157,110,0.4) !important;
}

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0d3b2e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1547036967-23d11aacaee0?w=1600&q=80') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.6) 60%, rgba(10,20,40,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,157,110,0.2);
  border: 1px solid rgba(10,157,110,0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--secondary);
  display: block;
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 35px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero search bar */
.hero-search {
  background: white;
  border-radius: 60px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin-bottom: 25px;
}
.hero-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.hero-search input::placeholder { color: #aaa; }
.hero-search .search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
}
.hero-search select {
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: transparent;
  padding: 0 10px;
  cursor: pointer;
}
.hero-search .btn-search {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.hero-search .btn-search:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(244,168,33,0.4);
}

/* ---- SECTION TITLES ---- */
.section-label {
  display: inline-block;
  background: rgba(10,157,110,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 15px auto 0;
}
.section-divider.left { margin-left: 0; }

/* ---- ACTIVITY CARDS ---- */
.activity-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  background: white;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.activity-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover .card-img-top {
  transform: scale(1.05);
}
.activity-card .card-img-wrapper {
  overflow: hidden;
  position: relative;
}
.activity-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.activity-card .card-price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: white;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.activity-card .card-body {
  padding: 20px;
}
.activity-card .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.activity-card .card-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}
.activity-card .card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.activity-card .card-meta i { color: var(--primary); }
.activity-card .btn-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.activity-card .btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10,157,110,0.35);
  color: white;
}

/* ---- CITY CARDS ---- */
.city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.city-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.city-card:hover img { transform: scale(1.08); }
.city-card .city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,30,0.88) 0%, rgba(10,20,30,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.city-card:hover .city-overlay {
  background: linear-gradient(to top, rgba(10,20,30,0.92) 0%, rgba(10,20,30,0.5) 100%);
}
.city-card .city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  color: white;
}
.city-card .city-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.city-card .city-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.city-card:hover .city-desc {
  opacity: 1;
  transform: translateY(0);
}
.city-card .city-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.city-card:hover .city-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ---- WHY CHOOSE US ---- */
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(10,157,110,0.1), rgba(10,157,110,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.why-card:hover .icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- PACKAGES / TARIFS ---- */
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--gray-200);
  background: white;
  height: 100%;
}
.package-card:hover, .package-card.featured {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.package-card.featured {
  transform: translateY(-12px);
}
.package-header {
  padding: 28px 24px;
  text-align: center;
  background: var(--gray-100);
}
.package-card.featured .package-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}
.package-card.featured .package-header * { color: white !important; }
.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.package-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.package-body { padding: 24px; }
.package-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.package-features li:last-child { border: none; }
.package-features li i { color: var(--primary); font-size: 0.85rem; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 18px;
  right: 22px;
  line-height: 1;
}
.testimonial-card .stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card .comment {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card .author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 1px;
}
.testimonial-card .author-country {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- SECTION COLORS ---- */
.section-light { background: var(--gray-100); }
.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
}
.section-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10,157,110,0.4);
}
.btn-secondary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-white-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  color: var(--primary);
}
.btn-accent {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-accent:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,168,33,0.4);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0d3b2e 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1200&q=70') center/cover;
  opacity: 0.15;
}
.cta-banner .content { position: relative; z-index: 1; }

/* ---- FORM STYLES ---- */
.form-custom .form-control,
.form-custom .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.93rem;
  transition: var(--transition);
  background: var(--gray-100);
}
.form-custom .form-control:focus,
.form-custom .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,157,110,0.1);
  background: white;
}
.form-custom label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ---- BREADCRUMB ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,157,110,0.3), rgba(10,20,40,0.8));
}
.page-hero .content { position: relative; z-index: 1; }
.page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb-custom .breadcrumb-item { font-size: 0.88rem; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--secondary); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- FOOTER ---- */
.footer-main {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-brand .brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.6);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.footer-heading {
  color: white;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}
.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(10,157,110,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  margin-top: 50px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---- ADMIN STYLES ---- */
.admin-sidebar {
  width: 250px;
  min-height: 100vh;
  background: var(--dark);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.65);
  padding: 12px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  margin-bottom: 2px;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: white;
  background: rgba(10,157,110,0.15);
  border-left-color: var(--primary);
}
.admin-sidebar .nav-link i { width: 20px; text-align: center; font-size: 1rem; }
.admin-content {
  margin-left: 250px;
  padding: 30px;
  min-height: 100vh;
  background: var(--gray-100);
}
.admin-topbar {
  background: white;
  padding: 15px 25px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.stat-card-admin {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.stat-card-admin:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card-admin .stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-card-admin .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-card-admin .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.admin-table thead th {
  background: var(--dark);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border: none;
}
.admin-table tbody td {
  padding: 12px 16px;
  font-size: 0.88rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-200);
}
.admin-table tbody tr:hover { background: rgba(10,157,110,0.04); }
.badge-status-pending { background: rgba(244,168,33,0.15); color: #d4891a; }
.badge-status-confirmed { background: rgba(10,157,110,0.15); color: var(--primary-dark); }
.badge-status-cancelled { background: rgba(220,53,69,0.15); color: #dc3545; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(10,157,110,0.4); }
  100% { box-shadow: 0 0 0 20px rgba(10,157,110,0); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.7s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ---- ABOUT PAGE ---- */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 8px rgba(10,157,110,0.3);
  pointer-events: none;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--secondary);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-img-badge .text { font-size: 0.8rem; font-weight: 500; }

/* ---- CONTACT PAGE ---- */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-info-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.3rem;
}
.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-250px); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-search { display: none; }
  .city-card img { height: 220px; }
  .activity-card .card-img-top { height: 180px; }
  .package-card.featured { transform: none; }
}
@media (max-width: 576px) {
  .hero-stats { gap: 16px; }
  .hero-stat .number { font-size: 1.5rem; }
  .admin-content { padding: 15px; }
}
