/* CSS Variables - Design System */
:root {
    --primary: 217 91% 60%;
    --primary-dark: 217 91% 50%;
    --secondary: 142 76% 36%;
    --secondary-light: 142 76% 46%;
    --accent: 24 100% 50%;
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --border: 214.3 31.8% 91.4%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-large: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: hsl(var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

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

.btn-secondary:hover {
    background: hsl(var(--secondary-light));
}

.btn-accent {
    background: hsl(var(--accent));
    color: white;
}

.btn-accent:hover {
    background: hsl(24 100% 45%);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

/* Navbar */
.company-logo {
    width: 180px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: contain;
}

/* Mobile screens */
@media (max-width: 576px) {
    .company-logo {
        width: 120px;
    }
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.8));
}

#navbar.scrolled {
    background: white;
    box-shadow: var(--shadow-medium);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

#navbar.scrolled .logo {
    color: hsl(var(--foreground));
}

.logo-icon {
    width: 2rem;
    height: 2rem;
}

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

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition-smooth);
}

#navbar.scrolled .nav-links a {
    color: hsl(var(--foreground));
}

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

.mobile-menu-btn {
    display: block;
    background: white;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.hidden {
    display: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 0.75rem;
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    background: hsl(var(--muted));
    color: hsl(var(--primary));
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 700px;
    }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.4), transparent);
    z-index: 10;
}

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

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Ensure hero container aligns content to the left, matching React layout */
.slide-content .container {
    width: 100%;
}

.hero-text {
    max-width: 42rem;
    color: white;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-location svg {
    color: #fff;
}

.hero-location span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
}

.hero-text p {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-text p {
        font-size: 1.25rem;
    }
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.highlight-badge {
    background: #F97015;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .highlight-badge {
        font-size: 1rem;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: white;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .slider-btn svg {
        width: 2rem;
        height: 2rem;
    }
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .dot {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.dot.active {
    background: white;
    width: 2rem;
}

@media (min-width: 768px) {
    .dot.active {
        width: 3rem;
    }
}

/* Search Tabs */
.search-tabs {
    background: white;
    box-shadow: var(--shadow-large);
    margin: -5rem 1rem 0;
    position: relative;
    z-index: 50;
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .search-tabs {
        margin: -3rem 2rem 0;
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .search-tabs {
        max-width: 1152px;
        margin: -3rem auto 0;
    }
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    background: hsl(var(--muted));
    padding: 0.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
    color: hsl(var(--foreground));
}

.tab-trigger:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-trigger.active {
    background: hsl(var(--primary));
    color: white;
}

.tab-trigger span {
    display: none;
}

@media (min-width: 640px) {
    .tab-trigger span {
        display: inline;
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .search-form {
        grid-template-columns: repeat(5, 1fr);
    }

    .search-form-hotel {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 767px) {
    .search-form-hotel {
        grid-template-columns: 1fr;
    }
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    background: white;
    color: hsl(var(--foreground));
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

/* Section Styles */
.section-badge {
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(13, 110, 253, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 0.25rem;
    border-radius: 9999px;
    width: fit-content;
}


.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.3);
}

@media (min-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subsection-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.subsection-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid hsl(var(--border));
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    color: hsl(var(--foreground));
}

.subsection-btn:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.subsection-btn.active {
    background: hsl(var(--primary));
    border-color: #fff;
    color: white;
    box-shadow: var(--shadow-medium);
}

.subsection-content {
    position: relative;
    min-height: 100px;
}

.subsection {
    display: none;
    color: hsl(var(--muted-foreground));
}

.subsection.active {
    display: block;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-image {
        height: 720px;
    }
}

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

.stat-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-large);
}

.stat-1 {
    top: 1.5rem;
    right: 1.5rem;
}

.stat-2 {
    bottom: 8rem;
    left: 1.5rem;
}

.stat-3 {
    bottom: 1.5rem;
    /* right: 28.5rem; */
    left: 1rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-label {
    font-size: 0.875rem;
    color: #fff;
}

/* Packages Section */
.packages-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .packages-section {
        padding: 6rem 0;
    }
}

.package-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .category-title {
        font-size: 1.875rem;
    }
}

.category-title .icon {
    width: 1.75rem;
    height: 1.75rem;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-large);
}

.package-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

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

.duration-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: hsl(var(--secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-content {
    padding: 1.25rem;
}

.package-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.package-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #facc15;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.3);
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-date {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: hsl(var(--border));
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot:hover {
    background: hsl(var(--muted-foreground));
}

.testimonial-dot.active {
    background: hsl(var(--primary));
    width: 2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .map-section {
        padding: 6rem 0;
    }
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .map-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-large);
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.bg-primary {
    background: hsla(var(--primary), 0.1);
}

.bg-primary svg {
    color: hsl(var(--primary));
}

.bg-secondary {
    background: hsla(var(--secondary), 0.1);
}

.bg-secondary svg {
    color: hsl(var(--secondary));
}

.bg-accent {
    background: hsla(var(--accent), 0.1);
}

.bg-accent svg {
    color: hsl(var(--accent));
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 514px;
    min-height: 514px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: white;
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    transition: var(--transition-smooth);
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    background: hsl(var(--primary));
    transform: translateY(-2px);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: hsl(var(--primary));
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* ==================== TOUR DETAIL PAGE STYLES ==================== */

/* Tour Detail Hero */
.tour-detail-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.tour-detail-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail-hero .hero-content {
    text-align: center;
    color: white;
}

.tour-detail-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tour-detail-hero .hero-location {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Tour Gallery */
.tour-gallery {
    padding: 2rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-main {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-main img:hover {
    opacity: 0.9;
}

.gallery-thumb {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-more-btn {
    height: 12rem;
    width: 100%;
    background: #F97015;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-more-btn:hover {
    background: #ea8039;
}

/* Tour Detail Content */
.tour-detail-content {
    padding: 2rem 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.tour-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quick Info Card */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    padding: 0.5rem;
    background: hsl(217 91% 95%);
    border-radius: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(217 91% 60%);
}

.rupee-icon {
    color: hsl(217 91% 60%);
    font-weight: bold;
    font-size: 1.25rem;
}

.info-label {
    font-size: 0.875rem;
    color: hsl(240 5% 65%);
}

.info-value {
    font-weight: 600;
}

/* Tour Planning */
.tour-planning {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.planning-stop {
    padding: 0.5rem 1rem;
    background: hsl(217 91% 95%);
    border-radius: 0.5rem;
    font-weight: 500;
}

.planning-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(240 5% 65%);
}

/* Lists */
.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inclusion-list li,
.exclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.inclusion-list .check-icon {
    color: #22c55e;
}

.check-icon.primary {
    color: hsl(217 91% 60%);
}

.x-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Itinerary Accordion */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border: 1px solid hsl(240 6% 90%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: hsl(240 5% 96%);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.day-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsl(217 91% 60%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.day-title {
    font-weight: 600;
    text-align: left;
}

.accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1rem;
    color: hsl(240 5% 65%);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1rem 1rem 1rem 4rem;
}

/* Tour Sidebar */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-card {
    position: sticky;
    top: 1rem;
}

/* Booking Form */
.booking-form,
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(240 6% 90%);
    border-radius: 0.375rem;
    background: white;
    color: hsl(240 10% 4%);
    font-size: 0.875rem;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: hsl(217 91% 60%);
    box-shadow: 0 0 0 2px hsl(217 91% 95%);
}

/* Price Summary */
.price-summary {
    padding: 1rem;
    background: hsl(217 91% 95%);
    border-radius: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-row span:first-child {
    color: hsl(240 5% 65%);
}

.price-value {
    font-weight: 600;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid hsl(240 6% 90%);
}

.price-total span:first-child {
    font-weight: bold;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(217 91% 60%);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: hsl(240 6% 90%);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: hsl(240 5% 65%);
}

/* Host Info */
.host-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.host-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.host-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.host-role {
    font-size: 0.875rem;
    color: hsl(240 5% 65%);
}

.host-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(240 10% 4%);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: hsl(217 91% 60%);
}

/* Responsive */
@media (max-width: 768px) {
    .tour-detail-hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-main {
        grid-column: span 2;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .tour-planning {
        flex-direction: column;
        align-items: flex-start;
    }

    .planning-arrow {
        transform: rotate(90deg);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Hotels Page Styles
   =================================== */
.hotel-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hotel-hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hotel-hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hotel-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hotel-hero p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hotel-hero h1 {
    font-size: 3.75rem;
  }
  .hotel-hero p {
    font-size: 1.5rem;
  }
}

.hotels-content {
  padding: 3rem 0;
}

.hotels-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hotels-layout {
    grid-template-columns: 300px 1fr;
  }
}

.hotels-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-card h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.search-input-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}

.search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.price-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: none;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover {
  background: #f3f4f6;
}

.category-btn.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.popular-hotels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popular-hotel-item {
  display: flex;
  gap: 0.75rem;
}

.popular-hotel-image {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.popular-hotel-info {
  flex: 1;
  min-width: 0;
}

.popular-hotel-name {
  font-weight: 600;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.25rem;
}

.popular-hotel-location {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.popular-hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.popular-hotel-rating svg {
  color: #f59e0b;
  fill: #f59e0b;
}

.hotels-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hotels-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hotels-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hotels-count {
  color: #6b7280;
}

.sort-select {
  width: 200px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background: white;
  font-size: 0.875rem;
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hotels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hotel-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover {
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
}

.hotel-image-container {
  position: relative;
  height: 12rem;
}

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

.hotel-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #3b82f6;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.hotel-content {
  padding: 1rem;
}

.hotel-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.hotel-location svg {
  flex-shrink: 0;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-stars svg {
  color: #f59e0b;
  fill: #f59e0b;
}

.rating-value {
  font-weight: 600;
}

.rating-reviews {
  font-size: 0.875rem;
  color: #6b7280;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}

.amenity-tag svg {
  flex-shrink: 0;
}

.hotel-footer {
  padding: 0 1rem 1rem 1rem;
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

/* ===================================
   Tours Page Styles
   =================================== */
.tours-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-image: url('../src/assets/tours-hero.jpg');
    background-size: cover;
    background-position: center;
}

.tours-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.tours-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    z-index: 1;
}

.tours-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tours-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .tours-hero h1 {
        font-size: 2rem;
    }

    .tours-hero p {
        font-size: 1rem;
    }
}

.tours-section {
    padding: 3rem 0 4rem;
    background-color: hsl(0, 0%, 100%);
}

.tours-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

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

    .tours-sidebar {
        order: 2;
    }

    .tours-main {
        order: 1;
    }
}

.category-dropdown {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Sidebar Filters */
.tours-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-card {
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(220, 13%, 13%);
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(220, 9%, 46%);
}

.search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #3c83f6;
    box-shadow: 0 0 0 3px hsla(199, 89%, 48%, 0.1);
}

.price-display {
    font-size: 0.875rem;
    color: hsl(220, 9%, 46%);
    margin-bottom: 0.75rem;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: hsl(210, 40%, 96%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3c83f6;
    cursor: pointer;
    transition: all 0.3s;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3c83f6;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.price-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: hsl(220, 9%, 46%);
}

.destination-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.destination-btn {
    width: 100%;
    text-align: left;
    padding: 0.625rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: hsl(220, 13%, 13%);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.destination-btn:hover {
    background: hsl(210, 40%, 96%);
}

.destination-btn.active {
    background: #3c83f6;
    color: white;
}

.popular-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #eab308;
}

.popular-tours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.popular-tour-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.popular-tour-item:hover {
    background: hsl(210, 40%, 96%);
}

.popular-tour-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.popular-tour-info {
    flex: 1;
    min-width: 0;
}

.popular-tour-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(220, 13%, 13%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.popular-tour-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #3c83f6;
}

/* Main Tours Area */
.tours-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tours-count {
    color: hsl(220, 9%, 46%);
    font-size: 0.875rem;
}

.tours-count span {
    font-weight: 600;
    color: hsl(220, 13%, 13%);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label {
    font-size: 0.875rem;
    color: hsl(220, 9%, 46%);
}

.sort-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.5rem;
    background: white;
    color: hsl(220, 13%, 13%);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.sort-select:focus {
    outline: none;
    border-color: #3c83f6;
    box-shadow: 0 0 0 3px hsla(199, 89%, 48%, 0.1);
}

@media (max-width: 640px) {
    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .sort-controls {
        width: 100%;
    }

    .sort-select {
        flex: 1;
    }
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tour-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.tour-image-wrapper {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-duration-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: hsl(24, 95%, 53%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tour-popular-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #eab308;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tour-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(220, 13%, 13%);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.tour-rating svg {
    color: #eab308;
}

.rating-value {
    font-weight: 600;
    color: #80806b;
}

.rating-reviews {
    color: hsl(220, 9%, 46%);
}

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(220, 9%, 46%);
    font-size: 0.875rem;
}

.tour-info-item svg {
    flex-shrink: 0;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid hsl(220, 13%, 91%);
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c83f6;
}

.tour-book-btn {
    padding: 0.5rem 1.25rem;
    background: #3c83f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.tour-book-btn:hover {
    background: #3c83f6;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
}

.no-results p {
    color: hsl(220, 9%, 46%);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.reset-filters-btn {
    padding: 0.625rem 1.5rem;
    background: white;
    color: hsl(220, 13%, 13%);
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-filters-btn:hover {
    background: hsl(210, 40%, 96%);
}

/* Checkout Page Styles */
.checkout-hero {
    position: relative;
    height: 60vh;
    /* background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(217, 91%, 45%) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkout-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.checkout-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.checkout-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .checkout-hero-content h1 {
        font-size: 3rem;
    }

    .checkout-hero-content p {
        font-size: 1.5rem;
    }
}

.checkout-section {
    padding: 3rem 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 2fr 1fr;
    }
}

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

.checkout-summary-column {
    position: relative;
}

.checkout-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checkout-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.card-icon {
    color: #3b82f6;
}

.checkout-card-content {
    padding: 1.5rem;
}

.terms-content {
    padding-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #3b82f6;
    font-size: 0.875rem;
}

.terms-checkbox {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
    color: var(--text-primary);
}

.checkout-summary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .checkout-summary-card {
        position: sticky;
        top: 1rem;
    }
}

.booking-type {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.booking-icon {
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: #3b82f6;
    flex-shrink: 0;
}

.booking-info {
    flex: 1;
}

.booking-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.booking-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.booking-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.booking-details,
.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-detail-row,
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-label,
.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.detail-value,
.price-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.btn-confirm {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.confirmation-note {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 9999;
    max-width: 400px;
}

.toast-show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

/* Hotel Detail Page Styles */
.hotel-detail-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hotel-detail-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-detail-hero .hero-content {
    text-align: center;
    color: white;
}

.hotel-detail-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hotel-detail-hero .hero-location {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hotel-detail-hero .hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hotel-detail-hero .rating-value {
    font-weight: 700;
}

.hotel-detail-hero .rating-reviews {
    color: rgba(255, 255, 255, 0.8);
}

/* Image Gallery */
.image-gallery {
    padding: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-main {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image,
.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-thumb {
    height: 192px;
}

.gallery-image:hover,
.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-more-btn {
    height: 192px;
    width: 100%;
    background: #F97015;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-more-btn:hover {
    background: #e7772d;
}

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

    .gallery-main {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-thumb,
    .gallery-more-btn {
        height: 200px;
    }
}

/* Detail Content */
.hotel-detail-content {
    padding: 2rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.detail-card .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-card .card-content {
    padding: 1.5rem;
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.amenity-icon {
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Room Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

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

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.feature-check {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Inclusions & Exclusions */
.inclusion-list,
.exclusion-list,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inclusion-item,
.exclusion-item,
.policy-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.inclusion-check {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.exclusion-x {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.policy-check {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Attractions */
.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.attraction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.attraction-name {
    font-weight: 500;
}

.attraction-distance {
    color: var(--text-secondary);
}

/* Booking Sidebar */
.detail-sidebar {
    position: relative;
}

.booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .booking-card {
        position: sticky;
        top: 1rem;
    }
}

.booking-form,
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.date-input {
    cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.price-summary {
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-row:last-of-type {
    margin-bottom: 0;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.price-value {
    font-weight: 600;
}

.price-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
}

.total-label {
    font-weight: 700;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.btn-book,
.btn-enquiry {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book:hover,
.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-enquiry {
    background: white;
    color: var(--text-primary);
    border: 1px solid #e5e7eb;
}

.btn-enquiry:hover {
    background: #f9fafb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-divider {
    position: relative;
    margin: 1.5rem 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    position: relative;
    background: white;
    padding: 0 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s;
}

.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Contact Info */
.contact-info {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    color: #3b82f6;
    flex-shrink: 0;
}

/* Transport Detail Page Styles */
.transport-detail-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transport-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.transport-detail-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.transport-detail-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transport-detail-hero .hero-subtitle {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.transport-detail-hero .hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.transport-detail-hero .hero-rating svg {
    fill: #fbbf24;
    color: #fbbf24;
}

/* Gallery */
.transport-gallery {
    padding: 2rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.gallery-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-main-img:hover {
    opacity: 0.9;
}

.gallery-thumbnails {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.gallery-thumbnail {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-thumbnail:hover {
    opacity: 0.9;
}

.gallery-view-more {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    height: 12rem;
}

/* Transport Detail Content */
.transport-detail-content {
    padding: 2rem 1rem;
}

.transport-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.transport-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.detail-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-card-content {
    padding: 1.5rem;
}

.detail-description {
    color: #6b7280;
    line-height: 1.75;
}

/* Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.spec-label {
    font-weight: 500;
}

.spec-value {
    color: #6b7280;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-icon {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Lists */
.inclusions-list,
.exclusions-list,
.policies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inclusion-item,
.exclusion-item,
.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon-green {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.x-icon-red {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Routes */
.routes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-icon {
    color: #3b82f6;
}

.route-name {
    font-weight: 500;
}

.route-duration {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Booking Sidebar */
.transport-booking-sidebar {
    position: relative;
}

.booking-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.sticky-booking {
    position: sticky;
    top: 1rem;
}

.booking-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.booking-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Booking Summary */
.booking-summary {
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total-label {
    font-weight: 700;
}

.summary-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    position: relative;
    background: white;
    padding: 0 0.5rem;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Contact Info Box */
.contact-info-box {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-info-item svg {
    color: #3b82f6;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .transport-detail-layout {
        grid-template-columns: 1fr;
    }

    .sticky-booking {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .gallery-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-thumbnails {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .gallery-view-more {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        height: auto;
    }
}

@media (max-width: 768px) {
    .transport-detail-hero h1 {
        font-size: 2rem;
    }

    .transport-detail-hero .hero-subtitle {
        font-size: 1rem;
    }

    .gallery-thumbnails {
        grid-template-columns: 1fr 1fr;
    }

    .specs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Transport Page Styles */
.transport-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transport-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transport-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.transport-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
}

.transport-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transport-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Transport Content */
.transport-content {
    padding: 3rem 0;
}

.transport-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Transport Sidebar */
.transport-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Transport Main */
.transport-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.transport-count {
    color: #6b7280;
}

/* Transports Grid */
.transports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.transport-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.transport-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.transport-image-container {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.transport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.transport-card:hover .transport-image {
    transform: scale(1.05);
}

.transport-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(var(--primary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.transport-content {
    padding: 1rem;
}

.transport-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.transport-info {
    display: flex;
    gap: 1rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.transport-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.transport-type {
    text-transform: capitalize;
}

.transport-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars svg {
    fill: hsl(var(--primary));
    color: hsl(var(--primary));
}

.rating-value {
    font-weight: 600;
}

.rating-reviews {
    font-size: 0.875rem;
    color: #6b7280;
}

.transport-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.feature-tag svg {
    flex-shrink: 0;
}

.transport-footer {
    padding: 0 1rem 1rem;
}

/* Popular Transports */
.popular-transports {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-transport-item {
    display: flex;
    gap: 0.75rem;
}

.popular-transport-image {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.popular-transport-info {
    flex: 1;
    min-width: 0;
}

.popular-transport-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.popular-transport-capacity {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.popular-transport-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popular-transport-rating svg {
    fill: hsl(var(--primary));
    color: hsl(var(--primary));
}

.popular-transport-rating span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .transport-layout {
        grid-template-columns: 1fr;
    }

    .transport-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .transport-hero h1 {
        font-size: 2rem;
    }

    .transport-hero p {
        font-size: 1rem;
    }

    .transports-grid {
        grid-template-columns: 1fr;
    }

    .transport-controls {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .transport-hero {
        height: 50vh;
    }

    .transport-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

.about-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.about-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 1rem;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
}

.about-content-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

.subsection-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.subsection-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.subsection-btn:hover {
    background-color: hsl(var(--muted) / 0.8);
}

.subsection-btn.active {
    background-color: hsl(var(--primary));
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.subsection-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.active-section-content {
    background-color: #528cea;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #528cea;
}

.section-header {
    /* display: flex; */
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
}

.section-text {
    color: #fff;
    line-height: 1.75;
}

.about-cta {
    margin-top: 1rem;
}

.about-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-main-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    height: 100%;
}

.about-main-image:hover {
    transform: translateY(-4px);
}

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

.stat-card {
    position: absolute;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.stat-card-1 {
    bottom: -1.5rem;
    left: -1.5rem;
}

.stat-card-2 {
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.stat-card-3 {
    bottom: 5rem;
    right: -1.5rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.stat-card-1 .stat-icon {
    color: #fff;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-card-1 .stat-number {
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-card-1 .stat-label {
    color: #fff;
}

@media (min-width: 768px) {
    .about-hero .hero-title {
        font-size: 4rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-image-container {
        min-height: 400px;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-card-1,
    .stat-card-2,
    .stat-card-3 {
        position: static;
        margin-top: 1rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

.contact-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.contact-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 1rem;
}

.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-hero .hero-subtitle {
    font-size: 1.5rem;
}

.contact-content-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-intro {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    position: relative;
    background: hsl(var(--card));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid hsl(var(--border) / 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.info-card-content {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon-wrapper {
    background-color: hsl(var(--primary) / 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #3c83f6;
}

.info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.info-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: black;
}

.info-detail {
    color: #6b7280;
    margin: 0.25rem 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--card) / 0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(var(--border) / 0.5);
    box-shadow: var(--shadow-large);
    position: sticky;
    top: 6rem;
}

.contact-form-wrapper:hover {
    border-color: #72a4f480;
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 8px 32px;
}

.contact-form .form-label{
    margin-bottom: 0px;
}

.contact-form .form-group{
    margin-bottom: 0.5px;
}

.contact-form-wrapper .form-input, .contact-form-wrapper .form-textarea{
    border: 1px solid #ccd1d780;
}

.contact-form-wrapper .btn-block{
    background: #3c83f6;
}

.contact-form-wrapper .btn-block:hover {
    background: #3c83f6e6;
}

.form-heading {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.form-subheading{
    color: #6b7280;
    margin-bottom: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(var(--border));
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input.input-error,
.form-textarea.input-error {
    border-color: hsl(var(--destructive));
}

.error-message {
    display: none;
    color: hsl(var(--destructive));
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-block {
    width: 100%;
}

.map-section {
    padding: 4rem 0;
    background-color: hsl(var(--muted) / 0.5);
}

.map-section .section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(var(--foreground));
}

.map-container {
    width: 100%;
    height: 585px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid hsl(var(--border));
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.toast-description {
    color: hsl(var(--muted-foreground));
    margin: 0;
}

@media (min-width: 768px) {
    .contact-hero .hero-title {
        font-size: 4rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading {
        font-size: 3rem;
    }

    .map-section .section-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-container {
        height: 350px;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}


/* Special Offers Section */
.special-offers-section {
    padding: 4rem 0;
    background: hsl(var(--muted));
}

.section-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-badge-group .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.section-badge-group .text-secondary {
    color: hsl(var(--secondary));
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.offer-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.offer-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

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

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(var(--destructive));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: hsl(var(--secondary));
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.offer-content p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.offer-validity .icon {
    width: 1rem;
    height: 1rem;
}


/* Why Choose Us Section */
.why-choose-us-section {
    padding: 4rem 0;
    background: hsl(var(--background));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    border: 2px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-large);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.1);
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.feature-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* ============================================
   Thank You Page Styles
   ============================================ */

.thankyou-section {
    min-height: 100vh;
    background: linear-gradient(
        to top,
        hsl(0 0% 90%),     /* light gray top */
        hsl(24 100% 92%)   /* peach bottom */
    );
    padding: 5rem 1rem;
}


.thankyou-content {
    max-width: 48rem;
    margin: 0 auto;
}

/* Success Icon */
.success-icon-wrapper {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: hsl(142 76% 95%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    color: hsl(142 76% 36%);
}

.success-icon-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.success-icon-wrapper .subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

/* Confirmation Card */
.confirmation-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-large);
    animation: fadeIn 0.6s ease-out 0.2s backwards;
}

.confirmation-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 1.5rem;
}

.confirmation-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.confirmation-header p {
    color: hsl(var(--muted-foreground));
}

/* Detail Items */
.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--muted) / 0.5);
    border-radius: 0.5rem;
}

.detail-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.detail-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.detail-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.detail-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-link {
    color: hsl(var(--primary));
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Next Steps */
.next-steps {
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

.next-steps h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.next-steps ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.next-steps li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.next-steps .bullet {
    color: hsl(var(--primary));
    margin-top: 0.25rem;
}

/* Action Buttons */
.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 0.6s ease-out 0.4s backwards;
}

.thankyou-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.thankyou-actions .btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-contact{
    background-color: #fff;
    color: #000;
}

.btn-contact:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* Responsive */
@media (min-width: 640px) {
    .success-icon-wrapper h1 {
        font-size: 3rem;
    }

    .thankyou-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .thankyou-section {
        padding: 8rem 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Background */
.enquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Box */
.enquiry-modal {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 18px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    animation: popup 0.35s ease-out;
    position: relative;
}

/* Success Icon */
.success-icon {
    width: 70px;
    height: 70px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 0;
    color: #fff;
}

/* Heading */
.enquiry-modal h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

/* Text */
.enquiry-modal p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   Team Section Styles
   =================================== */
.team-section {
    padding: 5rem 0;
    background-color: hsl(var(--muted));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.section-subheading {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 40rem;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.team-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.team-photo {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.team-role {
    color: hsl(var(--muted-foreground));
}

/* ===================================
   Certifications Section Styles
   =================================== */
.certifications-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.cert-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.cert-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    stroke: hsl(var(--primary));
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.cert-description {
    color: hsl(var(--muted-foreground));
}

/* ===================================
   Partners Section Styles
   =================================== */
.partners-section {
    padding: 5rem 0;
    background-color: hsl(var(--muted));
}

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

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.partner-card:hover {
    box-shadow: var(--shadow-large);
}

.partner-card img {
    max-width: 100%;
    height: 4rem;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ===================================
   Awards Section Styles
   =================================== */
.awards-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.award-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.award-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon svg {
    stroke: hsl(var(--primary));
}

.award-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.award-org {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ================================
   UNIVERSAL COLLAGE + STATS CSS
   (Use on About Page + Index Page)
================================ */

/* Container */
.about-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;         /* adjust if needed */
    margin: 0 auto;
}

/* 2×2 Collage Grid */
.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 360px; /* Ensures all images same height */
    gap: 12px;
    width: 100%;
}

/* Each Collage Image */
.collage-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* STAT CARDS */
.stat-card {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    min-width: 160px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 15;
}

.stat-card .stat-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

/* TOP RIGHT */
.stat-top-right {
    top: 18px;
    right: 18px;
}

/* BOTTOM LEFT */
.stat-bottom-left {
    bottom: 18px;
    left: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .collage-grid {
        grid-template-rows: 180px 180px;
    }
    .stat-card {
        min-width: 130px;
        padding: 10px 14px;
    }
}

/* Terms & Conditions Styles */
.terms-hero {
    position: relative;
    height: 60vh;
    /* background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(217, 91%, 45%) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.terms-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terms-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.terms-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.terms-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .terms-hero-content h1 {
        font-size: 3rem;
    }

    .terms-hero-content p {
        font-size: 1.5rem;
    }
}

.terms-content {
    padding: 4rem 0;
}

.terms-container {
    max-width: 56rem;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 3rem;
}

.terms-intro p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: hsl(215, 16%, 47%);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(222, 47%, 11%);
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terms-text p,
.terms-text li {
    color: hsl(215, 16%, 47%);
    line-height: 1.75;
}

.terms-text strong {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
}

.terms-text ul,
.terms-text ol {
    list-style-type: disc;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.terms-contact {
    padding: 1.5rem;
    background: hsl(210, 40%, 96%);
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

.terms-contact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(222, 47%, 11%);
}

.terms-contact p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    color: hsl(215, 16%, 47%);
}

.contact-details strong {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
}

.terms-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(214, 32%, 91%);
}

.terms-footer p {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

/* Refund Table Styles */
.refund-hero {
    position: relative;
    height: 60vh;
    /* background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(217, 91%, 45%) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.refund-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.refund-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.refund-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.refund-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.refund-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .refund-hero-content h1 {
        font-size: 3rem;
    }

    .refund-hero-content p {
        font-size: 1.5rem;
    }
}

.refund-content {
    padding: 4rem 0;
}

.refund-container {
    max-width: 56rem;
    margin: 0 auto;
}

.refund-intro {
    margin-bottom: 3rem;
}

.refund-intro p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: hsl(215, 16%, 47%);
}

.refund-section {
    margin-bottom: 3rem;
}

.refund-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(222, 47%, 11%);
}

.refund-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.refund-text p,
.refund-text li {
    color: hsl(215, 16%, 47%);
    line-height: 1.75;
}

.refund-text strong {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
}

.refund-text ul,
.refund-text ol {
    list-style-type: disc;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.refund-contact {
    padding: 1.5rem;
    background: hsl(210, 40%, 96%);
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

.refund-contact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(222, 47%, 11%);
}

.refund-contact p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1rem;
}

.refund-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(214, 32%, 91%);
}

.refund-footer p {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

.refund-table {
    background: hsl(210, 40%, 96%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.refund-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.refund-row:not(:last-child) {
    border-bottom: 1px solid hsl(214, 32%, 91%);
}

.refund-header {
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    border-bottom: 2px solid hsl(217, 91%, 60%) !important;
}

.refund-row .charge {
    font-weight: 600;
    color: hsl(222, 47%, 11%);
}

.refund-row .no-refund {
    color: hsl(0, 84%, 60%);
}

/* Tip Box Styles */
.tip-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, hsl(217, 91%, 95%), hsl(217, 91%, 98%));
    border-left: 4px solid hsl(217, 91%, 60%);
    border-radius: 0.5rem;
}

.tip-box p {
    font-size: 0.875rem;
    color: hsl(222, 47%, 11%);
    margin: 0;
}

@media (max-width: 640px) {
    .refund-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .refund-row span:last-child {
        align-self: flex-end;
    }
}

/* privacy Policy Styles */
.privacy-hero {
    position: relative;
    height: 60vh;
    /* background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(217, 91%, 45%) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.privacy-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.privacy-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.privacy-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 3rem;
    }

    .privacy-hero-content p {
        font-size: 1.5rem;
    }
}

.privacy-content {
    padding: 4rem 0;
}

.privacy-container {
    max-width: 56rem;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 3rem;
}

.privacy-intro p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: hsl(215, 16%, 47%);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(222, 47%, 11%);
}

.privacy-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-text p,
.privacy-text li {
    color: hsl(215, 16%, 47%);
    line-height: 1.75;
}

.privacy-text strong {
    color: hsl(222, 47%, 11%);
    font-weight: 600;
}

.privacy-text ul,
.privacy-text ol {
    list-style-type: disc;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-contact {
    padding: 1.5rem;
    background: hsl(210, 40%, 96%);
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

.privacy-contact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(222, 47%, 11%);
}

.privacy-contact p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1rem;
}

.privacy-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(214, 32%, 91%);
}

.privacy-footer p {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

/* Tour Detail Page Specific Styles */

/* Hero Section */
.tour-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.tour-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-hero-content {
  text-align: center;
  color: white;
}

.tour-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tour-hero-location {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Image Gallery */
.tour-gallery {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery-image-main:hover {
  opacity: 0.9;
}

.gallery-image-small {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery-image-small:hover {
  opacity: 0.9;
}

.gallery-view-more {
  height: 12rem;
  width: 100%;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-view-more:hover {
  background: hsl(var(--secondary) / 0.8);
}

/* Main Content */
.tour-detail-content {
  padding: 2rem 0;
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .tour-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tour-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tour-detail-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.tour-detail-card:hover {
    border-color: hsl(var(--primary) / 0.5);
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 8px 32px;
}

.tour-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--card-foreground));
}

/* Quick Info Grid */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .quick-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-info-icon {
  padding: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.5rem;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.currency-symbol {
  font-weight: 700;
  font-size: 1.25rem;
}

.quick-info-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.quick-info-value {
  font-weight: 600;
  color: hsl(var(--card-foreground));
}

/* Tour Planning */
.tour-planning {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tour-stop {
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.5rem;
  font-weight: 500;
  color: hsl(var(--card-foreground));
}

.tour-arrow {
  color: hsl(var(--muted-foreground));
}

.tour-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Description */
.tour-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Tour Lists */
.tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tour-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.icon-check {
  color: #22c55e;
}

.icon-x {
  color: #ef4444;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.highlight-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.icon-highlight {
  color: hsl(var(--primary));
}

/* Itinerary Accordion */
.itinerary-accordion {
  display: flex;
  flex-direction: column;
}

.itinerary-item {
  border-bottom: 1px solid hsl(var(--border));
}

.itinerary-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: hsl(var(--card-foreground));
  transition: all 0.3s ease;
}

.itinerary-trigger:hover {
  text-decoration: none;
}

.itinerary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.itinerary-day-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.itinerary-title {
  font-weight: 600;
  font-size: 1rem;
}

.itinerary-chevron {
  transition: transform 0.3s ease;
}

.itinerary-chevron svg {
  width: 1.25rem;
  height: 1.25rem;
}

.itinerary-item.active .itinerary-chevron {
  transform: rotate(180deg);
}

.itinerary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: hsl(var(--muted-foreground));
  padding-left: 4rem;
}

.itinerary-item.active .itinerary-content {
  max-height: 500px;
  padding-bottom: 1rem;
}

/* Reservation Card */
.reservation-card {
  position: sticky;
  top: 9rem;
}

.booking-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--card-foreground));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--card-foreground));
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Price Summary */
.price-summary {
  padding: 1rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.price-value {
  font-weight: 600;
  color: hsl(var(--card-foreground));
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.price-label-total {
  font-weight: 700;
  color: hsl(var(--card-foreground));
}

.price-value-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

/* Divider */
.divider {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid hsl(var(--border));
}

.divider-text {
  padding: 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--card));
}

/* Enquiry Section */
.enquiry-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: #fff;
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--input));
}

.btn-outline:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Tour Host */
.host-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.host-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.host-details {
  flex: 1;
}

.host-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: hsl(var(--card-foreground));
}

.host-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.host-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.host-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.host-phone:hover {
  color: hsl(var(--primary));
}

.host-phone svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tour-hero-title {
    font-size: 2rem;
  }

  .tour-hero-location {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-image-small {
    height: 10rem;
  }

  .gallery-view-more {
    height: 10rem;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .tour-planning {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-arrow {
    transform: rotate(90deg);
  }

  .reservation-card {
    position: relative;
    top: 0;
  }
}
