/* Base Design System and Variables */
:root {
    /* Color Palette */
    --primary: #FFCC00; /* Vivid Yellow */
    --primary-hover: #E6B800;
    --primary-light: rgba(255, 204, 0, 0.15);
    
    --secondary: #111827; /* Near Black */
    --secondary-hover: #1F2937;
    
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    --text-inverse: #FFFFFF;
    
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-dark: #111827;
    
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-modern: 'Montserrat', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography styles */
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-modern);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-hover);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    font-size: 1.125rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-inverse);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background-color: var(--primary);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-inverse);
}

.navbar.scrolled .logo {
    color: var(--secondary);
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.logo span {
    color: var(--primary);
}

.logo-img {
    transition: var(--transition);
}

.navbar .logo {
    position: relative;
    height: 50px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Cops extra padding */
}

.navbar .logo-img {
    position: absolute;
    width: 140%; /* Scales up the logo inside the cropped container */
    max-width: none;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    filter: brightness(0); /* Turns the yellow logo pure black */
}

.footer .logo-img {
    position: absolute;
    width: 140%;
    max-width: none;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    filter: brightness(0) invert(1); /* Turns the yellow logo into crisp white */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary);
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--secondary-hover);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--secondary); /* Make underline dark on yellow bg */
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-inverse);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--secondary);
}

/* Ensure the Book Now button stands out on the scrolled yellow background */
.navbar.scrolled .btn-primary {
    background-color: var(--secondary);
    color: var(--text-inverse);
}

.navbar.scrolled .btn-primary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* To allow subtle pan animation if needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Keeps the left side completely bright and only slightly darkens the right side for the text */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(17, 24, 39, 0.75) 100%);
}

.hero-content {
    max-width: 650px;
    margin-top: -5rem;
    margin-left: auto; /* Push to the right inside the container */
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}



/* Sections */
.section {
    padding: 6rem 0;
}

.destinations {
    background-color: var(--bg-card); /* Alternating section background */
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Continuous Horizontal Side-Scroller */
.marquee-wrapper {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full bleed effect */
    padding: 2rem 0; /* Padding allows hover shadows to not clip */
    margin-bottom: 1rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track.reverse {
    animation: marquee-scroll-reverse 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding-right: 2rem; /* Connects perfectly with the duplicated content */
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@keyframes marquee-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-content .trip-card {
    width: 350px;
    flex-shrink: 0;
}

.trip-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    aspect-ratio: 3/4;
    display: block;
    color: white;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 204, 0, 0.4);
}

.trip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trip-card:hover .trip-bg {
    transform: scale(1.08); /* Smooth modern zoom */
}

.trip-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}

.trip-header {
    text-align: center;
}

.trip-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-body); /* Changed to use body font for blocky sans-serif look */
    letter-spacing: 2px;
}

.trip-hero-duration {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.trip-content-bottom {
    display: flex;
    flex-direction: column;
}

.trip-badge {
    align-self: flex-start;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trip-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trip-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
    font-weight: 500;
}

.trip-meta-row i {
    color: white;
    margin-right: 0.25rem;
}

.more-dates {
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 2px 8px;
    font-size: 0.8rem;
    margin-left: 4px;
    backdrop-filter: blur(4px);
}

.trip-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.trip-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 400;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; border-radius: var(--radius-md); }

/* Categories Section */
.categories {
    background-color: var(--bg-card);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.marquee-content .category-card {
    width: 380px;
    flex-shrink: 0;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.category-card:hover img {
    transform: scale(1.1);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39, 0.7) 0%, rgba(17,24,39, 0) 30%); /* Reduced shadow to keep image bright */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}
.category-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}
.category-overlay p {
    font-size: 1rem;
    opacity: 0.8;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}
.category-card:hover .category-overlay h3 {
    transform: translateY(0);
    color: var(--primary);
}
.category-card:hover .category-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Why Us Section - Modern Redesign (Light Version) */
.why-us {
    position: relative;
    background: linear-gradient(135deg, #FFFDF5 0%, #FAFAFA 100%); 
    color: var(--text-primary);
    overflow: hidden;
    padding: 8rem 0;
}
.why-us::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,204,0,0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}
.why-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,153,0,0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}
.why-us-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}
.why-us-header { text-align: left; margin-bottom: 0; }
.why-us-header .section-subtitle {
    color: var(--primary-hover);
}
.why-us-header .section-title {
    color: var(--secondary);
    font-size: 3.5rem;
    font-family: var(--font-modern);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.why-us-header .section-title span {
    background: linear-gradient(135deg, #E69A00, #FF9900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.why-us-header .section-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .why-us-grid > div:nth-child(even) {
        transform: translateY(2.5rem);
    }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: floatY 6s ease-in-out infinite;
}
.feature-card:nth-child(2) { animation-delay: -1.5s; }
.feature-card:nth-child(3) { animation-delay: -3s; }
.feature-card:nth-child(4) { animation-delay: -4.5s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 204, 0, 0.6);
    box-shadow: 0 20px 40px -10px rgba(255, 204, 0, 0.3);
    animation-play-state: paused;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}
.feature-card:hover::after {
    left: 200%;
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,204,0,0.2);
    transition: all 0.5s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.feature-icon i {
    animation: iconFloat 4s ease-in-out infinite;
}
.feature-card:hover .feature-icon i {
    animation-play-state: paused;
}
.feature-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-family: var(--font-modern);
}
.feature-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Expert CTA - Modern Premium Redesign */
.expert-cta {
    padding: 6rem 0;
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}
.expert-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
}
.expert-box {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 5rem 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes bgPan {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.expert-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.expert-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bgPan 30s alternate infinite ease-in-out;
}
.expert-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.8) 50%, rgba(10, 15, 30, 0.1) 100%);
}
.expert-glow {
    position: absolute;
    left: -20%;
    top: -20%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,204,0,0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 2;
}
.expert-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}
.expert-content h2 {
    color: var(--text-inverse);
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-modern);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.expert-content h2 span {
    background: linear-gradient(135deg, var(--primary), #FF9900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.expert-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(255, 204, 0, 0.4);
    transition: all 0.4s ease;
}
.btn-glow:hover {
    box-shadow: 0 15px 35px -5px rgba(255, 204, 0, 0.6);
    transform: translateY(-3px) scale(1.02);
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}
.btn-glow:hover::after {
    left: 200%;
}

/* FAQs - Modern Premium Redesign */
.faqs {
    background-color: var(--bg-card);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.faqs::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,204,0,0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}
.faqs .container {
    position: relative;
    z-index: 1;
}
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}
.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(255,204,0,0.2);
}
.faq-item[open] {
    box-shadow: 0 15px 40px rgba(255,204,0,0.15);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.faq-item summary {
    padding: 2rem;
    font-weight: 700;
    font-family: var(--font-modern);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--secondary);
    transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item[open] summary {
    color: var(--primary-hover);
    border-bottom: 1px solid rgba(0,0,0,0.05); /* subtle divider */
}
.faq-item summary i {
    color: var(--secondary);
    background: var(--bg-main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.faq-item:hover summary i {
    background: rgba(255,204,0,0.2);
    color: var(--primary-hover);
}
.faq-item[open] summary i {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255,204,0,0.4);
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-item[open] .faq-content {
    animation: fadeInSlide 0.4s ease forwards;
}
.faq-content {
    padding: 1.5rem 2rem 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive specific updates for new sections */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .why-us-header { text-align: center; }
}
@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .expert-box { padding: 3rem 1.5rem; text-align: center; }
    .expert-content h2 { font-size: 1.75rem; }
}

/* Footer Section */
.footer {
    background-color: #000000; /* Pure black */
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer .logo {
    position: relative;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    display: flex;
    height: 50px;
    width: 240px;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Crops extra padding */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-newsletter h3 {
    color: var(--text-inverse);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-footer-links {
    min-width: 250px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem !important;
}

.contact-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.contact-footer-item i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-footer-item a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.contact-footer-item a:hover {
    color: var(--primary);
    padding-left: 0;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.875rem;
}

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

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

/* Booking Form Section - Modern Design */
.booking-section {
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.booking-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,204,0,0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}
.booking-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.booking-content .section-title {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-family: var(--font-modern);
}
.booking-content .section-title span {
    background: linear-gradient(135deg, var(--primary), #FF9900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
}
.perk-item i {
    color: var(--primary);
    font-size: 1.5rem;
    background: var(--primary-light);
    padding: 0.5rem;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.perk-item:hover i {
    transform: scale(1.1) rotate(5deg);
}
.booking-form-card {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
}
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 1.25rem;
    color: var(--text-light);
    font-size: 1.25rem;
    transition: var(--transition);
}
.input-with-icon input, .input-with-icon select {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-main);
    transition: var(--transition);
    outline: none;
}
.input-with-icon input:focus {
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px var(--primary-light);
}
.input-with-icon input:focus + i {
    color: var(--primary);
}
@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important; /* Reverted to stacked layout for better mobile UX */
        gap: 1.25rem !important;
    }
    .input-with-icon input, .input-with-icon select {
        padding: 1rem 1rem 1rem 3.25rem !important; /* Standard padding */
        font-size: 1rem !important;
    }
    .input-with-icon i {
        left: 1.25rem !important;
        font-size: 1.25rem !important;
    }
}

/* Contact Page Specifics - Clean Layout */
.contact-header-clean {
    background: linear-gradient(135deg, #FFFDF5 0%, #FAFAFA 100%);
    padding: 12rem 0 10rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.contact-header-clean::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,204,0,0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}
.contact-header-clean .container {
    position: relative;
    z-index: 1;
}
.contact-header-clean h1 {
    font-size: 4.5rem;
    font-family: var(--font-modern);
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 900;
}
.contact-header-clean h1 span {
    background: linear-gradient(135deg, var(--primary), #FF9900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.contact-header-clean p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}
.premium-contact-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: #FFFFFF;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    z-index: 20;
    margin-top: -6rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .premium-contact-box {
        display: block !important; /* Force block layout to ensure stacking */
        grid-template-columns: 1fr !important;
        margin-top: 0;
    }
    .contact-info-panel {
        padding: 3rem 1.5rem !important;
    }
    .contact-form-panel {
        padding: 3rem 1.5rem !important;
    }
}
.contact-info-panel {
    background: linear-gradient(135deg, var(--secondary) 0%, #172554 100%);
    color: white;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,204,0,0.15) 0%, transparent 70%);
    filter: blur(50px);
}
.contact-info-panel h3 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.75rem;
    font-family: var(--font-modern);
}
.contact-info-panel p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 3.5rem;
    font-size: 1.2rem;
    max-width: 90%;
    line-height: 1.6;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.info-item i {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 0.25rem;
}
.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.info-text strong {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-modern);
}
.info-text span {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}
.panel-socials {
    display: flex;
    gap: 1rem;
}
.panel-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.panel-socials a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}
.contact-form-panel {
    padding: 4.5rem 5rem;
}
.contact-form-panel .form-title {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    font-family: var(--font-modern);
}
.standalone-form .input-group label {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.align-top i {
    top: 1.25rem !important;
}
.modern-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-main);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.modern-form textarea:focus {
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Fix Icon Focus Animation across the entire site */
.input-with-icon:focus-within i {
    color: var(--primary);
}

.map-embed-section {
    width: 100%;
    line-height: 0;
    filter: grayscale(20%); /* slightly mute perfect google colors for aesthetic */
}

/* Mobile Friendly Adjustments & Side Menu */
@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Hide standard links to use side-menu */
    }
    .mobile-toggle {
        display: block; /* Show hamburger button */
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-content {
        margin-left: 0;
        text-align: center;
        margin-top: 0;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-bg img {
        object-position: 33% center !important; /* Center the biker who is on the left side */
    }
    .navbar .logo {
        width: 160px; /* Even smaller to fit better */
    }
    .nav-actions .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .booking-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .booking-content .section-title {
        font-size: 2.5rem;
    }
    .expert-content h2 {
        font-size: 2.25rem;
    }
    .marquee-content .trip-card {
        width: 320px; /* Slightly wider cards for better presence on mobile */
    }
    .trip-main-title {
        font-size: 1.35rem; /* Better scale for mobile */
    }
    .trip-hero-title {
        font-size: 2.5rem; /* Scaled down from desktop */
    }
    .contact-header-clean h1 {
        font-size: 2.75rem;
    }
    /* Additional Mobile Polish */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    .section-title {
        font-size: 2rem !important;
    }
    .container {
        padding: 0 1rem;
    }
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    .contact-header-clean h1 {
        font-size: 2.25rem;
    }
    .logo {
        height: 40px;
        width: 160px;
    }
}

/* Mobile Side Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
    margin-bottom: 3rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-modern);
}

.mobile-nav-links a.active {
    color: var(--primary-hover);
}

.body-lock {
    overflow: hidden;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}


