/* VARIABLES & RESET */
:root {
    --primary: #0284c7; /* Ocean Blue */
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #ea580c; /* Sunset Orange */
    --accent-hover: #c2410c;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow: 0 15px 35px rgba(2, 132, 199, 0.08);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; color: #0f172a; line-height: 1.3; }
.section-title { font-size: 40px; margin-bottom: 15px; }
.section-subtitle-small { font-family: var(--font-body); color: var(--accent); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 8px; }
.section-desc { color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; font-size: 15px; }
.center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gold { color: #facc15 !important; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 5px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-orange { background-color: var(--accent); color: #fff; }
.btn-orange:hover { background-color: var(--accent-hover); box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3); transform: translateY(-2px); }
.btn-outline-blue { border: 2px solid var(--primary); color: var(--primary); background: transparent; border-radius: 8px; }
.btn-outline-blue:hover { background-color: var(--primary); color: #fff; }
.btn-block { width: 100%; display: block; border-radius: 8px; }

/* TOP BAR */
.top-bar { background-color: #0f172a; color: #f1f5f9; padding: 8px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-offers i { color: var(--accent); margin-right: 5px; }
.top-contact a { color: #f1f5f9; text-decoration: none; }
.top-contact i { color: #25d366; font-size: 15px; margin-right: 5px; }

/* NAVBAR */
.navbar { background: var(--bg-white); padding: 18px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: 0.3s; }
.navbar.scrolled { padding: 12px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #0f172a; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--primary); }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; }

/* HERO SECTION */
.hero {
    position: relative;
    padding: 150px 0 200px;
    display: flex;
    align-items: center;
}
.hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: url('https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; width: 100%; text-align: center; color: #fff; }
.hero-subtitle { font-family: var(--font-heading); font-style: italic; font-size: 24px; color: #facc15; display: block; margin-bottom: 10px; }
.hero h1 { font-size: 65px; color: #fff; line-height: 1.1; margin-bottom: 25px; }
.hero p { font-size: 18px; color: #e2e8f0; margin: 0 auto 50px; max-width: 600px; }

/* TRIP SEARCH BOX */
.trip-search-box { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 25px; border-radius: 16px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 15px; align-items: flex-end; box-shadow: 0 20px 40px rgba(0,0,0,0.2); max-width: 1000px; margin: 0 auto; text-align: left; }
.search-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.input-wrap { position: relative; display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; background: #fff; overflow: hidden; }
.input-wrap i { position: absolute; left: 15px; color: var(--primary); }
.input-wrap input, .input-wrap select { width: 100%; padding: 14px 15px 14px 40px; border: none; outline: none; font-family: var(--font-body); font-size: 14px; color: var(--text-main); font-weight: 500; background: transparent; }
.search-field.btn-wrap { display: flex; align-items: flex-end; }
.btn-search { width: 100%; height: 48px; border-radius: 8px; font-size: 15px; }

/* SECTIONS */
.section { padding: 90px 0; }
.bg-light { background-color: var(--bg-light); }

/* DESTINATIONS GALLERY */
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 20px; }
.dest-card { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.dest-card.tall { grid-row: span 2; }
.dest-card.wide { grid-column: span 2; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 30px 20px 20px; color: #fff; }
.dest-overlay h3 { color: #fff; font-size: 24px; margin-bottom: 5px; }
.dest-overlay p { font-size: 13px; color: #cbd5e1; }
.dest-card:hover img { transform: scale(1.1); }

/* TOUR PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.package-card { background: var(--bg-white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: 0.3s; display: flex; flex-direction: column; }
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15); border-color: var(--primary-light); }
.pkg-img { height: 220px; position: relative; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-badge { position: absolute; top: 15px; left: 15px; background: var(--accent); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pkg-badge.discount { background: #10b981; }
.pkg-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.pkg-header h3 { font-size: 20px; margin-bottom: 8px; }
.duration { font-size: 13px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.pkg-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.pkg-amenities { display: flex; gap: 15px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; margin-bottom: 20px; }
.pkg-amenities span { color: var(--text-muted); font-size: 16px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; }
.pkg-footer .price { font-size: 12px; color: var(--text-muted); line-height: 1.2; }
.pkg-footer .price strong { font-size: 20px; color: #0f172a; font-weight: 700; }

/* WHY CHOOSE US */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-group { position: relative; height: 500px; }
.img-1 { width: 75%; height: 400px; object-fit: cover; border-radius: 12px; position: absolute; top: 0; right: 0; box-shadow: var(--shadow); }
.img-2 { width: 55%; height: 300px; object-fit: cover; border-radius: 12px; position: absolute; bottom: 0; left: 0; border: 8px solid var(--bg-white); box-shadow: var(--shadow); }
.experience-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--primary); color: #fff; padding: 25px; border-radius: 50%; width: 140px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 6px solid var(--bg-white); text-align: center; }
.experience-badge h3 { color: #fff; font-size: 32px; margin: 0; line-height: 1; }
.experience-badge p { font-size: 12px; text-transform: uppercase; margin-top: 5px; }

.why-us-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 25px; }
.why-us-list li { display: flex; gap: 20px; }
.icon-box { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 20px; flex-shrink: 0; }
.why-us-list h4 { font-family: var(--font-body); font-size: 18px; margin-bottom: 5px; }
.why-us-list p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* TRIP PLANNER FORM */
.trip-planner { background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; position: relative; }
.trip-planner::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(15, 23, 42, 0.9); }
.planner-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.contact-box { display: flex; align-items: flex-start; gap: 20px; background: rgba(255,255,255,0.1); padding: 25px; border-radius: 12px; color: #fff; border-left: 4px solid var(--accent); }
.contact-box i { font-size: 30px; color: #25d366; }
.contact-box h4 { color: #fff; margin-bottom: 5px; font-family: var(--font-body); }
.contact-box p { color: #cbd5e1; font-size: 14px; margin-bottom: 8px; }

.form-wrapper { background: var(--bg-white); padding: 40px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.form-wrapper h3 { font-size: 26px; margin-bottom: 25px; text-align: center; color: #0f172a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--text-main); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-light); font-family: var(--font-body); font-size: 14px; outline: none; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--bg-white); }

/* FOOTER */
.footer { background: #0f172a; color: #cbd5e1; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; border-radius: 8px; display: flex; justify-content: center; align-items: center; text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer h4 { color: #fff; font-size: 18px; margin-bottom: 20px; font-family: var(--font-body); }
.footer-links ul { list-style: none; }
.footer-links a { color: #cbd5e1; text-decoration: none; display: block; margin-bottom: 10px; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-contact p { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--accent); font-size: 16px; width: 20px; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px 0; font-size: 13px; color: #94a3b8; }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); z-index: 999; text-decoration: none; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .trip-search-box { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card.wide { grid-column: auto; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .planner-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-group { height: 400px; max-width: 500px; margin: 0 auto; }
    .hero h1 { font-size: 50px; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
    
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-white); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
    .nav-links.active { display: flex; }
    .nav-cta .btn { display: none; }
    .mobile-toggle { display: block; }

    .hero { padding: 120px 0 100px; text-align: center; }
    .hero h1 { font-size: 40px; }
    
    .trip-search-box, .destinations-grid, .packages-grid, .form-row { grid-template-columns: 1fr; }
    .dest-card.tall { grid-row: auto; }
    .search-field.btn-wrap { margin-top: 10px; }
    
    .form-wrapper { padding: 25px; }
    .section { padding: 60px 0; }
}
