/* CSS Variables - Design System */
:root {
    --background: 0 0% 100%;
    --foreground: 220 13% 13%;
    --card: 0 0% 100%;
    --card-foreground: 220 13% 13%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 13% 13%;
    --primary: 199 89% 48%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 199 89% 60%;
    --primary-dark: 199 89% 38%;
    --secondary: 24 95% 53%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 24 95% 65%;
    --accent: 158 64% 52%;
    --accent-foreground: 0 0% 100%;
    --muted: 210 40% 96%;
    --muted-foreground: 220 9% 46%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 199 89% 48%;
    --radius: .75rem;
    --gradient-hero: linear-gradient(135deg, hsl(199 89% 48%) 0%, hsl(158 64% 52%) 100%);
    --gradient-sunset: linear-gradient(135deg, hsl(24 95% 53%) 0%, hsl(35 91% 62%) 100%);
    --gradient-ocean: linear-gradient(180deg, hsl(199 89% 48%) 0%, hsl(199 89% 38%) 100%);
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, .12);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, .16);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-bounce: all .5s cubic-bezier(.68, -.55, .265, 1.55);
}

/* 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);
    white-space: nowrap;
}

#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%;
    padding: 0px 5rem;
}

.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: 1.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

.hero-text p {
    font-size: 0.75rem;
    color: #e5e7eb;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-text p {
        font-size: 1.125rem;
    }
}

.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: 5rem 0;
    background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--muted)/0.4) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-section {
        padding: 7rem 0;
    }
}

.about-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, hsla(var(--primary), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image-container {
    position: relative;
    padding: 1rem;
}



.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.about-content .section-title {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .about-content .section-title {
        font-size: 2.75rem;
    }
}

.about-content .section-description {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.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;
}

/* Decorative Floating Stats */
.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-top-right {
    top: -1.5rem;
    right: -1.5rem;
    animation: float 6s ease-in-out infinite;
}

.stat-bottom-left {
    bottom: 2.5rem;
    left: -2rem;
    animation: float 6s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
    .stat-bottom-left {
        left: 0.5rem;
        bottom: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .stat-top-right {
        right: 0.5rem;
        top: 0.5rem;
        padding: 0.75rem 1rem;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--primary));
    line-height: 1.1;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-icon {
    margin-bottom: 0.25rem;
    display: block;
    object-fit: contain;
}

/* 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 {
    font-size: 1rem;
    color: #d1d5db;
    /* grey for empty */
}

.star.filled {
    color: #facc15;
    /* yellow */
}

/* 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 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    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: 1.5rem 0 0.5rem;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2.5fr 1fr 1fr 1fr;
    }

    /* When social links not present */
    .footer-grid.no-social {
        grid-template-columns: 2fr 1fr 1.3fr;
    }

    .footer-col:last-child {
        padding-left: 100px;
    }
}

.footer-col h4 {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    line-height: 1.4;
    font-size: 0.8rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-logo .company-logo {
    width: 120px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

/* Brand Colors */

.social-icon.facebook i {
    color: #1877F2;
}

.social-icon.instagram i {
    color: #E4405F;
}

.social-icon.twitter i {
    color: #1DA1F2;
}

.social-icon.linkedin i {
    color: #0A66C2;
}

.social-icon.youtube i {
    color: #FF0000;
}

.social-icon.whatsapp i {
    color: #25D366;
}

.social-icon.telegram i {
    color: #0088cc;
}

.social-icon.github i {
    color: #333;
}

.social-icon.tiktok i {
    color: #000;
}

.social-links a:hover {
    background: hsl(var(--primary));
    transform: translateY(-2px);
}

.social-links svg {
    width: 0.875rem;
    height: 0.875rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.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: 0.5rem;
    padding-top: 0.75rem;
    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);
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.75rem;
}

.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: hsl(var(--primary));
    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: hsl(var(--primary));
    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: hsl(var(--primary));
    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-wrap: wrap;
    gap: 0.5rem;
}

.destination-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;
}

.destination-btn:hover {
    background: hsl(210, 40%, 96%);
}

.destination-btn.active {
    background: hsl(var(--primary));
    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: hsl(var(--primary));
}

/* 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: hsl(var(--primary));
    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: hsl(var(--primary));
}

.tour-book-btn {
    padding: 0.5rem 1.25rem;
    background: hsl(var(--primary));
    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: hsl(var(--primary));
}

/* 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%);
}

/* Pagination container */
.ft-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* List reset */
.ft-pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Each item wrapper */
.ft-page-item {
    display: inline-flex;
}

/* Buttons / links look */
.ft-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(32, 124, 255, 0.12);
    /* subtle border */
    background: #fff;
    font-weight: 600;
    color: #1f6feb;
    /* primary text/blue */
    box-shadow: 0 6px 18px rgba(20, 40, 100, 0.04);
    cursor: pointer;
    transition: transform .08s ease, box-shadow .12s ease, background-color .12s ease;
}

/* Hover */
.ft-page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(20, 40, 100, 0.08);
}

/* Active page */
.ft-page-item.active .ft-page-link,
.ft-page-item .ft-page-link.active {
    background: linear-gradient(180deg, #1f6feb 0%, #1870e6 100%);
    /* theme blue */
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(30, 100, 230, 0.18);
}

/* Make arrow smaller & rounded */
.ft-page-arrow {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1;
}

/* Disabled state */
.ft-page-item.disabled .ft-page-link,
.ft-page-item.disabled span.ft-page-link {
    opacity: 0.45;
    cursor: default;
    transform: none;
    box-shadow: none;
}

/* Ellipsis */
.ft-page-item.dots span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: #8a98b8;
    font-weight: 600;
}

/* Responsive: smaller pills on small screens */
@media (max-width: 575px) {
    .ft-page-link {
        min-width: 36px;
        height: 36px;
        border-radius: 10px;
        padding: 0 8px;
        font-size: 14px;
    }

    .ft-pagination-list {
        gap: 8px;
    }
}


/* 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: 8rem;
    }
}

.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: hsl(var(--primary));
    ;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid hsl(var(--primary));
    ;
}

.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: hsl(var(--primary));
}

.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: 8rem;
}

.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: hsl(var(--primary));
}

.contact-form-wrapper .btn-block:hover {
    background: hsl(var(--primary))e6;
}

.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;
}

/* Main dynamic content wrapper */
.terms-html {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Headings spacing */
.terms-html h1,
.terms-html h2,
.terms-html h3,
.terms-html h4 {
    margin-top: 1.2rem;
    margin-bottom: .6rem;
}

/* Paragraph spacing */
.terms-html p {
    margin-bottom: 0.9rem;
}

/* Fix dynamic images */
.terms-html img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix dynamic tables */
.terms-html table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.terms-html th,
.terms-html td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Make table scrollable on small devices */
.terms-html table {
    display: block;
    overflow-x: auto;
}

/* Fix iframes or videos */
.terms-html iframe,
.terms-html video {
    max-width: 100%;
    height: auto;
}

/* Lists spacing */
.terms-html ul,
.terms-html ol {
    margin-left: 1.25rem;
}

/* Contact section spacing */
.terms-contact {
    margin-top: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.terms-container .terms-html h2 {
    font-size: 2rem;
}

.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 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.refund-table th {
    background: #f5f5f5;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.refund-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.refund-table tr:last-child td {
    border-bottom: none;
}

@media(max-width: 600px) {

    .refund-table th,
    .refund-table td {
        font-size: 14px;
        padding: 8px;
    }
}

.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%);
}

/* --- Privacy policy content normalization --- */
.privacy-rendered {
    box-sizing: border-box;
    max-width: 980px;
    /* content column width */
    margin: 0 auto 2.5rem;
    /* center with bottom spacing */
    padding: 1.25rem;
    /* breathing room */
    background: transparent;
    /* keep page background */
    color: #222;
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Prose / content typographic defaults (safe defaults) */
.privacy-rendered .prose h1,
.privacy-rendered .prose h2,
.privacy-rendered .prose h3,
.privacy-rendered .prose h4 {
    font-weight: 700;
    margin: 1.1rem 0 0.5rem;
    line-height: 1.25;
    color: #0f1720;
}

.privacy-rendered .prose p {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #343a40;
}

/* Lists */
.privacy-rendered .prose ul,
.privacy-rendered .prose ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

/* Tables: responsive wrapper + styling */
.privacy-rendered .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1rem;
    display: table;
}

.privacy-rendered .prose table th,
.privacy-rendered .prose table td {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e9ecef;
    text-align: left;
    vertical-align: top;
}

/* Make tables horizontally scrollable on small screens */
.privacy-rendered .prose .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Images: responsive, center them and cap width */
.privacy-rendered .prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.75rem auto;
}

/* Iframes and embeds: responsive */
.privacy-rendered .prose iframe,
.privacy-rendered .prose embed,
.privacy-rendered .prose object,
.privacy-rendered .prose video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.75rem auto;
}

/* Links: open in new tab (JS will add target) and visual color */
.privacy-rendered .prose a {
    color: #0d6efd;
    text-decoration: underline;
}

/* Prevent pasted inline style attributes from blowing layout:
   we hide inline width/style on top-level elements by resetting them (safer fallback).
   This will override many inline style width:1000px etc. */
.privacy-rendered .prose [style] {
    all: initial;
    /* restore minimal properties for readability */
    display: revert;
    color: revert;
    font: revert;
    line-height: revert;
    text-align: revert;
}

/* But allow images keep their src, alt etc. keep display: block */
.privacy-rendered .prose img[style] {
    all: unset;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0.75rem auto;
}

/* Small screens: reduce padding */
@media (max-width: 767px) {
    .privacy-rendered {
        padding: 0.75rem;
        max-width: 92%;
    }
}

.privacy-rendered .prose h2 {
    font-size: 2rem;
}

/* 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;
    }
}


/* Blog Page Styles - Exact match to React version */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .blog-hero {
        height: 60vh;
    }
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.9), hsla(199, 89%, 48%, 0.8), hsla(158, 64%, 52%, 0.7));
    z-index: 10;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-kashmir.jpg');
    background-size: cover;
    background-position: center;
}

.blog-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.8));
}

.blog-hero-badge svg {
    width: 12px;
    height: 12px;
}

.blog-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .blog-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .blog-hero h1 {
        font-size: 3.75rem;
    }
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .blog-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Search Bar */
.blog-search-container {
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
}

.blog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--muted-foreground));
    width: 20px;
    height: 20px;
}

.blog-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1.125rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    outline: none;
}

.blog-search-input:focus {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-search-input::placeholder {
    color: hsl(var(--muted-foreground));
}

/* Quick Stats */
.blog-quick-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-quick-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.blog-quick-stat svg {
    width: 16px;
    height: 16px;
}

/* Category Filter */
.blog-category-filter {
    padding: 1.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    position: sticky;
    top: 64px;
    z-index: 30;
}

.blog-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .blog-category-buttons {
        gap: 0.75rem;
    }
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: transparent;
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    background: hsl(var(--muted));
}

.category-btn.active {
    background: hsl(var(--primary));
    color: white;
    border-color: hsl(var(--primary));
}

.category-btn svg {
    width: 16px;
    height: 16px;
}

.category-btn .full-text {
    display: none;
}

.category-btn .short-text {
    display: inline;
}

@media (min-width: 640px) {
    .category-btn .full-text {
        display: inline;
    }

    .category-btn .short-text {
        display: none;
    }
}

/* Main Content */
.blog-main {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .blog-main {
        padding: 4rem 0;
    }
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Headers */
.blog-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.blog-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-section-title svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary));
}

.blog-section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: hsl(var(--muted));
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
}


/* Blog Comments */
.bd3-comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bd3-border);
}

.bd3-comment-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bd3-border);
}

.bd3-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.bd3-comment-author {
    font-weight: 600;
    color: var(--bd3-foreground);
}

.bd3-comment-date {
    font-size: 0.875rem;
    color: var(--bd3-muted-foreground);
}

.bd3-comment-content {
    color: var(--bd3-foreground);
    line-height: 1.6;
    white-space: pre-line;
}

.bd3-comment-form-container {
    margin-top: 3rem;
    background: var(--bd3-muted);
    padding: 2rem;
    border-radius: 0.75rem;
}

.bd3-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bd3-foreground);
}

.bd3-section-subtitle {
    font-size: 0.875rem;
    color: var(--bd3-muted-foreground);
    margin-bottom: 1.5rem;
}

.bd3-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bd3-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bd3-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bd3-foreground);
}

.bd3-form-group input,
.bd3-form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--bd3-border);
    border-radius: 0.5rem;
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

.bd3-submit-btn {
    background: var(--bd3-primary);
    color: var(--bd3-primary-foreground);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.bd3-submit-btn:hover {
    background: var(--bd3-primary-hover);
}

.bd3-alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.bd3-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
    .bd3-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Article */
.featured-section {
    margin-bottom: 4rem;
}

.featured-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.featured-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-card-inner {
    display: grid;
    gap: 0;
}

@media (min-width: 768px) {
    .featured-card-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .featured-image-container {
        height: 24rem;
    }
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.featured-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .featured-content {
        padding: 2rem;
    }
}

.featured-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .featured-title {
        font-size: 1.875rem;
    }
}

.featured-card:hover .featured-title {
    color: hsl(var(--primary));
}

.featured-excerpt {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-meta svg {
    width: 16px;
    height: 16px;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: hsl(var(--primary));
    color: white;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    width: fit-content;
    text-decoration: none;
}

.featured-btn:hover {
    background: hsl(199, 89%, 38%);
}

.featured-btn svg {
    width: 16px;
    height: 16px;
}

/* Article Grid */
.articles-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .articles-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .articles-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid.cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Article Card */
.article-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.article-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image-container {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.article-image-container.compact {
    height: 9rem;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-new-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content.compact {
    padding: 1rem;
}

.article-category {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.article-title.compact {
    font-size: 1rem;
}

.article-card:hover .article-title {
    color: hsl(var(--primary));
}

.article-excerpt {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: auto;
}

.article-meta span,
.seasonal-content span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-meta svg,
.seasonal-content svg {
    width: 12px;
    height: 12px;
}

/* Seasonal Section */
.seasonal-section {
    margin-bottom: 4rem;
    background: linear-gradient(to right, hsla(199, 89%, 48%, 0.05), hsla(158, 64%, 52%, 0.05), hsla(210, 40%, 96%, 0.5));
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .seasonal-section {
        padding: 2rem;
    }
}

/* Seasonal Card */
.seasonal-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.seasonal-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.seasonal-image-container {
    position: relative;
    height: 8rem;
    overflow: hidden;
}

.seasonal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.seasonal-card:hover .seasonal-image {
    transform: scale(1.1);
}

.seasonal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.seasonal-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seasonal-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasonal-icon svg {
    width: 16px;
    height: 16px;
    color: hsl(var(--primary));
}

.seasonal-name {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.seasonal-content {
    padding: 1rem;
}

.seasonal-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.seasonal-card:hover .seasonal-title {
    color: hsl(var(--primary));
}

.seasonal-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.seasonal-meta svg {
    width: 12px;
    height: 12px;
}

/* News Card */
.news-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image-container {
    position: relative;
    height: 8rem;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-new-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 9999px;
}

.news-content {
    padding: 1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.news-date svg {
    width: 12px;
    height: 12px;
}

.news-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: hsl(var(--primary));
}

.news-excerpt {
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Section Spacing */
.blog-section {
    margin-bottom: 4rem;
}

/* Filtered View */
.filtered-view {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .filtered-view {
        grid-template-columns: 2fr 1fr;
    }
}

.filtered-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.filtered-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.filtered-count {
    padding: 0.25rem 0.75rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.no-results {
    text-align: center;
    padding: 4rem 1rem;
    background: hsla(var(--muted), 0.3);
    border-radius: var(--radius);
}

.no-results svg {
    width: 48px;
    height: 48px;
    color: hsl(var(--muted-foreground));
    margin: 0 auto 1rem;
}

.no-results p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.clear-filters-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: hsl(var(--foreground));
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.clear-filters-btn:hover {
    background: hsl(var(--muted));
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar-card-content {
    padding: 1.5rem;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar-title svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary));
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-title:hover {
    color: hsl(var(--primary));
}

.popular-post-views {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Newsletter Sidebar */
.newsletter-sidebar {
    background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.1), hsla(158, 64%, 52%, 0.1));
}

.newsletter-sidebar p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(var(--primary));
}

.newsletter-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: hsl(var(--primary));
    color: white;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: hsl(199, 89%, 38%);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-widget-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.category-widget-btn:hover {
    background: hsl(var(--accent));
}

.category-widget-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-widget-left svg {
    width: 16px;
    height: 16px;
    color: hsl(var(--primary));
}

.category-widget-left span {
    font-weight: 500;
}

.category-widget-count {
    padding: 0.125rem 0.5rem;
    background: hsl(var(--muted));
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

/* Newsletter CTA */
.newsletter-cta {
    margin-top: 4rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .newsletter-cta {
        padding: 3rem;
    }
}

.newsletter-cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.newsletter-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter-cta h2 {
        font-size: 1.875rem;
    }
}

.newsletter-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-cta-form {
        flex-direction: row;
    }
}

.newsletter-cta-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-cta-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: hsl(var(--secondary));
    color: white;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-cta-btn:hover {
    background: hsl(24, 95%, 43%);
}

.newsletter-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Hidden utility */
.hidden {
    display: none !important;
}


/* Blog Detail 3 - Improved UI */

/* Progress Bar */
.bd3-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bd3-muted);
    z-index: 9999;
}

.bd3-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bd3-primary), var(--bd3-accent));
    transition: width 0.15s ease-out;
    width: 0%;
}

/* Hero Section */
.bd3-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

@media (min-width: 768px) {
    .bd3-hero {
        min-height: 75vh;
    }
}

.bd3-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.bd3-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 1rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bd3-hero-content {
        padding: 0 2rem 4rem;
    }
}

.bd3-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.bd3-back-link:hover {
    color: #ffffff;
}

.bd3-back-link svg {
    width: 1rem;
    height: 1rem;
}

.bd3-category-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.bd3-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

@media (min-width: 768px) {
    .bd3-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .bd3-hero-title {
        font-size: 3.5rem;
    }
}

.bd3-hero-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.bd3-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.bd3-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bd3-author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bd3-author-details p {
    margin: 0;
}

.bd3-author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.bd3-author-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.bd3-article-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.bd3-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.bd3-stat svg {
    width: 1rem;
    height: 1rem;
}

/* Content Section */
.bd3-content-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .bd3-content-section {
        padding: 4rem 0;
    }
}

.bd3-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .bd3-container {
        padding: 0 2rem;
    }
}

.bd3-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .bd3-layout {
        grid-template-columns: 1fr 320px;
    }
}

/* Share Bar */
.bd3-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--bd3-card);
    border: 1px solid var(--bd3-border);
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 5rem;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.bd3-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bd3-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--bd3-muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.bd3-action-btn:hover {
    background: var(--bd3-muted);
    color: var(--bd3-primary);
}

.bd3-action-btn svg {
    width: 1rem;
    height: 1rem;
}

.bd3-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bd3-share-label {
    font-size: 0.875rem;
    color: var(--bd3-muted-foreground);
    margin-right: 0.25rem;
}

.bd3-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--bd3-border);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--bd3-foreground);
}

.bd3-share-btn:hover {
    background: var(--bd3-primary);
    border-color: var(--bd3-primary);
    color: white;
}

.bd3-share-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Article Prose */
.bd3-article-content {
    max-width: none;
}

.bd3-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--bd3-foreground);
}

.bd3-prose .bd3-lead {
    font-size: 1.25rem;
    color: var(--bd3-muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bd3-border);
}

.bd3-prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bd3-foreground);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    scroll-margin-top: 100px;
}

.bd3-prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bd3-foreground);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.bd3-prose p {
    color: var(--bd3-muted-foreground);
    margin-bottom: 1.25rem;
}

.bd3-prose ul,
.bd3-prose ol {
    color: var(--bd3-muted-foreground);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bd3-prose li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.bd3-prose strong {
    color: var(--bd3-foreground);
    font-weight: 600;
}

/* Tags Section */
.bd3-tags-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bd3-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bd3-tags-section svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--bd3-muted-foreground);
}

.bd3-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bd3-muted);
    color: var(--bd3-foreground);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.2s;
}

.bd3-tag:hover {
    background: var(--bd3-primary);
    color: white;
}

/* Author Card */
.bd3-author-card {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(14, 165, 233, 0.05), rgba(245, 245, 245, 0.5));
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bd3-author-card {
        flex-direction: row;
        padding: 2rem;
    }
}

.bd3-author-card-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    object-fit: cover;
    flex-shrink: 0;
}

.bd3-author-card-content {
    flex: 1;
}

.bd3-author-card-label {
    font-size: 0.8125rem;
    color: var(--bd3-muted-foreground);
    margin-bottom: 0.25rem;
}

.bd3-author-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bd3-foreground);
    margin: 0 0 0.5rem 0;
}

.bd3-author-card-bio {
    color: var(--bd3-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.bd3-view-articles-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--bd3-border);
    background: transparent;
    color: var(--bd3-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bd3-view-articles-btn:hover {
    border-color: var(--bd3-primary);
    color: var(--bd3-primary);
}

/* Navigation */
.bd3-navigation {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .bd3-navigation {
        grid-template-columns: 1fr 1fr;
    }
}

.bd3-nav-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    /* 🔥 change */
    align-items: center;
    /* 🔥 align same line */
    gap: 1rem;
    background: var(--bd3-card);
    border: 1px solid var(--bd3-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s;
}

.bd3-nav-card:hover {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.bd3-nav-card-inner {
    display: block;
    align-items: center;
    gap: 1rem;
}

.bd3-nav-card.next .bd3-nav-card-inner {
    margin-left: auto;
    text-align: right;
}

.bd3-nav-card svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--bd3-muted-foreground);
    flex-shrink: 0;
    transition: color 0.2s;
}

.bd3-nav-card:hover svg {
    color: var(--bd3-primary);
}

.bd3-nav-label {
    font-size: 0.75rem;
    color: var(--bd3-muted-foreground);
    margin-bottom: 0.25rem;
}

.bd3-nav-title {
    font-weight: 500;
    color: var(--bd3-foreground);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bd3-nav-card:hover .bd3-nav-title {
    color: var(--bd3-primary);
}

/* Sidebar */
.bd3-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bd3-sidebar-card {
    background: var(--bd3-card);
    border: 1px solid var(--bd3-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.bd3-sidebar-card.sticky {
    /* position: sticky; */
    top: 6rem;
}

.bd3-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bd3-foreground);
}

.bd3-sidebar-title svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--bd3-primary);
}

/* TOC */
.bd3-toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bd3-toc-link {
    display: block;
    font-size: 0.875rem;
    color: var(--bd3-muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.bd3-toc-link:hover {
    color: var(--bd3-primary);
    border-left-color: var(--bd3-primary);
    background: rgba(249, 115, 22, 0.05);
}

/* Related Articles */
.bd3-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bd3-related-item {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.bd3-related-item:hover .bd3-related-title {
    color: var(--bd3-primary);
}

.bd3-related-image {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

.bd3-related-content {
    min-width: 0;
}

.bd3-related-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bd3-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    margin-bottom: 0.25rem;
}

.bd3-related-meta {
    font-size: 0.75rem;
    color: var(--bd3-muted-foreground);
}

/* Responsive */
@media (max-width: 640px) {
    .bd3-share-label {
        display: none;
    }

    .bd3-action-btn span {
        display: none;
    }
}

/* ==================== Testimonials Page Styles ==================== */

/* Testimonials Hero */
.testimonials-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-kashmir.jpg');
    background-size: cover;
    background-position: center;
}

.testimonials-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.testimonials-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.testimonials-hero .hero-badge {
    display: inline-block;
    background: hsl(var(--primary) / 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-hero h1 {
        font-size: 3.5rem;
    }

    .testimonials-hero p {
        font-size: 1.25rem;
    }
}

/* Stats Section */
.testimonials-stats {
    padding: 3rem 0;
    background: hsl(var(--primary));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonials-stat-item .testimonials-stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.testimonials-stat-item .testimonials-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .testimonials-stat-item .testimonials-stat-value {
        font-size: 2.5rem;
    }
}

/* External Reviews Section */
.external-reviews {
    padding: 3rem 0;
    background: hsl(var(--muted) / 0.3);
}

.external-reviews .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.external-reviews .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.external-reviews .section-header p {
    color: hsl(var(--muted-foreground));
}

.external-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.platform-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.platform-icon.google {
    background: #4285F4;
}

.platform-icon.tripadvisor {
    background: #00AF87;
}

.platform-icon.trustpilot {
    background: #00B67A;
}

.platform-info .platform-name {
    font-weight: 600;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.platform-rating .star {
    color: #FBBF24;
}

.external-link {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* Video Testimonials */
.video-testimonials {
    padding: 4rem 0;
    background: white;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge .badge-icon {
    margin-right: 0.5rem;
}

.video-testimonials h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-testimonials .section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumbnail img,
.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* pointer-events: none; */
    /* click parent pe rahe */
}

.video-card:hover .video-thumbnail img,
.video-card:hover .video-thumbnail video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(var(--primary));
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.video-info {
    padding: 1rem;
}

.video-info h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.video-info p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Photo Gallery */
.photo-gallery {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.3);
}

.photo-gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.photo-gallery h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.photo-gallery .section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-name {
    color: white;
    font-weight: 600;
}

.gallery-trip {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Written Reviews Section */
.written-reviews {
    padding: 4rem 0;
    background: white;
}

.written-reviews .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.written-reviews h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.written-reviews .section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

/* Review Filters */
.review-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-icon {
    color: hsl(var(--muted-foreground));
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.filter-btn.active {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: white;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: white;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-large);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.author-name-row h4 {
    font-weight: 700;
    margin: 0;
}

.verified-badge {
    font-size: 0.625rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.location-icon {
    font-size: 0.75rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-top: 0.25rem;
}

.review-stars .star {
    color: #D1D5DB;
}

.review-stars .star.filled {
    color: #FBBF24;
}

.review-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 1rem;
}

.review-photo {
    margin-bottom: 1rem;
}

.review-photo img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.review-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon {
    font-size: 0.875rem;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.helpful-btn:hover {
    color: hsl(var(--primary));
}

/* Load More */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Testimonials CTA */
.testimonials-cta {
    padding: 4rem 0;
    background: hsl(var(--primary));
    color: white;
    text-align: center;
}

.testimonials-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-light {
    background: white;
    color: hsl(var(--primary));
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .testimonials-cta h2 {
        font-size: 2.5rem;
    }
}