/* style.css */
:root {
    --primary: #0482B6;
    --primary-dark: #036892;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    color: var(--white);
    font-size: 0.875rem;
    padding: 10px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--white);
}

/* Header */
.site-header {
    /*background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);*/
    -webkit-backdrop-filter: blur(12px);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    position: absolute;
    top: 40px;
    /* Accounts for top-bar height */
    left: 0;
    right: 0;
    z-index: 999;
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);*/
    transition: var(--transition);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-text {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-logo {
    height: 135px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.logo-wrap a {
    text-decoration: none;
    display: block;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 130, 182, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Global Utility Classes */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 5;
}

/* Page Header */
.page-header {
    position: relative;
    min-height: 85vh; /* Desktop and larger screens */
    padding: 220px 20px 80px; /* Top padding pushes content below logo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile overrides for inner page hero */
@media (max-width: 768px) {
    .page-header {
        min-height: 100vh;
        padding: 260px 20px 100px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .page-header p {
        font-size: 1rem;
    }
    .header-logo {
        height: 100px;
    }
    .logo-text {
        font-size: 1.5rem;
    }
}

/* ── Hero: main container ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Heading block — upper center ── */
.hero-heading {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    max-width: 900px;
}

.hero-heading h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-heading p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

/* ── Booking bar — pinned bottom ── */
.hero-booking-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 24px 40px;
}

.hero-booking-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 18px 20px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    flex-wrap: nowrap;
    position: relative;
}

/* Field */
.hbf-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    position: relative;
    padding: 6px 12px;
}

.hbf-field-sm {
    flex: 0 0 90px;
}

.hbf-field label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    white-space: nowrap;
}

.hbf-field input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    padding: 0;
}

.hbf-field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.hbf-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.6);
    cursor: pointer;
}

/* Vertical separator */
.hbf-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* Action buttons */
.hbf-actions {
    display: flex;
    gap: 8px;
    padding-left: 16px;
    flex-shrink: 0;
}

.hbf-btn-submit {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
}

.hbf-btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hbf-btn-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
}

.hbf-btn-wa:hover {
    background: #1aab52;
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 900px) {
    .hero-booking-form {
        flex-wrap: wrap;
        border-radius: 14px;
        padding: 16px;
        gap: 0;
    }

    .hbf-field {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 10px 12px;
    }

    .hbf-field-sm {
        flex: 1 1 calc(50% - 1px);
    }

    .hbf-sep {
        display: none;
    }

    .hbf-actions {
        flex: 0 0 100%;
        padding: 14px 0 0;
        justify-content: center;
    }

    .hbf-btn-submit,
    .hbf-btn-wa {
        flex: 1;
        justify-content: center;
    }

    .hero-heading {
        margin-top: 100px;
    }

    .hero-booking-wrap {
        padding: 0 16px 30px;
    }
}

@media (max-width: 600px) {

    .hbf-field,
    .hbf-field-sm {
        flex: 1 1 100%;
    }

    .hero-heading h1 {
        font-size: 2.2rem;
    }
}

/* Autocomplete dropdown */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.autocomplete-list.show {
    display: block;
}

.autocomplete-list div {
    padding: 10px 14px;
    color: #1a202c;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
}

.autocomplete-list div:hover {
    background: #f0f9ff;
    color: var(--primary);
}

/* ---- Hero Slideshow ---- */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Prev / Next arrow buttons */
.hero-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s;
}

.hero-arrow:hover {
    background: rgba(4, 130, 182, 0.7);
    border-color: var(--primary);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        top: 35%;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 16px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}


/* Custom Input Groups (Used in Contact) */
.custom-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.custom-input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-input-group input,
.custom-input-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.custom-input-group input:focus,
.custom-input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 130, 182, 0.1);
}

/* Features */
.features {
    padding: 100px 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.dest-card:hover .dest-info {
    transform: translateY(0);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition);
}

.dest-info {
    position: relative;
    z-index: 1;
    width: 100%;
    transform: translateY(10px);
    transition: var(--transition);
}

.dest-info h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

/* Packages */
.packages {
    padding: 100px 24px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F3F4F6;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.package-content {
    padding: 24px;
}

.package-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    height: 56px;
}

.package-content .subtitle {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.package-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.package-content .price span {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Footer */
.site-footer {
    background: #161D19;
    /* matches reference image background */
    color: #9CA3AF;
    padding: 80px 0 0 0;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Contact Column */
.footer-contact-col .contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-col .icon {
    font-size: 1.2rem;
    color: #E2A03F;
    /* subtle goldish orange */
    margin-top: 2px;
}

.contact-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 6px;
    line-height: 1.4;
}

.contact-info a:hover {
    color: var(--white);
}

/* Links Column */
.footer-links-col a {
    display: block;
    margin-bottom: 16px;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Insta Column */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.insta-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.insta-grid a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 130, 182, 0.7);
    /* Matching Site Primary with opacity */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.2);
}

.insta-grid a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.insta-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.4s ease;
}

.insta-grid a:hover img {
    transform: scale(1.1);
}

/* About/Payment Column */
.footer-about-col.center {
    text-align: center;
}

.footer-about-col p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.payment-methods h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icons img {
    height: 24px;
    object-fit: contain;
    background: #fff;
    padding: 2px 4px;
    border-radius: 4px;
}

/* WA Btn */
.wa-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.wa-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {

    .feature-grid,
    .dest-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-form {
        flex-wrap: wrap;
    }

    .input-group {
        flex: 1 1 calc(33.333% - 16px);
    }

    .search-btn {
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .wa-btn {
        right: auto;
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    h1 {
        font-size: 2rem;
    }

    /* --- Header: keep overlaying the hero image on mobile --- */
    .top-bar {
        position: absolute;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    }

    .site-header {
        position: absolute;
        top: 44px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 280px;
        padding-bottom: 60px;
    }

    .hero-content {
        margin-top: 0;
    }

    /* Internal pages — push content below the floating header */
    .page-header {
        padding-top: 200px;
    }

    /* --- Nav layout --- */
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        font-size: 0.8rem;
    }

    .nav-wrap {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.95rem;
    }

    /* --- Footer --- */
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact-col .contact-item {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .social-links {
        align-items: center;
    }

    .input-group {
        flex: 1 1 100%;
    }

    .feature-grid,
    .dest-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================
   ABOUT PAGE STYLES
   ================== */

/* Internal Page Header */
.page-header {
    position: relative;
    height: 450px;
    padding-top: 140px;
    background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.7);
}

.relative-z {
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.about-image-collage {
    position: relative;
    height: 600px;
}

.about-image-collage img {
    position: absolute;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-image-collage .img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-image-collage .img-2 {
    width: 65%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 8px solid var(--white);
}

.pt-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.bento-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.bento-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Icons */
.bento-icon {
    font-size: 3.5rem;
    margin-bottom: auto;
    /* Pushes content down */
    position: relative;
    z-index: 2;
}

.bento-icon-bg {
    font-size: 8rem;
    position: absolute;
    right: -10px;
    bottom: -30px;
    opacity: 0.1;
    z-index: 0;
    line-height: 1;
}

/* Grid layout & Colors */
.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-primary {
    background: linear-gradient(135deg, var(--primary), #085a6a);
}

.bento-primary h3,
.bento-primary p {
    color: white;
}

.bento-primary .bento-icon-bg {
    color: white;
    opacity: 0.15;
}

.bento-orange {
    background: #fff5eb;
}

.bento-blue {
    background: #f0f7ff;
}

.bento-red {
    background: #fff1f2;
}

.bento-yellow {
    background: #fefce8;
}

.bento-purple {
    background: #faf5ff;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-tall {
        grid-row: span 1;
        /* Reset tall on tablet */
    }

    .bento-wide {
        grid-column: span 2;
        /* Keep wide on tablet */
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        grid-column: span 1 !important;
    }

    .about-image-collage {
        height: 350px;
    }
}

/* ==================
   TESTIMONIALS SECTION
   ================== */
.testimonials-section {
    position: relative;
    width: 100%;
    margin-top: 50px;
    background: #ede9de;
    /* Updated requested background */
}

.testimo-split {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 600px;
}

.testimo-content {
    flex: 1 1 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-dark);
    /* Changed to dark text for light background */
    position: relative;
}

.testimo-content h2 {
    color: var(--text-dark) !important;
}

.testimo-image {
    flex: 1 1 50%;
    background-image: url('images/Testimonials.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.testimonial-slide .quote {
    font-size: 1.35rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: #4a5568;
    /* Darker grey for quote */
}

.testimonial-slide .author h4 {
    font-size: 1.1rem;
    color: var(--primary);
    /* Use primary color instead of gold */
    font-weight: 700;
}

.testimonial-slide .experience-date {
    color: #718096 !important;
    /* Make date readable */
}

.slider-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    /* Darker dots */
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
}

@media (max-width: 900px) {
    .testimo-split {
        flex-direction: column-reverse;
    }

    .testimo-content {
        padding: 60px 20px;
    }

    .testimo-content,
    .testimo-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .testimo-image {
        min-height: 300px;
    }

    .testimonial-slide .quote {
        font-size: 1.1rem;
    }
}

/* ==================
   PACKAGES PAGE STYLES
   ================== */
.packages-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-list-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
}

.package-list-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-list-card .pkg-img {
    height: 400px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.pkg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 130, 182, 0.7);
    /* Primary color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.package-list-card:hover .pkg-overlay {
    opacity: 1;
}

.package-list-card:hover .pkg-img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

/* Override transform applied by parents so background scales nicely */
.package-list-card .pkg-img {
    transition: transform 0.6s ease;
}

.view-btn {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid var(--white);
    border-radius: 4px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.package-list-card:hover .view-btn {
    transform: translateY(0);
}

.package-list-card .pkg-content {
    padding: 24px;
    text-align: center;
}

.pkg-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.pkg-content .duration {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.pkg-content .price {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Global Modal Styles */
.package-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(17, 24, 39, 0.85);
    /* Black w/ opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.package-modal .modal-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

/* Custom scrollbar for better appearance */
.package-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.package-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.package-modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    text-decoration: none;
}

#modalTitle {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-duration {
    color: var(--text-gray);
    font-weight: 500;
}

.modal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .packages-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .packages-list-grid {
        grid-template-columns: 1fr;
    }

    .package-modal .modal-content {
        padding: 24px;
        width: 95%;
    }

    #modalTitle {
        font-size: 1.5rem;
    }

    .modal-price {
        font-size: 1.15rem;
    }
}

/* Pagination Controls */
.page-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Page Loader Mask */
.page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.loader-icons {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: var(--primary);
}

.flight-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    animation: flySpin 2s infinite ease-in-out;
}

.baggage-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 0;
    right: 0;
    opacity: 0.8;
}

@keyframes flySpin {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(20px, -20px) rotate(15deg) scale(1.1);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.page-loader p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Modal Expansions */
.expanded-modal {
    max-width: 900px !important;
}

.modal-bullets {
    margin: 0;
    padding-left: 20px;
}

.modal-bullets li {
    margin-bottom: 8px;
}

.icon-row svg {
    opacity: 0.8;
    transition: var(--transition);
}

.icon-row svg:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Modal Grid Responsiveness */
.modal-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .modal-grid-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .modal-grid-content {
        grid-template-columns: 1fr;
    }

    .icon-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions a {
        text-align: center;
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.c-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

/* New Modal Form Styles */
.new-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.new-modal-form .form-row {
    display: grid;
    gap: 15px;
}

.new-modal-form .form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.new-modal-form .form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.new-modal-form .form-row-4 {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.new-modal-form .form-group {
    display: flex;
    flex-direction: column;
}

.new-modal-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}

.new-modal-form label span {
    color: #DC2626;
}

.new-modal-form input,
.new-modal-form select,
.new-modal-form textarea {
    padding: 10px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.new-modal-form input:focus,
.new-modal-form select:focus,
.new-modal-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(4, 130, 182, 0.1);
}

.new-modal-form .btn-primary {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .new-modal-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Autocomplete Custom Styles */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #f8fafc;
    color: var(--primary);
    font-weight: 600;
}

/* ==================
   TESTIMONIALS MODERN STYLES
   ================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-tile {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(4, 130, 182, 0.15), 0 10px 10px -5px rgba(226, 160, 63, 0.1);
    border-color: #E2A03F;
    /* Charm Gold highlight */
    background: #fff;
}

.testimonial-tile:hover h4 {
    color: #E2A03F;
}

.testimonial-tile:hover .experience-badge {
    background: #FFFAF0;
    color: #E2A03F;
    border: 1px solid rgba(226, 160, 63, 0.3);
}

.testimonial-tile .quote-snippet {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-tile .author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-tile h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.experience-badge {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
    white-space: nowrap;
}

/* Specific modal for testimonials to avoid conflict */
.testimonial-detail-modal .modal-content {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-detail-modal .quote {
    position: relative;
}

.testimonial-detail-modal .quote::before {
    content: '“';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(4, 130, 182, 0.1);
    font-family: serif;
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   TERMS & CONDITIONS MODAL
   ============================== */
.tc-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.tc-modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.tc-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 780px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.tc-modal-close {
    position: sticky;
    top: 0;
    float: right;
    margin: 16px 16px 0 0;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}

.tc-modal-close:hover {
    background: #e5e7eb;
    color: #111;
}

.tc-modal-body {
    padding: 20px 36px 36px 36px;
}

.tc-modal-body h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.tc-office {
    background: #f0f9ff;
    border-left: 4px solid var(--primary);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 16px;
}

.tc-intro {
    font-style: italic;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.tc-modal-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 24px 0 8px 0;
    padding-bottom: 4px;
    border-bottom: 2px solid #e0f2fe;
}

.tc-modal-body p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.tc-modal-body ul {
    padding-left: 20px;
    margin: 8px 0 12px 0;
}

.tc-modal-body ul li {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.tc-modal-body a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .tc-modal-body {
        padding: 16px 20px 24px 20px;
    }

    .tc-modal-body h2 {
        font-size: 1.3rem;
    }
}

/* ==============================
   CERTIFICATES & LICENCES
   ============================== */

/* --- About Us Page: Certificates Section --- */
.certificates-section {
    padding: 70px 0;
    background: transparent;
    border-top: none;
}

/* Marquee wrapper — clips overflow */
.certs-marquee-wrap {
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* The scrolling track — twice as wide as needed (contains 2 copies) */
.certs-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: certScroll 40s linear infinite;
    height: 150px;
}

/* Pause scroll on hover */
.certs-marquee-wrap:hover .certs-marquee-track {
    animation-play-state: paused;
}

@keyframes certScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.25s ease;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.cert-item img {
    height: 130px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    filter: grayscale(15%);
    transition: filter 0.25s ease;
}

.cert-item:hover img {
    filter: grayscale(0%);
}

/* --- Footer: Certificates Bar --- */
.footer-certs-bar {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-certs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.footer-certs-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.footer-certs-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    justify-content: center;
}

.footer-certs-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) opacity(0.65);
    transition: filter 0.25s ease;
}

.footer-certs-logos img:hover {
    filter: brightness(0) invert(1) opacity(1);
}

@media (max-width: 768px) {
    .certs-bar {
        gap: 24px 20px;
    }

    .cert-item {
        padding: 12px 16px;
    }

    .cert-item img,
    .footer-certs-logos img {
        height: 60px;
    }

    .footer-certs-inner {
        flex-direction: column;
        gap: 14px;
    }
}

/* ==============================
   SUBSIDIARY BANNER
   ============================== */
.subsidiary-banner {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 60%, #0d1b2a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.subsidiary-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 160, 80, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.subsidiary-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.subsidiary-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 160, 80, 0.08);
    border: 2px solid rgba(196, 160, 80, 0.25);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 40px rgba(196, 160, 80, 0.15);
}

.subsidiary-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.subsidiary-text {
    flex: 1;
}

.subsidiary-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C4A050;
    margin-bottom: 8px;
}

.subsidiary-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fff 0%, #C4A050 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsidiary-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 620px;
}

.subsidiary-desc strong {
    color: #C4A050;
}

@media (max-width: 768px) {
    .subsidiary-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .subsidiary-logo {
        width: 110px;
        height: 110px;
    }

    .subsidiary-name {
        font-size: 1.7rem;
    }

    .subsidiary-desc {
        font-size: 0.95rem;
    }
}

/* ==============================
   SOCIAL MEDIA ICONS
   ============================== */

/* --- Hero: floating vertical sidebar --- */
.hero-social-bar {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.hero-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
    text-decoration: none;
}

.hero-social-icon:hover {
    transform: scale(1.15);
    color: #fff;
}

.hero-social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.hero-social-icon[aria-label="TikTok"]:hover {
    background: #010101;
    border-color: #69C9D0;
}

.hero-social-icon[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: transparent;
}

@media (max-width: 768px) {
    .hero-social-bar {
        right: 8px;
        bottom: auto;
        gap: 8px;
    }

    .hero-social-icon {
        width: 34px;
        height: 34px;
    }

    .hero-social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* --- Footer: social icon buttons --- */
.social-icon-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, border-color 0.25s;
    margin-bottom: 10px;
}

.social-icon-btn:hover {
    transform: translateX(4px);
    color: #fff;
}

.social-icon-btn[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-icon-btn[aria-label="TikTok"]:hover {
    background: #010101;
    border-color: #69C9D0;
}

.social-icon-btn[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: transparent;
}

/* ==================
   SUBSCRIBE SECTION
   ================== */
.subscribe-section {
    padding: 100px 24px;
    background: #ffffff;
}

.sub-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sub-content {
    width: 100%;
}

.sub-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sub-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 35px;
}

.sub-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    margin: 0 auto;
}

.sub-form input {
    flex: 1;
    padding: 18px 24px;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
    color: #1a202c;
}

.sub-form input::placeholder {
    color: #a0aec0;
}

.sub-form input:focus {
    border-color: #eab308;
}

.sub-form button {
    background: #eab308;
    /* Yellow matching image */
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0 32px;
    border: 1px solid #eab308;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    font-family: 'Outfit', sans-serif;
}

.sub-form button:hover {
    background: #ca8a04;
    border-color: #ca8a04;
}

@media (max-width: 900px) {
    .sub-split {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .sub-form {
        flex-direction: column;
        box-shadow: none;
        gap: 12px;
        background: transparent;
    }

    .sub-form input {
        border-right: 1px solid #e2e8f0;
        border-radius: 12px;
        width: 100%;
        padding: 16px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .sub-form button {
        border-radius: 12px;
        width: 100%;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
}

/* ==================
   PAGINATION SECTION
   ================== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 20px;
}

.page-btn,
.page-num {
    background: white;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-num {
    padding: 8px 12px;
}

.page-btn:hover:not(:disabled),
.page-num:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.page-num.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f7fafc;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

/* ==================
   EXPLORER STORIES GRID (FIXED SIZES)
   ================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-tile {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
    /* Forces uniform size */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-tile .quote-snippet {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-tile .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* Pushes author info to the absolute bottom */
}

.testimonial-tile .author-info h4 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-tile .experience-badge {
    background: #f0f9ff;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================
   WHY CHOOSE US (HOME PAGE)
   ================== */
.why-choose-section {
    padding: 80px 0;
    overflow: hidden;
}

.why-top-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 40px;
}

.why-text-content {
    flex: 1;
    max-width: 550px;
    padding-bottom: 40px;
}

.why-text-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 20px;
}

.why-text-content h2 strong {
    font-weight: 800;
}

.why-text-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
    font-family: 'Outfit', sans-serif;
}

.btn-dark:hover {
    background: #333;
    color: #fff;
}

.why-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.why-image-content img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin-bottom: -40px;
    /* Pulls it down to overlap or touch the blue box */
    position: relative;
    z-index: 1;
}

.why-bottom-grid {
    background: #f4f8fc;
    border-radius: 16px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.why-feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-text h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.why-feature-text h4 strong {
    font-weight: 800;
}

.why-feature-text p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .why-top-split {
        flex-direction: column;
        text-align: center;
    }

    .why-text-content {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .why-bottom-grid {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .why-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==============================
   YOUR TRUSTED TRAVEL PARTNER (ABOUT US)
   ============================== */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trusted-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trusted-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(4, 130, 182, 0.15);
    border-color: rgba(4, 130, 182, 0.3);
}

.tc-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 24px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
    border: 3px solid transparent;
}

.tc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 130, 182, 0.7);
    transition: opacity 0.5s ease;
    opacity: 0.8;
}

.trusted-card:hover .tc-img-wrap {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(4, 130, 182, 0.2);
}

.trusted-card:hover .tc-overlay {
    opacity: 0.4;
}

.tc-icon {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.5s ease;
}

.trusted-card:hover .tc-icon {
    transform: scale(1.2);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tc-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.trusted-card:hover .tc-content h3 {
    color: var(--primary);
}

.tc-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Footer Mobile Fixes & Copyright CSS */ .footer-legal-container  {
         padding:  40px 15px;
     
}

 .footer-copyright-text  {
         margin:  0;
         color:  rgba(255, 255, 255, 0.7);
         font-size:  0.9rem;
         font-family:  'Inter' ,  sans-serif;
         line-height:  1.5;
     
}

 .footer-mobile-block  {
         display:  inline;
     
}

 @media (max-width: 768px)  {
         .footer-contact-col .contact-item  {
                 display:  flex;
                 flex-direction:  column;
                 align-items:  center;
                 text-align:  center;
                 margin-bottom:  25px;
             
    }

         .footer-contact-col .contact-item .icon  {
                 margin:  0 0 10px 0;
                 display:  flex;
                 justify-content:  center;
             
    }

         .footer-contact-col .contact-info h4,
         .footer-contact-col .contact-info p  {
                 text-align:  center;
             
    }

         .footer-legal-container  {
                 padding:  40px 20px;
                 padding-right:  60px;
         /* Prevent overlap with floating social icons */     
    }

         .footer-copyright-text  {
                 font-size:  0.85rem;
             
    }

         .footer-mobile-block  {
                 display:  block;
                 margin-top:  5px;
             
    }

         .footer-copyright-divider  {
                 display:  none;
             
    }

     
}

   