/* Reset and Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #2c2c2c;
    --accent-color: #d4af37; /* Elegant Gold */
    --text-color: #333333;
    --text-light: #f4f4f4;
    --bg-color: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 30px 30px;
    overflow-x: hidden;
}

/* Background Decorations */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.blob-gold {
    background: rgba(212, 175, 55, 0.4);
}

.blob-gray {
    background: rgba(200, 200, 200, 0.4);
}

.floating-icon {
    position: absolute;
    color: var(--accent-color);
    opacity: 0.15;
    z-index: 0;
    animation: float-icon 6s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Separators */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 100px;
}

.wave-separator .shape-fill {
    fill: #f9f9f9;
}

.wave-separator-top {
    transform: rotate(0deg);
    top: 0;
    bottom: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px; /* Wider container for modern look */
    margin: 0 auto;
    padding: 0 40px;
}

/* Dark Nav State for Editorial Hero */
header.dark-nav .logo {
    color: var(--primary-color);
}

header.dark-nav .nav-links a {
    color: var(--secondary-color);
}

header.dark-nav .bar {
    background-color: var(--primary-color);
}

/* Modern Navigation (Glassmorphism) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff; /* White initially for hero contrast */
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    z-index: 1001;
}

header.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

header.scrolled .nav-links a {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    transition: var(--transition);
    background-color: #fff;
}

header.scrolled .bar {
    background-color: var(--primary-color);
}

/* Premium Hero Section */
.premium-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Elements: Sun, Airplane, Clouds */
.golden-sun {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: sunPulse 10s infinite alternate;
}

@keyframes sunPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.airplane-container {
    position: absolute;
    top: 20%;
    left: -10%;
    z-index: -1;
    animation: flyAcross 25s linear infinite;
    opacity: 0.6;
}

.airplane-container svg {
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
}

@keyframes flyAcross {
    0% { transform: translate(-10vw, 10vh) rotate(0deg); }
    100% { transform: translate(120vw, -20vh) rotate(10deg); }
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
}

.cloud-1 {
    width: 300px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation: floatCloud 40s linear infinite;
}

.cloud-2 {
    width: 400px;
    height: 120px;
    top: 40%;
    left: 70%;
    animation: floatCloud 55s linear infinite reverse;
}

.cloud-3 {
    width: 200px;
    height: 80px;
    top: 70%;
    left: 30%;
    animation: floatCloud 30s linear infinite;
}

@keyframes floatCloud {
    0% { transform: translateX(0); }
    50% { transform: translateX(50px); }
    100% { transform: translateX(0); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.highlight-text {
    position: relative;
    z-index: 1;
    color: var(--accent-color);
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Booking Widget */
.booking-widget {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin-bottom: 50px;
}

.booking-item {
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid #eee;
}

.booking-item:last-child {
    border-right: none;
}

.booking-item .label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 500;
}

.booking-item .input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
}

.booking-item input, .booking-item select {
    border: none;
    background: transparent;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 0;
}

/* Custom Select Styling */
.booking-item select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
    padding-right: 20px;
}

.btn-search {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-search:hover {
    background: var(--accent-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Right Visual */
.hero-visual {
    position: relative;
    height: 100%;
}

.image-container {
    position: relative;
    border-radius: 40px; /* Large rounded corners */
    overflow: hidden;
    height: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.main-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease, opacity 1s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.main-hero-img.active {
    opacity: 1;
    z-index: 2;
}

.image-container:hover .main-hero-img {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: float-card 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
    transition: opacity 0.5s ease; /* Smooth text transition */
}

.card-top {
    top: 60px;
    left: -40px;
}

.card-bottom {
    bottom: 60px;
    right: -40px;
    animation-delay: 2s;
}

.floating-card i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.user-avatars img:first-child {
    margin-left: 0;
}

.user-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: -10px;
    border: 2px solid #fff;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =========================================
   Slider Sections
   ========================================= */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.slider-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.destinations-slider-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.destinations-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.destinations-slider {
    display: flex;
    gap: 30px;
    width: max-content; /* Ensure container expands */
}

.destination-card {
    min-width: 320px;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-img img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.card-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Testimonials */
.testimonials-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 350px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   Chatbot Widget
   ========================================= */
#chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chat-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-chat {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
    text-align: right;
}

.chat-message p {
    background: #fff;
    padding: 12px 16px;
    border-radius: 15px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user p {
    background: var(--primary-color);
    color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 25px;
    outline: none;
    transition: var(--transition);
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input-area button:hover {
    background: var(--accent-color);
}

/* Footer Socials */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Styles for New Elements */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .booking-widget {
        flex-direction: column;
        margin: 0 auto 50px;
        align-items: stretch;
    }
    
    .booking-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .hero-stats {
        justify-content: center;
    }

    .image-container {
        height: 400px;
        margin-top: 50px;
    }

    .card-top {
        left: -10px;
    }

    .card-bottom {
        right: -10px;
    }
}

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #777;
    font-size: 1.1rem;
}

/* Unique Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 400px; /* Taller images */
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px 20px;
    background: #fff;
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Overlap effect */
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Services Modern Look */
.service-item {
    padding: 40px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.service-item:hover h3, .service-item:hover i {
    color: #fff;
}

.service-item i {
    transition: var(--transition);
}

/* Page Hero - Inner Pages */
.page-hero {
    height: 60vh;
    background-image: var(--bg-image); /* Fallback and base layer */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
    isolation: isolate; /* Create stacking context */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: -1; /* Behind content but above background color */
    animation: heroBgParallax 20s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes heroBgParallax {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern Gradient Overlay - Lighter opacity */
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(20,20,20,0.3) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 0;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -2px;
    opacity: 0;
    animation: heroTextReveal 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards 0.3s;
}

/* Geometric Decorations for Inner Pages */
.hero-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}

.hero-shape.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseBorder 4s infinite;
}

@keyframes pulseBorder {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 10px;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0;
        filter: blur(0);
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Modern Hero Background Elements */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    filter: blur(40px);
    animation: float 10s infinite ease-in-out;
}

.deco-1 { width: 400px; height: 400px; top: -100px; right: -50px; animation-delay: 0s; }
.deco-2 { width: 300px; height: 300px; bottom: 50px; left: -50px; animation-delay: -2s; background: linear-gradient(45deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01)); }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Unique Footer */
footer {
    background-color: #0f0f0f; /* Darker black */
    color: #fff;
    padding: 100px 0 30px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: 'WANDERER';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    font-family: var(--font-heading);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-about h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.footer-about p {
    color: #888;
    line-height: 1.8;
    max-width: 400px;
}

.footer-links h4, .contact-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #888;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.contact-info p {
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
}

.social-links a {
    color: #555;
    margin-left: 20px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        margin: 0;
        box-shadow: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        padding-top: 120px;
        gap: 30px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        color: var(--primary-color);
        font-size: 2rem;
        font-family: var(--font-heading);
    }
    
    .bar {
        background-color: #fff; /* Initial state on hero */
    }
    
    /* Ensure hamburger is visible on white background when active */
    .nav-links.active ~ .hamburger .bar {
        background-color: var(--primary-color);
    }
    
    header.scrolled .bar {
        background-color: var(--primary-color);
    }
}
