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

:root {
  --primary: #1B2A4A;
  --primary-light: #2A4072;
  --accent: #C49A2B;
  --accent-light: #D4B053;
  --bg-main: #FFFFFF;
  --bg-alt: #F4F7F9;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px; font-weight: 500; font-size: 16px;
  cursor: pointer; transition: var(--transition); border: none; letter-spacing: 0.5px;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(27, 42, 74, 0.2); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(27, 42, 74, 0.3); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(196, 154, 43, 0.3); }

/* Glass Navbar */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border); transition: var(--transition); padding: 15px 0;
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container img { height: 45px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--primary); position: relative; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover:not(.btn)::after, .nav-links a.active:not(.btn)::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: var(--primary); }

/* Hero */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 80px;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.95) 0%, rgba(27, 42, 74, 0.6) 50%, rgba(27, 42, 74, 0.2) 100%); z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(40px, 5vw, 64px); margin-bottom: 24px; font-weight: 800; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-content p { font-size: clamp(18px, 2vw, 22px); margin-bottom: 40px; opacity: 0.9; line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* Sections */
.section { padding: 120px 0; }
.section-alt { background-color: var(--bg-alt); position: relative; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-title { font-size: 42px; margin-bottom: 16px; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); margin-top: 20px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Cards */
.card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--accent); margin-bottom: 24px; transition: var(--transition);
}
.card:hover .card-icon { background: var(--primary); color: #fff; }
.card h3 { font-size: 24px; margin-bottom: 16px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* Image Cards (Destinations/Services) */
.img-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-md); transition: var(--transition); group: hover; cursor: pointer;
}
.img-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s ease; border-radius: 0; }
.img-card:hover img { transform: scale(1.08); }
.img-card-content {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
  background: linear-gradient(to top, rgba(27,42,74,0.95), transparent);
  color: #fff; display: flex; flex-direction: column; gap: 8px;
}
.img-card-content h3 { color: #fff; font-size: 28px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--accent); opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--accent);
}
.timeline-content {
  background: #fff; padding: 30px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.timeline-content:hover { transform: translateX(10px); }

/* Footer */
.footer { background: var(--primary); color: #fff; padding: 100px 0 40px; }
.footer h3 { color: #fff; font-size: 32px; margin-bottom: 20px; }
.footer p { opacity: 0.7; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.7; }
.footer-links a:hover { opacity: 1; color: var(--accent); padding-left: 5px; }

/* Contact Form */
.form-card { background: #fff; padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.form-control {
  width: 100%; padding: 16px; border: 1px solid #E5E7EB; border-radius: 8px;
  font-family: inherit; font-size: 16px; background: var(--bg-alt); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(196, 154, 43, 0.1); }
textarea.form-control { min-height: 150px; resize: vertical; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
  background: #25d366; color: #fff; 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: 99; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); color: #fff; }

@media (max-width: 992px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 48px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%; background: #fff;
    flex-direction: column; padding: 20px 0; box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease;
  }
  .nav-links.show { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .menu-toggle { display: block; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .section { padding: 80px 0; }
  .form-card { padding: 30px; }
}

/* ====== RICH FOOTER ====== */
.footer { background: linear-gradient(135deg, #0f1c33 0%, #1B2A4A 100%); color: #fff; padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 8px; }
.footer-tagline { color: #C49A2B; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; font-size: 12px; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,0.6); transition: all 0.3s ease; text-decoration: none; }
.footer-social a:hover { background: #C49A2B; color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; color: #C49A2B; margin-bottom: 24px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 15px; transition: all 0.3s ease; display: inline-block; }
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; color: rgba(255,255,255,0.6); font-size: 15px; }
.footer-contact-item i { color: #C49A2B; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 14px; }

/* ====== DESTINATION PAGES ====== */
.dest-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dest-intro img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); height: 480px; width: 100%; object-fit: cover; }
.dest-intro h2 { font-size: 38px; margin-bottom: 20px; }
.dest-intro p { color: #6B7280; font-size: 17px; line-height: 1.9; margin-bottom: 20px; }
.visa-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 10px 25px rgba(0,0,0,0.07); border-left: 4px solid #C49A2B; transition: all 0.3s ease; }
.visa-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.visa-card h4 { font-size: 20px; margin-bottom: 10px; color: #1B2A4A; }
.visa-card p { color: #6B7280; font-size: 15px; line-height: 1.7; }
.visa-tag { display: inline-block; padding: 5px 14px; background: rgba(196,154,43,0.12); color: #C49A2B; border-radius: 30px; font-size: 12px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card { background: linear-gradient(135deg, #1B2A4A 0%, #2A4072 100%); border-radius: 20px; padding: 36px; text-align: center; color: #fff; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: #C49A2B; display: block; margin-bottom: 8px; }
.stat-card p { opacity: 0.75; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.quote-section { background: linear-gradient(135deg, #1B2A4A 0%, #2A4072 100%); padding: 80px 0; text-align: center; }
.quote-section blockquote { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; max-width: 820px; margin: 0 auto 20px; line-height: 1.7; font-style: italic; opacity: 0.95; }
.quote-section cite { color: #C49A2B; font-size: 15px; font-weight: 600; letter-spacing: 1px; }

/* ====== CONTACT PAGE ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 38px; margin-bottom: 20px; }
.contact-info p { color: #6B7280; font-size: 17px; line-height: 1.9; margin-bottom: 30px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding: 22px; background: #F4F7F9; border-radius: 12px; border-left: 3px solid #C49A2B; }
.contact-detail i { font-size: 26px; color: #C49A2B; flex-shrink: 0; }
.contact-detail strong { display: block; color: #1B2A4A; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
.contact-detail span { color: #6B7280; font-size: 15px; }
.promise-box { background: linear-gradient(135deg, #1B2A4A 0%, #2A4072 100%); border-radius: 16px; padding: 30px; margin-top: 30px; display: flex; align-items: center; gap: 20px; }
.promise-box i { font-size: 36px; color: #C49A2B; flex-shrink: 0; }
.promise-box p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; }
.promise-box strong { color: #fff; display: block; margin-bottom: 4px; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dest-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
