/* ========== EAST METAL PLUS - COMPLETE CSS ========== */
/* Color Palette - Industrial Blue/Steel Theme */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a2634;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

:root {
  --primary: #1e5f8e;
  --primary-dark: #0f3b57;
  --primary-light: #2b7aaa;
  --secondary: #5a6e7a;
  --accent: #d97706;
  --dark: #1a2c3c;
  --light: #f4f7fb;
  --white: #ffffff;
  --gray: #6c757d;
  --border: #e2e8f0;
}

/* ========== STICKY NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 32px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-placeholder {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active-nav {
  color: var(--primary);
}

.nav-buttons .btn-outline-light {
  padding: 8px 20px;
  border: 2px solid var(--primary);
  border-radius: 40px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-buttons .btn-outline-light:hover {
  background: var(--primary);
  color: white;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ========== HERO SECTION (INDEX.HTML ONLY - NO BACKGROUND IMAGE) ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a2a3b 0%, #1a4a6e 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ========== TOURS HERO SECTION (WITH BACKGROUND IMAGE) ========== */
.tours-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tours-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.tours-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.tours-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tours-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary, .btn-outline-dark {
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #b85c00;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
}

.btn-pay-now {
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  background: #2ecc71;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-pay-now:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: white; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.badge {
  background: var(--primary-light);
  color: white;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
}

.light-header h2 { color: white; }

/* ========== ABOUT GRID ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.placeholder-img {
  background: #cbd5e1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #475569;
  font-weight: 500;
  text-align: center;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card:hover { transform: translateY(-8px); }

/* ========== STATISTICS ========== */
.stats-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.why-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.project-img {
  height: 220px;
  background: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== TESTIMONIALS ========== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 24px;
}

.testimonial-card i { font-size: 2rem; opacity: 0.5; margin-bottom: 16px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 64px 0;
  text-align: center;
  color: white;
}

/* ========== CONTACT & QUOTE ========== */
.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info address p { margin: 16px 0; }
.contact-info a { color: var(--primary); text-decoration: none; }
.google-map-placeholder { margin: 24px 0; }
.map-placeholder { background: #e2e8f0; padding: 60px; text-align: center; border-radius: 16px; }

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
}

.quote-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form-wrapper input, select, textarea {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
}

/* ========== PAYMENT SECTION ========== */
.payment-card {
  background: var(--light);
  padding: 32px;
  border-radius: 24px;
  text-align: center;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.payment-method-card {
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.payment-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.payment-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.payment-icon i {
  font-size: 32px;
  color: var(--primary);
}

.btn-payment {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.airtel-btn { background: #e31e24; color: white; }
.mtn-btn { background: #ffcc00; color: #1a1a2e; }
.card-btn { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }

/* ========== TOURS & TRAVELS PAGE STYLES ========== */
.safari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.safari-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.safari-card:hover { transform: translateY(-5px); }

.safari-image {
  height: 250px;
  background: #cbd5e1;
  position: relative;
  overflow: hidden;
}

.safari-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d97706;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.safari-content { padding: 24px; }
.safari-content i { font-size: 40px; color: #1e5f8e; margin-bottom: 15px; }
.safari-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.safari-content p { color: #64748b; margin-bottom: 16px; }

.safari-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.safari-features span {
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 20px;
}

.btn-explore {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1e5f8e, #0f3b57);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-explore:hover { transform: translateX(5px); }

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.destination-card:hover { transform: translateY(-5px); }

.destination-image {
  height: 200px;
  background: #cbd5e1;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-content { padding: 20px; }
.destination-content h4 { font-size: 1.2rem; margin-bottom: 10px; }

.destination-highlights {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.destination-highlights span {
  font-size: 0.75rem;
  background: #e0f2fe;
  padding: 4px 10px;
  border-radius: 15px;
  color: #0369a1;
}

.btn-destination {
  color: #1e5f8e;
  text-decoration: none;
  font-weight: 600;
}

/* Safari CTA */
.safari-cta {
  background: linear-gradient(135deg, #0f3b57, #1a4a6e);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
}

.footer-payment-gateway {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid #334155;
}

.footer-payment-gateway h3 { color: white; margin-bottom: 12px; }
.footer-payment-gateway h3 i { color: #f59e0b; margin-right: 10px; }

.footer-payment-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer-pay-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-pay-btn.airtel-pay { background: #e31e24; color: white; }
.footer-pay-btn.mtn-pay { background: #ffcc00; color: #1a1a2e; }
.footer-pay-btn.card-pay { background: linear-gradient(135deg, #1e5f8e, #0f3b57); color: white; }

.payment-security-badge { color: #64748b; font-size: 0.85rem; margin-top: 16px; }
.payment-security-badge i { color: #22c55e; margin-right: 6px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.footer-logo { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 16px; }
.social-placeholder a { color: #94a3b8; margin-right: 16px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin: 8px 0; }
.footer-col a { color: #94a3b8; text-decoration: none; }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #1e293b;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 32px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

/* ========== CHATBOT ========== */
.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.chatbot-toggle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.chatbot-toggle i { font-size: 24px; color: white; }

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-container {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  height: 420px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-container.active { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  background: #fefce8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message.bot { justify-content: flex-start; }
.message.user { justify-content: flex-end; }

.message-content {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
}

.message.bot .message-content {
  background: white;
  border: 1px solid #fde68a;
}

.message.user .message-content {
  background: #f59e0b;
  color: white;
}

.chatbot-input-area {
  padding: 10px 12px;
  background: white;
  border-top: 1px solid #fde68a;
  display: flex;
  gap: 8px;
}

.chatbot-input-area input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #fde68a;
  border-radius: 20px;
  outline: none;
}

.chatbot-input-area button {
  width: 36px;
  height: 36px;
  background: #f59e0b;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 100;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hamburger { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    padding: 32px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
  }
  
  .nav-menu.active { left: 0; }
  .nav-links { flex-direction: column; align-items: center; gap: 1.5rem; }
  
  .hero-content h1 { font-size: 2rem; }
  .about-grid, .contact-flex { grid-template-columns: 1fr; }
  .stats-wrapper { justify-content: center; }
  .tours-hero-content h1 { font-size: 2rem; }
  .safari-grid, .destinations-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-payment-buttons { flex-direction: column; align-items: center; }
  .footer-pay-btn { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-pay-now { width: 100%; text-align: center; }
}
/* ========== ONGOING SITES SECTION ========== */
.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ongoing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ongoing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.ongoing-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #cbd5e1;
}

.ongoing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ongoing-card:hover .ongoing-image img {
  transform: scale(1.05);
}

.ongoing-status {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-badge.active i {
  color: #22c55e;
  font-size: 0.6rem;
}

.status-badge i {
  font-size: 0.6rem;
}

.ongoing-content {
  padding: 20px;
}

.ongoing-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.ongoing-progress {
  margin-bottom: 15px;
}

.progress-bar {
  background: #e2e8f0;
  border-radius: 30px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  height: 100%;
  border-radius: 30px;
  transition: width 0.5s ease;
}

.progress-percent {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.ongoing-content p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ongoing-details {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.ongoing-details span {
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ongoing-details i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ongoing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ongoing-image {
    height: 200px;
  }
  
  .ongoing-details {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== BOOKING SECTION (VIP HOTEL & ACCOMMODATION) ========== */
.booking-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 40px;
}

.booking-features {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.booking-features h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.booking-features ul {
  list-style: none;
}

.booking-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-features li i {
  color: #22c55e;
  font-size: 1.1rem;
}

.booking-testimonial {
  background: var(--primary);
  color: white;
  padding: 32px;
  border-radius: 24px;
}

.booking-testimonial i {
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 16px;
}

.booking-testimonial p {
  font-style: italic;
  margin-bottom: 16px;
}

.booking-form-wrapper {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.booking-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--primary);
  text-align: center;
}

.booking-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form-wrapper .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-wrapper .form-group.full-width {
  grid-column: span 2;
}

.booking-form-wrapper label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.booking-form-wrapper input,
.booking-form-wrapper select,
.booking-form-wrapper textarea {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.booking-form-wrapper input:focus,
.booking-form-wrapper select:focus,
.booking-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.1);
}

.btn-book-safari {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-book-safari:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.booking-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.required {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 968px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-form-wrapper .form-group.full-width {
    grid-column: span 1;
  }
}

/* ========== PAYMENT DETAILS MODAL - COMPLETE FIXED STYLES ========== */

/* Modal Container */
.payment-details-modal {
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
}

/* Payment Method Header */
.payment-method-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.payment-method-header i {
  font-size: 56px;
  margin-bottom: 12px;
}

.payment-method-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #1a2634;
}

.payment-method-header p {
  color: #64748b;
  font-size: 0.85rem;
}

/* Billing Section */
.billing-section,
.reason-section,
.amount-section,
.card-details-section,
.mobile-details-section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.billing-section h4,
.reason-section h4,
.amount-section h4,
.card-details-section h4,
.mobile-details-section h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-section h4 i,
.reason-section h4 i,
.amount-section h4 i,
.card-details-section h4 i,
.mobile-details-section h4 i {
  font-size: 1rem;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group.full-width {
  grid-column: span 2;
  margin-bottom: 16px;
}

/* Labels */
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.required {
  color: #ef4444;
  margin-left: 3px;
}

/* Inputs, Selects, Textareas */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

/* Amount Input Wrapper */
.amount-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.currency-symbol {
  background: #f1f5f9;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--primary);
  border-right: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

.amount-input-wrapper input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

/* Exchange Rate Info */
.exchange-rate-info {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #166534;
  background: #dcfce7;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Country and Currency Selects */
#billingCountry,
#paymentCurrency {
  background-color: white;
  cursor: pointer;
}

/* Payment Summary */
.payment-summary {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  margin: 24px 0;
}

.payment-summary h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #1a2634;
}

.payment-summary table {
  width: 100%;
  border-collapse: collapse;
}

.payment-summary td {
  padding: 10px 0;
}

.payment-summary td:first-child {
  font-weight: 500;
  color: #475569;
}

.payment-summary td:last-child {
  text-align: right;
  font-weight: 600;
  color: #1a2634;
}

.total-row {
  border-top: 1px solid #e2e8f0;
}

.total-row td {
  padding-top: 12px;
  font-size: 1.1rem;
}

.total-row td:last-child {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn-back {
  flex: 1;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 40px;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.btn-back:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.confirm-payment-btn {
  flex: 2;
  padding: 14px;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.confirm-payment-btn.airtel-confirm {
  background: #e31e24;
  color: white;
}

.confirm-payment-btn.mtn-confirm {
  background: #ffcc00;
  color: #1a1a2e;
}

.confirm-payment-btn.card-confirm {
  background: linear-gradient(135deg, #1e5f8e, #0f3b57);
  color: white;
}

.confirm-payment-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* Payment Note */
.payment-note {
  background: #fef3c7;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #92400e;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-note i {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .payment-details-modal {
    width: 95%;
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-buttons {
    flex-direction: column;
  }
  
  .btn-back,
  .confirm-payment-btn {
    width: 100%;
  }
  
  .payment-summary td {
    font-size: 0.85rem;
  }
  
  .currency-symbol {
    padding: 10px 12px;
  }
}

/* Modal Content Scroll */
.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.3s;
  z-index: 10;
}

.close-modal:hover {
  color: #1a2634;
}

/* Payment Methods Grid in Main Modal */
.payment-modal-content .payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.payment-modal-content .payment-method-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.payment-modal-content .payment-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.payment-modal-content .payment-icon {
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.payment-modal-content .payment-icon i {
  font-size: 28px;
  color: var(--primary);
}

.payment-modal-content .btn-payment {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
}

/* Card Details Section */
.card-details-section input,
.mobile-details-section input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.card-details-section input:focus,
.mobile-details-section input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.1);
}
/* Tours Hero Buttons */
.tours-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-book-safari-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-book-safari-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

@media (max-width: 768px) {
  .tours-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-book-safari-hero {
    width: 100%;
    justify-content: center;
  }
}

/* ========== AFCON 2027 SPECIAL BANNER ========== */
.afcon-banner {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}

.afcon-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,215,0,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

.afcon-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%);
}

.afcon-banner-content {
  position: relative;
  z-index: 2;
}

.afcon-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.flag {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: bounce 2s ease infinite;
}

.flag:nth-child(1) { animation-delay: 0s; }
.flag:nth-child(3) { animation-delay: 0.3s; }
.flag:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.flag-plus {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
}

.afcon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd700;
  color: #1a1a2e;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1rem;
}

.afcon-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.afcon-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.afcon-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-afcon-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.btn-afcon-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.btn-afcon-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-afcon-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

.afcon-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.afcon-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .afcon-banner {
    padding: 40px 0;
  }
  
  .flag {
    font-size: 2.5rem;
  }
  
  .flag-plus {
    font-size: 1.5rem;
  }
  
  .afcon-banner h2 {
    font-size: 1.6rem;
  }
  
  .afcon-banner p {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .afcon-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  .btn-afcon-primary,
  .btn-afcon-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .afcon-highlights {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.afcon-nav-badge a {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #1a1a2e !important;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.8rem;
}

.afcon-nav-badge a:hover {
  background: linear-gradient(135deg, #ffed4a, #ffc107);
}

/* ========== IMPROVED ABOUT PAGE STYLES ========== */

/* About Page Hero */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #0a2a3b 0%, #1a4a6e 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
  background-size: cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.1s both;
}

/* Company Overview Section */
.about-overview {
  padding: 80px 0;
  background: white;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.overview-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.overview-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.overview-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.overview-stat {
  text-align: center;
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  flex: 1;
  min-width: 100px;
  transition: transform 0.3s;
}

.overview-stat:hover {
  transform: translateY(-5px);
}

.overview-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.overview-stat .stat-label {
  font-size: 0.8rem;
  color: #64748b;
}

.overview-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.overview-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(30, 95, 142, 0.9);
  backdrop-filter: blur(5px);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mission & Vision Cards - Enhanced */
.mission-vision-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-card, .vision-card {
  background: white;
  padding: 40px 32px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}

.mission-card i, .vision-card i {
  font-size: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.mission-card p, .vision-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

/* Core Values Section - Enhanced */
.values-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.section-title p {
  color: #64748b;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.value-card {
  background: #f8fafc;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.value-card:hover {
  background: white;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 95, 142, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 32px;
  color: white;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Team Section - Enhanced */
.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.team-section .section-title h2 {
  color: white;
}

.team-section .section-title p {
  color: #94a3b8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.team-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: bottom 0.3s;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-info p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-info small {
  color: #64748b;
  font-size: 0.8rem;
}

/* Company Timeline */
.timeline-section {
  padding: 80px 0;
  background: #f8fafc;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 120px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(30, 95, 142, 0.3);
}

.timeline-content {
  width: calc(50% - 60px);
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content p {
  color: #64748b;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  text-align: center;
  color: white;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-cta p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.about-cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-cta .btn-primary:hover {
  background: var(--accent);
  color: white;
}

/* Responsive */
@media (max-width: 968px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
  
  .timeline-year {
    margin-bottom: 15px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-stat {
    min-width: 80px;
  }
}
/* ========== DESTINATION MODAL STYLES ========== */
.destination-modal .modal-content {
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  border-radius: 24px;
}

.destination-modal-header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-modal-header .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 30px 24px 20px;
}

.destination-modal-header h2 {
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

.destination-modal-body {
  padding: 24px;
}

.destination-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.info-card {
  background: #f8fafc;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.info-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-card h4 {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.destination-description {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #334155;
}

.destination-highlights-list {
  background: #f0fdf4;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.destination-highlights-list h4 {
  color: #166534;
  margin-bottom: 12px;
}

.destination-highlights-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.destination-highlights-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.destination-highlights-list li i {
  color: #22c55e;
}

.destination-cta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.destination-cta .btn-primary {
  flex: 1;
  text-align: center;
}

.destination-cta .btn-secondary {
  flex: 1;
  text-align: center;
  background: #f1f5f9;
  color: var(--primary);
  border: none;
}

.btn-destination {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.btn-destination:hover {
  text-decoration: underline;
}