/* ============================================
   TripsnTrips - Main Stylesheet
   Theme: Red & Black | Nature Travel
   Font: Playfair Display + Nunito Sans
   ============================================ */

:root {
    --red: #e31e24;
    --red-dark: #b71c1c;
    --red-light: #ff5252;
    --black: #1a1a1a;
    --black-soft: #2d2d2d;
    --white: #ffffff;
    --cream: #fdf8f3;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #555555;
    --gold: #f9a825;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Nunito Sans', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(227,30,36,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--black); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-title span { color: var(--red); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-header { margin-bottom: 50px; }
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    margin: 16px auto 0;
    border-radius: 2px;
}
.section-header.left-align::after { margin-left: 0; }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--black);
    color: #ccc;
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--red); }
.top-bar-left a, .top-bar-right a { color: #ccc; text-decoration: none; transition: var(--transition); }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--red); }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: var(--transition); }
.top-bar-right a:hover { background: var(--red); color: white; }

/* ---- NAVBAR ---- */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 8px;
}
.navbar-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--red); }
.logo-name span { color: var(--black); }
.logo-text small { font-size: 0.6rem; color: var(--gray); font-style: italic; }

.navbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 1;
}
.navbar-menu > li > a {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    padding: 6px 7px;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
}
.navbar-menu > li > a:hover,
.navbar-menu > li > a.active { color: var(--red); }
.navbar-menu > li > a.btn-book-now {
    background: var(--red);
    color: white !important;
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 800;
    white-space: nowrap;
    margin-left: 4px;
}
.navbar-menu > li > a.btn-book-now:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 3px; }
.has-dropdown > a .fa-chevron-down { font-size: 0.55rem; transition: var(--transition); }
.has-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-top: 3px solid var(--red);
    z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0;
}
.dropdown li a i { color: var(--red); width: 16px; text-align: center; }
.dropdown li a:hover { background: var(--gray-light); color: var(--red); padding-left: 26px; }

.navbar-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; flex-shrink: 0; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; height: 88vh; min-height: 550px; max-height: 780px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide-bg {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(227,30,36,0.15) 100%);
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 20px; }
.slide-content .container { position: relative; z-index: 2; }
.slide-text { max-width: 620px; color: white; }
.slide-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.slide-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-text h1 span { color: var(--gold); }
.slide-text p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 32px; line-height: 1.6; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 30px; font-weight: 800; font-size: 0.9rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: var(--transition); letter-spacing: 0.3px; font-family: var(--font-body); }
.btn-primary { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(227,30,36,0.4); }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: var(--red); transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; transform: translateY(-2px); }
.btn-dark { background: var(--black); color: white; border-color: var(--black); }
.btn-dark:hover { background: var(--black-soft); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* Slider Controls */
.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--red); width: 28px; border-radius: 5px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.3); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 10; font-size: 1.1rem; }
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ---- OFFERS POPUP ---- */
.offers-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.4s ease; }
.offers-popup { background: white; border-radius: var(--radius-lg); max-width: 520px; width: 100%; overflow: hidden; position: relative; animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.offers-popup-img { width: 100%; max-height: 250px; object-fit: cover; }
.offers-popup-body { padding: 28px; }
.offers-popup-body h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--red); margin-bottom: 8px; }
.offers-popup-body .discount-badge { display: inline-block; background: var(--red); color: white; padding: 4px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 800; margin-bottom: 12px; }
.offers-popup-body p { color: var(--gray-dark); margin-bottom: 20px; }
.offers-popup-actions { display: flex; gap: 12px; }
.popup-close { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.5); color: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.popup-close:hover { background: var(--red); }

/* ---- PARTNERS BAR ---- */
.partners-bar { background: var(--black); padding: 24px 0; }
.partners-bar .container { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.partners-label { color: var(--red); font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.partners-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.partner-logo-item { opacity: 0.7; transition: var(--transition); filter: brightness(0) invert(1); }
.partner-logo-item:hover { opacity: 1; }
.partner-logo-item img { height: 36px; width: auto; object-fit: contain; }
.partner-logo-text { color: white; font-weight: 700; font-size: 0.9rem; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; }

/* ---- PACKAGES ---- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-card { border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.package-card-img { height: 220px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.package-card:hover .package-card-img img { transform: scale(1.08); }
.package-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: white; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; }
.package-duration { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); color: white; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.package-duration i { margin-right: 4px; color: var(--gold); }
.package-card-body { padding: 22px; }
.package-destination { font-size: 0.75rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.package-destination i { margin-right: 4px; }
.package-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.package-card-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.package-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gray-light); }
.package-price { font-size: 1.3rem; font-weight: 900; color: var(--red); }
.package-price small { font-size: 0.72rem; color: var(--gray); font-weight: 400; display: block; }
.package-highlight { font-size: 0.75rem; background: #fff3e0; color: #e65100; font-weight: 700; padding: 3px 10px; border-radius: 10px; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: 0 2px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-light)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 72px; height: 72px; background: linear-gradient(135deg, #fff0f0, #ffe0e0); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--red); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--red); color: white; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ---- BOOKING FORM ---- */
.booking-section { background: linear-gradient(135deg, var(--black) 0%, #2d0a0a 100%); position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.booking-form-wrap { max-width: 900px; margin: 0 auto; background: white; border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative; }
.booking-form-wrap h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--black); margin-bottom: 6px; }
.booking-form-wrap p.sub { color: var(--gray); margin-bottom: 32px; font-size: 0.92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid.three-col { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group label span.req { color: var(--red); margin-left: 2px; }
.form-control { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 12px 16px; font-family: var(--font-body); font-size: 0.92rem; color: var(--black); transition: var(--transition); background: white; width: 100%; }
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,30,36,0.1); }
.form-control::placeholder { color: #bbb; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 12px; }
.form-submit .btn { min-width: 220px; }
.form-msg { text-align: center; padding: 12px; border-radius: 8px; margin-top: 16px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-msg.error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; display: block; }

/* ---- CURRENCY CONVERTER ---- */
.currency-section { background: var(--cream); }
.currency-converter { max-width: 800px; margin: 0 auto; background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.currency-input-row { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.currency-input-row .form-group { flex: 1; min-width: 200px; }
.currency-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.currency-item { background: var(--gray-light); border-radius: 10px; padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid transparent; transition: var(--transition); }
.currency-item:hover { border-color: var(--red); background: #fff0f0; }
.currency-flag { font-size: 1.6rem; }
.currency-info { flex: 1; }
.currency-code { font-size: 0.75rem; font-weight: 800; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.currency-amount { font-size: 1.1rem; font-weight: 900; color: var(--black); }
.currency-name { font-size: 0.75rem; color: var(--gray); }
.currency-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 20px; }
.currency-note i { color: var(--gold); }

/* ---- WHY CHOOSE US ---- */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-us-item { text-align: center; padding: 30px 20px; }
.why-us-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 4px; }
.why-us-number small { font-size: 1.5rem; }
.why-us-item p { font-size: 0.92rem; color: var(--gray-dark); font-weight: 600; }
.why-us-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: white; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.why-feature-icon { width: 48px; height: 48px; background: #fff0f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.2rem; flex-shrink: 0; }
.why-feature h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.why-feature p { font-size: 0.82rem; color: var(--gray); }

/* ---- CORPORATE CLIENTS ---- */
.clients-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.client-item { background: white; border-radius: 10px; padding: 16px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); border: 1px solid transparent; }
.client-item:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.client-item img { height: 50px; width: auto; object-fit: contain; filter: grayscale(100%); transition: var(--transition); }
.client-item:hover img { filter: grayscale(0%); }
.client-placeholder { width: 120px; height: 50px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gray); font-size: 0.82rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); position: relative; border: 1px solid rgba(0,0,0,0.04); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 5rem; color: var(--red); opacity: 0.15; position: absolute; top: 10px; right: 20px; line-height: 1; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-light); }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg, var(--red), var(--red-light)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testimonial-author-info .name { font-weight: 800; font-size: 0.9rem; }
.testimonial-author-info .designation { font-size: 0.78rem; color: var(--gray); }
.testimonial-package { font-size: 0.72rem; color: var(--red); font-weight: 700; margin-top: 2px; }

/* ---- OFFERS ---- */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.offer-card-img { width: 100%; height: 220px; object-fit: cover; background: linear-gradient(135deg, #1a1a1a, var(--red-dark)); }
.offer-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: white; }
.offer-discount { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.offer-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 6px 0; }
.offer-validity { font-size: 0.75rem; opacity: 0.8; }

/* ---- FOOTER ---- */
.footer { background: var(--black); color: #aaa; }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.4fr 1.4fr; gap: 40px; }
.footer-col h4 { color: white; font-size: 1rem; font-weight: 800; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--red); font-size: 0.75rem; }
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--red); margin-bottom: 14px; }
.footer-logo-text span { color: white; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #aaa; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; text-decoration: none; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: white; transform: translateY(-2px); }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.contact-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; width: 16px; }
.contact-list li a { color: #aaa; text-decoration: none; transition: var(--transition); }
.contact-list li a:hover { color: white; }
.footer-qr { margin-top: 18px; text-align: center; background: rgba(255,255,255,0.05); padding: 16px; border-radius: 10px; }
.footer-qr img { width: 110px; height: 110px; object-fit: contain; background: white; padding: 6px; border-radius: 8px; display: block; margin: 8px auto; }
.footer-qr small { font-size: 0.75rem; color: #888; }
.footer-qr strong { color: white; font-size: 0.82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 0.82rem; }
.footer-bottom i { color: #e74c3c; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; z-index: 9990; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); animation: waBounce 2s infinite; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-tooltip { position: absolute; right: 70px; background: #25d366; color: white; font-size: 0.82rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--black) 0%, #3d0000 100%); padding: 80px 0 60px; text-align: center; color: white; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; position: relative; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.82rem; opacity: 0.8; position: relative; }
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: white; padding: 20px; border-radius: var(--radius); text-align: center; box-shadow: 0 8px 20px rgba(227,30,36,0.4); }
.about-badge .big-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge small { font-size: 0.75rem; opacity: 0.9; }
.about-content h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin-bottom: 18px; }
.about-content p { color: var(--gray-dark); margin-bottom: 14px; }
.about-list { list-style: none; margin: 20px 0 28px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.92rem; }
.about-list li i { color: var(--red); margin-top: 3px; }

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: var(--transition); }
.pagination a { color: var(--black); border: 1.5px solid #e0e0e0; }
.pagination a:hover, .pagination span.current { background: var(--red); color: white; border-color: var(--red); }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta i { color: var(--red); }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a { text-decoration: none; color: inherit; }
.blog-card-body h3 a:hover { color: var(--red); }
.blog-card-body p { font-size: 0.86rem; color: var(--gray); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--red); font-weight: 700; font-size: 0.85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.read-more:hover { gap: 10px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes waBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .navbar-menu > li > a { font-size: 0.62rem; padding: 5px 5px; }
    .navbar-menu > li > a.btn-book-now { padding: 7px 10px; }
}

@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .currency-results { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar .container { justify-content: center; }
    .top-bar-right { display: none; }
    .navbar .container { height: 64px; }
    .navbar-toggle { display: flex; }
    .navbar-menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
        padding: 80px 20px 40px;
    }
    .navbar-menu.open { display: flex; }
    .navbar-menu > li > a { font-size: 1rem; padding: 12px 24px; text-align: center; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-light); border-radius: 8px; padding: 6px 0; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .hero-slider { height: 65vh; }
    .slide-text h1 { font-size: 1.8rem; }
    .slide-text p { font-size: 0.9rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid.three-col { grid-template-columns: 1fr; }
    .booking-form-wrap { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-features { grid-template-columns: 1fr; }
    .currency-results { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .currency-results { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr 1fr; }
    .slider-arrow { display: none; }
}
