/* CSS Variables */
:root {
    --primary-color: #0f172a;
    /* Deep Ocean Blue */
    --secondary-color: #fbbf24;
    /* Gold/Accent */
    --text-color: #334155;
    --light-text: #f8fafc;
    --background-color: #f1f5f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header & Nav - Premium Floating Pill */
header {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    /* More opaque on scroll */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    top: 10px;
    padding: 0.5rem 0;
    width: 95%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    margin: 0 auto;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header.scrolled .logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    /* White text initially */
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header.scrolled .nav-links a {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover::after,
.nav-links a.active:not(.nav-btn)::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Nav CTA Button */
.nav-cta {
    margin-left: 1rem;
}

.nav-links .nav-btn {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f59e0b 100%);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    text-shadow: none;
}

.nav-links .nav-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
}

.nav-links .nav-btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: var(--transition);
}

header.scrolled .hamburger .line {
    background-color: var(--primary-color);
}

/* Mobile Nav Adjustments */
@media (max-width: 900px) {
    header {
        width: 100%;
        top: 0;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        background-color: var(--white);
        padding-top: 5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: var(--primary-color);
        text-shadow: none;
    }

    .hamburger .line {
        background-color: var(--primary-color);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    background: url('../images/hero_bg.jpg') no-repeat center center/cover;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    /* Dark overlay for text readability */
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn Up 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Services Section */
.services {
    background-color: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
    cursor: pointer;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.card-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.card-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.btn-card {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
    width: fit-content;
}

.destination-card:hover .card-overlay h3,
.destination-card:hover .card-overlay p,
.destination-card:hover .btn-card {
    transform: translateY(0);
    opacity: 1;
}

/* Exclusive Packages */
.packages {
    background-color: #fff;
    padding: 6rem 0 15rem;
    /* Significantly increased bottom padding */
    margin-bottom: 2rem;
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    text-align: center;
}

.package-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--font-body);
    /* Match reference styling */
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.package-features li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.package-overlay .btn {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    transition: transform 0.2s;
}

.package-overlay .btn:hover {
    transform: scale(1.05);
}


/* Dream Travel Partner Section */
.dream-partner {
    padding: 8rem 0;
    /* Increase padding for parallax visibility */
    background-image: url('https://images.pexels.com/photos/2444403/pexels-photo-2444403.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    /* Boat/Sea View */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    position: relative;
    color: white;
    /* Ensure text is readable on bg */
}

/* Add overlay to dream partner */
.dream-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.dream-content {
    position: relative;
    z-index: 2;
    /* Bring content above overlay */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.dream-text {
    flex: 1;
    min-width: 300px;
}

.dream-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    /* Gold for subtitle */
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.dream-text h2 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    /* White for main heading */
    margin-bottom: 1.5rem;
}

.dream-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    /* Light text for description */
    margin-bottom: 0;
    line-height: 1.8;
}

.dream-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Align image to right */
}

.dream-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.dream-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .dream-text h2 {
        font-size: 2.5rem;
    }

    .dream-content {
        flex-direction: column;
        gap: 3rem;
    }

    .dream-image-wrapper {
        justify-content: center;
    }

    .dream-badge {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 23, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    color: #64748b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Footer */
#footer {
    background-color: #fff;
    padding: 5rem 0 2rem;
    color: #333;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
}

.follow-us-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.links-col h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 0.8rem;
}

.links-col ul li a {
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-col ul li a i {
    font-size: 0.7rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.links-col ul li a:hover i {
    color: var(--secondary-color);
}

.pay-now-btn {
    display: inline-block;
    background-color: #f43f5e;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(244, 63, 94, 0.3);
}

.pay-now-btn:hover {
    background-color: #e11d48;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Adjusments */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* 
=============================================
   NEW FOOTER STYLES (Appended)
============================================= 
*/

#footer {
    background-color: #fff;
    padding: 5rem 0 2rem;
    color: #333;
    border-top: 1px solid #e2e8f0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
}

.follow-us-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.links-col h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 0.8rem;
}

.links-col ul li a {
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-col ul li a i {
    font-size: 0.7rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.links-col ul li a:hover i {
    color: var(--secondary-color);
}

.pay-now-btn {
    display: inline-block;
    background-color: #f43f5e;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(244, 63, 94, 0.3);
}

.pay-now-btn:hover {
    background-color: #e11d48;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* 
=============================================
   DARK FOOTER OVERRIDES (Appended)
============================================= 
*/

#footer {
    background-color: #0f172a;
    /* Deep Ocean Blue */
    color: #cbd5e1;
    /* Light Slate */
    border-top: 1px solid #1e293b;
}

.footer-desc {
    color: #94a3b8;
}

.follow-us-title {
    color: #fff;
}

.social-icons a {
    background-color: #1e293b;
    color: #fff;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #0f172a;
    /* Dark text on gold hover */
}

.links-col h4 {
    color: #fff;
}

.links-col ul li a {
    color: #94a3b8;
}

.links-col ul li a i {
    color: #64748b;
}

.links-col ul li a:hover {
    color: var(--secondary-color);
}

.links-col ul li a:hover i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    color: #64748b;
}

/* Logo Fix for Dark Footer */
#footer .footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* 
=============================================
   WHY CHOOSE US & STATS STYLES (Appended)
============================================= 
*/

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: #f8fafc;
    /* Light gray background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.3));
    color: var(--secondary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern overlay if desired, or keep clean */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* 
=============================================
   HERO SLIDER STYLES (Appended)
============================================= 
*/

.hero-content {
    width: 100%;
    max-width: 900px;
}

.hero-slider {
    position: relative;
    min-height: 300px;
    /* Ensure space for content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    /* Keep relative to stack properly in flex container if needed, or absolute is fine if container has height */
    top: auto;
    left: auto;
    transform: none;
}

/* We need absolute positioning for stacking, but one needs to dictate height or container needs fixed height.
   Let's stick to absolute for all to overlay perfectly */
.hero-slider {
    height: 400px;
    /* Fixed height to contain slides */
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animations for Text */
.hero-slide h1,
.hero-slide p,
.hero-slide .cta-buttons {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.hero-slide.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active .cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Adjust Hero Content Position */
.hero-content {
    margin-top: 5rem;
    /* Push content down */
}

/* Ensure video fades smoothly */
.hero-video {
    transition: opacity 1s ease-in-out;
}

/* Page Header for Subpages like Packages */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    /* Centering content vertically */
    align-items: center;
    justify-content: center;
    padding-top: 10rem;
    /* Increased to ensure clearance below fixed header */
    margin-top: 0;
}

/* Ensure overlay covers page header specifically if not handled by generic hero-overlay */
.page-header .hero-overlay {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    /* Match theme */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure container is relative so z-index works on top of overlay */
.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    /* Ensure text is white */
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 
=============================================
   ANIMATIONS & EFFECTS (Appended)
============================================= 
*/

/* 1. Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* 2. Card Hover Effects (Enhanced) */
.destination-card,
.package-card,
.service-card,
.feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.destination-card:hover,
.package-card:hover,
.service-card:hover,
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* 3. Icon Pulse Animation */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.feature-card:hover .feature-icon,
.service-card:hover .icon-box {
    animation: pulse-glow 1.5s infinite;
}

/* 4. Parallax Effect Helper */
/* We'll use JS to adjust background-position of .dream-partner or specific sections */
.parallax-section {
    background-attachment: fixed;
    /* Simple CSS parallax for desktops */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Mobile disable fixed background for performance */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}/* Services Page Specifics */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Full width card for Sightseeing */
.center-card {
    grid-column: 1 / -1;
    text-align: center;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.center-card .icon-box {
    margin: 0 auto 1.5rem;
}

.sightseeing-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    /* Align icon and text */
    align-items: center;
}
