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

:root {
    --primary: #f97316;
    --primary-hover: #ea6c04;
    --primary-light: #fff7ed;
    --navy: #0a1628;
    --navy-light: #112240;
    --dark: #1a1a2e;
    --text: #4a5568;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { color: var(--dark); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section-title { font-size: 2.25rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 0.95rem; color: var(--text); margin-bottom: 3rem; }
.tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem; border-radius: 30px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    border: none; transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(249,115,22,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 0.5rem 0;
}
.topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--primary); }

/* ---- HEADER ---- */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0; z-index: 1000;
}
.nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 2rem; max-width: 1200px; margin: 0 auto;
}
.logo {
    font-family: var(--font-body);
    font-weight: 800; font-size: 1.4rem; color: var(--dark);
    display: flex; align-items: center; gap: 0.4rem;
}
.logo-accent { color: var(--primary); }
.logo-globe {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ea6c04);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}
.nav-links { display: flex; list-style: none; gap: 2.25rem; }
.nav-link { font-size: 0.92rem; font-weight: 600; color: var(--dark); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.has-dropdown::after { content: ' ▾'; font-size: 0.75rem; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* ---- HERO ---- */
.hero {
    position: relative; height: 90vh; min-height: 600px;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(10,22,40,0.55), rgba(10,22,40,0.35));
    z-index: 1;
}
.hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hero-tag {
    background: var(--primary); color: white;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 20px;
    display: inline-block; margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem; font-weight: 800; color: white;
    line-height: 1.15; margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-desc { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; }

.hero-search {
    display: flex; align-items: center; gap: 0;
    background: white; border-radius: 50px;
    overflow: hidden; max-width: 520px;
    box-shadow: var(--shadow-lg);
}
.hero-search-input {
    flex: 1; border: none; outline: none;
    padding: 1rem 1.5rem; font-size: 0.95rem; font-family: var(--font-body);
    color: var(--dark);
}
.hero-search-btn {
    background: var(--primary); border: none; cursor: pointer;
    padding: 1rem 1.5rem; color: white; font-size: 1.1rem;
    transition: var(--transition);
}
.hero-search-btn:hover { background: var(--primary-hover); }

.hero-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 2;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

.hero-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2; background: rgba(255,255,255,0.15); border: none;
    color: white; width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); transition: var(--transition);
}
.hero-nav-btn:hover { background: var(--primary); }
.hero-nav-btn.prev { left: 2rem; }
.hero-nav-btn.next { right: 2rem; }

/* Floating inquiry tab */
.inquiry-tab {
    position: fixed; left: 0; top: 50%; transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    background: var(--primary); color: white;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.5rem 1.25rem; border-radius: 0 0 6px 6px;
    z-index: 999; cursor: pointer; transition: var(--transition);
}
.inquiry-tab:hover { background: var(--primary-hover); }

/* ---- MOST POPULAR DESTINATIONS ---- */
.destinations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.dest-card {
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    background: var(--white);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-img-wrap { height: 210px; overflow: hidden; position: relative; }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-body { padding: 1.1rem 1.25rem; }
.dest-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.dest-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.6rem; }
.dest-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 0.75rem;
}
.dest-duration { font-size: 0.8rem; display: flex; align-items: center; gap: 0.3rem; }
.dest-btn {
    font-size: 0.78rem; font-weight: 600; padding: 0.4rem 1rem;
    background: var(--primary-light); color: var(--primary); border-radius: 20px;
    border: 1px solid var(--primary); transition: var(--transition);
}
.dest-btn:hover { background: var(--primary); color: white; }

/* ---- OUR SERVICES ---- */
.services-section { background: var(--light); }
.services-inner {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center;
}
.services-right img { border-radius: 16px; width: 100%; box-shadow: var(--shadow-md); }
.services-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem;
}
.service-item { display: flex; gap: 1rem; align-items: flex-start; }
.service-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--primary-light); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
}
.service-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.service-desc { font-size: 0.82rem; line-height: 1.6; }

/* ---- FEATURED DESTINATIONS ---- */
.featured-grid {
    display: flex; gap: 1.25rem; justify-content: space-between; flex-wrap: wrap;
}
.featured-pill {
    flex: 0 0 calc(16.667% - 1.1rem);
    position: relative; border-radius: 100px; overflow: hidden;
    height: 240px; cursor: pointer; transition: var(--transition);
}
.featured-pill:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.featured-pill img { width: 100%; height: 100%; object-fit: cover; }
.featured-pill-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1.25rem;
}
.featured-label { color: white; font-weight: 700; font-size: 0.9rem; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* ---- STATISTICS ---- */
.stats-section { background: var(--light); }
.stats-header { text-align: center; margin-bottom: 3.5rem; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    max-width: 900px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-icon {
    font-size: 2.5rem; margin-bottom: 0.75rem;
    display: block;
}
.stat-num {
    font-size: 2.75rem; font-weight: 800; color: var(--dark);
    display: block; line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text); margin-top: 0.4rem; }

/* ---- PARTNERS ---- */
.partners-section { padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.partners-inner h2 { font-size: 2rem; margin-bottom: 2.5rem; }
.partners-logos {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    opacity: 0.55;
}
.partner-logo { font-size: 1.05rem; font-weight: 800; color: var(--dark); letter-spacing: -0.01em; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
}
.newsletter-tag { color: var(--primary); text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.newsletter-title { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.2; }
.newsletter-desc { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.newsletter-form {
    display: flex; gap: 0; max-width: 500px; margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; overflow: hidden;
}
.newsletter-input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 1rem 1.5rem; color: white; font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
    background: var(--primary); border: none; cursor: pointer;
    padding: 0.85rem 1.5rem; border-radius: 50px; color: white;
    font-size: 1.1rem; transition: var(--transition); margin: 0.25rem;
}
.newsletter-btn:hover { background: var(--primary-hover); }

/* ---- FOOTER ---- */
footer {
    background: var(--navy-light);
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 2rem;
    font-size: 0.88rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 3.5rem; margin-bottom: 3.5rem;
}
.footer-col-title { color: white; font-weight: 700; font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a::before { content: '→'; font-size: 0.8rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-contact-icon { color: var(--primary); font-size: 1.1rem; margin-top: 2px; }
.footer-contact-label { font-weight: 700; color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 0.2rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.85rem;
    transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ---- SUBPAGE STYLES ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 6rem 0 5rem; text-align: center; color: white;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 3rem; color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1rem; font-size: 0.85rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Gallery pill variant */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-card { border-radius: 14px; overflow: hidden; height: 260px; position: relative; cursor: pointer; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-card:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-label { color: white; font-weight: 700; font-size: 1.05rem; }

/* Contact form card */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 3rem; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.5rem; }
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; display: block; }
.form-control {
    width: 100%; padding: 0.85rem 1.1rem;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: var(--font-body); font-size: 0.93rem; color: var(--dark);
    outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Info cards */
.info-card {
    background: var(--light); border-radius: 12px; padding: 1.75rem;
    display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}
.info-icon { font-size: 1.8rem; flex-shrink: 0; }
.info-title { font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-pill { flex: 0 0 calc(33.333% - 1rem); }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .featured-pill { flex: 0 0 calc(50% - 0.7rem); }
}
