:root {
    --primary-color: #ffffff;
    --accent-color: #38b6ff;
    --accent-glow: rgba(56, 182, 255, 0.4);
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --gold: #d4af37;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--primary-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100vw;
    line-height: 1.6;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo img {
    height: 40px;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.user-greeting {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: none; handled by GSAP */
}

#bg-current {
    background-image: url('assets/hero-bg.png');
    /* Initial BG */
}

#bg-next {
    /* Initially hidden or off-screen */
    transform: translateX(100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent 50%, rgba(0, 0, 0, 0.3)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 30%, rgba(0, 0, 0, 0.4));
}

.hero-content {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    z-index: 10;
}

/* Side Indicator */
.side-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.indicator-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.indicator-line {
    width: 1px;
    height: 100px;
    background: var(--glass-border);
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--glass-border);
    border-radius: 50%;
}

/* Main Text */
.main-text {
    padding-right: 5rem;
}

.destination-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cards-grid {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-text {
        padding-right: 0;
    }

    .destination-desc {
        margin: 0 auto 2rem;
    }

    .explore-btn {
        margin: 0 auto;
    }

    .side-indicator {
        display: none;
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Booking Form Styles */
.booking-form-container {
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.booking-form-container h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hidden {
    display: none;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem;
    border-radius: 8px;
    color: white;
    outline: none;
}

.form-row input:focus {
    border-color: var(--accent-color);
}

.full-width {
    width: 100%;
}

.btn-text {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
    text-decoration: underline;
}

.btn-text:hover {
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: rgba(5, 5, 5, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active .nav-links {
        transform: translateX(0);
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .navbar {
        padding: 1rem 5%;
    }

    .hero-footer {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 3rem;
    }

    .bottom-dest {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }
}

.destination-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 2rem;
    transition: opacity 0.5s ease;
}

.explore-btn {
    background: #2a5a9b;
    /* Muted blue like the design */
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-5px);
    background: #3572c4;
}

/* Destination Cards */
.cards-grid {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.card {
    position: relative;
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    /* transition: transform removed to avoid GSAP conflict */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-info {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0 20px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-info .rating {
    font-size: 0.8rem;
    color: #ffcc00;
}

.bookmark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Footer */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.scroll-counter {
    font-size: 0.8rem;
    opacity: 0.6;
    transform: rotate(-90deg);
}

.bottom-dest {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.2;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    gap: 20px;
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--glass-border);
}

.pagination-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-line {
    width: 150px;
    height: 2px;
    background: var(--glass-border);
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-text {
    animation: fadeInUp 1s ease-out forwards;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .close-btn {
    position: absolute;
    top: 40px;
    right: 5%;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.search-overlay .close-btn:hover {
    opacity: 1;
}

.search-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 5%;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-container input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: white;
    font-size: 3rem;
    font-family: var(--font-heading);
    padding: 1rem 0;
    outline: none;
    text-align: center;
}

.search-hints {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.search-hints a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.search-hints a:hover {
    color: var(--accent-color);
}

.search-results {
    margin-top: 2rem;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 10px;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
}

.search-result-item.show {
    opacity: 1;
    transform: translateY(0);
}

.search-result-item:hover {
    background: var(--glass-border);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.search-result-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.search-result-info h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2px;
}

.search-result-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: #2a8cc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    min-height: 500px;
}

.modal-image {
    flex: 1.2;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.modal-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 2.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Newsletter Section */
.newsletter-card {
    padding: var(--spacing-lg);
    border-radius: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(56, 182, 255, 0.05) 100%);
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-message {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Experience Card Enhanced */
.experience-card {
    transition: var(--transition-smooth);
}

.experience-card:hover {
    transform: translateY(-20px);
}

.experience-card:hover .exp-icon {
    transform: scale(1.2) rotate(10deg);
}

.exp-icon {
    transition: var(--transition-smooth);
}

/* Popular Destinations */
.popular-destinations .container {
    padding: var(--spacing-lg) 5%;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dest-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.dest-card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dest-card-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact .container {
    padding: var(--spacing-lg) 5%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem;
    border-radius: 40px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Experiences grid fix */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    padding: 3rem 2rem;
    text-align: center;
}

.exp-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        height: 250px;
    }

    .modal-content {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
}

.footer-legal a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
}

/* Animations using GSAP (Classes for JS to target) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Footer Styling */
.site-footer {
    background: #000;
    position: relative;
    padding: var(--spacing-xl) 5% 2rem;
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--glass-border);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(56, 182, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

.footer-links {
    flex: 1.5;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px;
}

.link-group h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.link-group a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    margin-left: 0;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .site-footer {
        padding: var(--spacing-lg) 5% 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Hero Footer - Blur Background */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    background: rgba(0, 0, 0, 0.2);
    /* Semi-transparent base */
    backdrop-filter: blur(10px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
}

/* Bottom Text Visibility Fix */
.bottom-dest {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}