/* 
   Project: Sandhu Tour & Travels 
   Theme: Ultra-Premium, Dark Luxury, Glassmorphism
*/

:root {
    --color-bg: #020b16;
    /* Deep Navy Black */
    --color-bg-light: #051424;
    --color-primary: #0a192f;
    --color-accent: #d4af37;
    /* Metallic Gold */
    --color-accent-light: #f3e5ab;
    --color-text: #e6f1ff;
    --color-text-muted: #8892b0;

    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    /* More elegant serif */
    --font-body: 'Montserrat', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Premium Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: drift 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 25, 47, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: 20%;
    right: -10%;
    animation-delay: -5s;
}

.bg-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    backdrop-filter: blur(2px);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    background: rgba(2, 11, 22, 0);
    /* Transparent initially */
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
        /* Smaller padding on mobile */
        background: rgba(2, 11, 22, 0.95);
        /* Always dark on mobile for readability */
        backdrop-filter: blur(10px);
    }
}

.navbar.scrolled {
    background: rgba(2, 11, 22, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
    position: relative;
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
    background-size: 200%;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    animation: shimmer 2s linear infinite;
    text-shadow: 0 0 15px rgba(251, 245, 183, 0.4);
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(191, 149, 63, 0.5);
    color: var(--color-accent);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    z-index: -1;
    transition: width 0.4s ease;
}

.nav-button:hover {
    color: #020b16;
    /* Dark text */
    border-color: #aa771c;
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.4);
}

.nav-button:hover::before {
    width: 100%;
    background-size: 200%;
    animation: shimmer 3s infinite linear;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Navbar height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    /* Initial scale for parallax */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 11, 22, 0.7) 0%, rgba(2, 11, 22, 0.3) 50%, rgba(2, 11, 22, 1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.hero-title .reveal-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    display: inline-block;
    /* Required for transform alignment */
    text-shadow: 0 0 20px rgba(191, 149, 63, 0.2);
    animation: shimmer 3s infinite linear;
}

.highlight {
    /* Inherits the gradient from above, simply ensuring font style */
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    /* Ensure equal height with bordered buttons */
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200%;
    color: #020b16;
    /* Dark text for contrast against gold */
    box-shadow: 0 10px 20px -5px rgba(191, 149, 63, 0.5);
    transition: all 0.3s ease;
    animation: shimmer 3s infinite linear;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(191, 149, 63, 0.7);
    /* Animation continues from base state */
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(191, 149, 63, 0.5);
    color: var(--color-accent-light);
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-secondary:hover {
    color: #020b16;
    /* Dark text */
    border-color: #aa771c;
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.4);
    /* background animation on pseudo-element handled above */
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-text);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Sections Common */
section {
    padding: 100px 0;
}


/* Experience Section - Glass Cards */
.experience-section {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.experience-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(2, 11, 22, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
    /* Ensure uniform height */
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Editorial Numbers */
.card-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
}

.glass-card:hover .card-number {
    color: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-text-muted);
    /* Start muted */
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.glass-card:hover .feature-icon {
    color: var(--color-accent);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.glass-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.card-learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: auto;
    /* Push to bottom if flex */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.glass-card:hover .card-learn-more {
    opacity: 1;
    transform: translateY(0);
}

.card-learn-more:hover {
    gap: 12px;
}

/* Destinations - Slider */
.destinations-section {
    background: var(--color-bg-light);
    overflow: hidden;
}

.destinations-slider {
    display: flex;
    overflow-x: auto;
    padding: 20px 0 50px;
    gap: 30px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    cursor: grab;
}

.destinations-slider::-webkit-scrollbar {
    display: none;
}

.destination-card {
    min-width: 320px;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition-slow);
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.destination-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
}

.destination-card p {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.card-link {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition-fast);
}

/* Hover Effects for Cards */
.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.destination-card:hover p,
.destination-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    align-items: center;
    min-height: 300px;
    /* Uniform height */
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.reviewer-info h4 {
    color: var(--color-accent);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
}

.stars {
    color: var(--color-accent);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Fleet Section */
.fleet-section {
    padding: 100px 0;
}

.fleet-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.fleet-text {
    flex: 1;
}

.fleet-list {
    margin: 30px 0;
}

.fleet-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
}

.fleet-list i {
    color: var(--color-accent);
}

.fleet-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.glass-frame {
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.fleet-image-wrapper img {
    border-radius: 15px;
    filter: brightness(0.9);
}

/* Contact Section */
.contact-section {
    background-image: url('images/hero_portrait.jpg');
    /* Reuse existing image for BG, heavily darkened */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 22, 0.9);
}

.contact-glass-box {
    position: relative;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-info h2 {
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--color-text-muted);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    /* Critical for padding calculation */
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #020b16;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    text-align: center;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 30px;
}

.developer-credit {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.dev-link {
    font-weight: 600;
    background: linear-gradient(90deg, #ff8a00, #e52e71, #9a00e0, #ff8a00);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 4s ease-in-out infinite;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-link:hover {
    text-shadow: 0 0 10px rgba(229, 46, 113, 0.5);
    transform: scale(1.05);
    display: inline-block;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .fleet-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-glass-box {
        grid-template-columns: 1fr;
        /* Force single column */
        padding: 30px 20px;
        /* Reduced padding */
        gap: 40px;
    }

    .contact-info {
        order: 2;
        text-align: center;
        /* Center the text */
    }

    .contact-form {
        width: 100%;
        /* Ensure full width */
    }

    .info-item {
        flex-direction: column;
        /* Stack icon and text */
        align-items: center;
        /* Center the icon and content block */
        gap: 10px;
    }

    .info-item p {
        word-break: break-word;
        /* Prevent text overflow */
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* Adjusted top */
        left: 0;
        width: 100%;
        background: rgba(2, 11, 22, 0.98);
        backdrop-filter: blur(20px);
        /* Increased blur */
        padding: 40px 30px;
        /* More padding */
        border-bottom: 1px solid var(--glass-border);
        gap: 30px;
        /* Increased gap */
        animation: slideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        /* Smoother easing */
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
        /* Reduced from 2.8rem */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
        /* Reduced from 2rem */
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .destination-card {
        min-width: 260px;
        /* Slightly smaller width */
        height: 380px;
        /* Reduced height */
    }

    .destination-card h3 {
        font-size: 1.5rem;
    }

    /* Container Padding Fix */
    .container {
        padding: 0 25px;
    }

    /* Features - Horizontal Scroll on Mobile */
    /* Hero Buttons - Mobile Fix */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        /* Full width buttons */
        max-width: 300px;
        /* But not too wide */
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        /* Space for scrollbar or shadow */
        margin: 0 -20px;
        /* Negative margin to span full width */
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        min-width: 260px;
        /* Smaller card */
        scroll-snap-align: start;
        /* Scale snap */
        margin-right: 15px;
        padding: 30px 20px;
        /* Less padding */
        min-height: 300px;
        /* Reduced min-height */
    }

    .feature-icon {
        font-size: 2.2rem;
        /* Smaller icon */
        margin-bottom: 20px;
    }

    .glass-card h3 {
        font-size: 1.3rem;
        /* Smaller heading */
    }
}

/* Global Mobile Fixes */
img {
    max-width: 100%;
    height: auto;
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

/* Extra small devices adjustments */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
        /* More space for fixed navbar */
    }

    .hero-title {
        font-size: 2.2rem;
        /* Prevent overflow */
    }

    .container {
        padding: 0 20px;
        /* Reduce horizontal padding */
    }

    .contact-glass-box {
        padding: 25px 15px;
        /* Even less padding for very small screens */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        /* Prevent zoom on iOS */
    }

    /* Footer Mobile Improvements */
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        padding: 5px;
        /* Better touch target */
    }

    .footer-copyright {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid var(--glass-border);
        width: 100%;
        text-align: center;
    }
}