/* Core Design System */
:root {
    --primary: #ff6600; /* Vibrant Orange */
    --primary-dark: #cc5200;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #ff9933;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

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

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

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

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

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Single Tour Layout */
.single-tour-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-image-viewport {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.main-image-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumb-item {
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.thumb-item.active {
    border-color: var(--primary) !important;
    opacity: 1;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.spec-item {
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-2px);
}

.spec-item strong {
    color: var(--text-muted);
}

.tour-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.booking-widget-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Gallery Indicators (hidden by default on desktop) */
.gallery-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.gallery-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-indicators .dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

/* Innovative 3D Stacked Card Gallery */
.gallery-stack-container {
    position: relative;
    max-width: 420px;
    height: 440px;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    padding-top: 2rem;
}

.gallery-card-deck {
    position: relative;
    width: 100%;
    height: 380px;
    transform-style: preserve-3d;
}

.gallery-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--bg-card);
    transform-origin: center bottom;
    user-select: none;
    touch-action: none;
    cursor: grab;
}

.gallery-card:active {
    cursor: grabbing;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Stack Controls & Indicators */
.gallery-stack-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stack-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-btn:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

.stack-info {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Premium Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-next:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}

/* Sleek Language Dropdown Selector */
.lang-dropdown-container {
    position: relative;
    display: inline-block;
    z-index: 1002;
}

.lang-dropdown-trigger {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
}

.lang-dropdown-menu {
    position: absolute;
    top: 130%;
    right: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.4rem;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1003;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-dropdown-item:hover {
    background: rgba(255, 102, 0, 0.08);
    color: #fff;
}

.lang-dropdown-item.active {
    color: var(--primary);
    background: rgba(255, 102, 0, 0.04);
    font-weight: 700;
}

.lang-dropdown-item.active::after {
    content: "✓";
    font-size: 0.75rem;
    color: var(--primary);
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-tour-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    .main-image-viewport {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        padding: 6rem 2rem;
        transition: var(--transition);
        text-align: center;
        gap: 2rem;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .lang-dropdown-container {
        margin-right: 0.75rem;
    }
    .lang-dropdown-trigger {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.35rem;
    }
    .lang-dropdown-menu {
        top: 125%;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem !important;
        padding: 0 2rem;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    .gallery-grid {
        display: none !important;
    }
    .gallery-stack-container {
        display: flex !important;
    }
    .gallery-stack-controls {
        display: flex !important;
    }
    .gallery-indicators {
        display: none !important;
    }
    .lightbox-prev, .lightbox-next {
        bottom: 5rem;
        top: auto;
        transform: none;
    }
    .lightbox-prev {
        left: calc(50% - 4.5rem);
    }
    .lightbox-next {
        right: calc(50% - 4.5rem);
    }
    .lightbox-prev:hover, .lightbox-next:hover {
        transform: scale(1.08);
    }
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3rem;
    }
    .single-tour-container {
        padding: 1.5rem;
    }
    .main-image-viewport {
        height: 250px;
    }
    .thumb-item {
        height: 60px;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .spec-item[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
    .tour-pricing-action {
        flex-direction: column;
        align-items: stretch !important;
        text-align: center;
        gap: 1.5rem !important;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

/* Reviews & Features Modern Grid Refactoring */
.features {
    background: var(--bg-card);
    padding: 6rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    margin-bottom: 5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 102, 0, 0.15);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-item span.feature-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.75;
    font-style: italic;
    margin-top: -0.25rem;
}

/* Premium Google Reviews Showcase */
.booking-reviews-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.reviews-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.reviews-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reviews-subheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.reviews-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    color: #ffcc00;
    font-weight: 600;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.25rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.35) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.1);
}

.review-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.review-author-name {
    color: #fff;
    display: block;
    font-size: 0.95rem;
}

.review-verified {
    color: #4cd137;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-quote-icon {
    font-size: 1.5rem;
    opacity: 0.15;
    position: absolute;
    right: 2rem;
    top: 2rem;
    user-select: none;
}

.review-stars {
    color: #ffcc00;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Tour Section Grid Extracts */
.tour-gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

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

.tour-pricing-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* Contact Section Grid Extracts */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.contact-form-container {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
}

/* Premium Glassmorphic Review CTA Button */
.btn-review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    text-decoration: none;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-review-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.btn-review-cta:hover::before {
    left: 100%;
}

.btn-review-cta:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35), 0 0 15px rgba(255, 102, 0, 0.15);
}

.btn-review-cta svg {
    stroke: var(--primary);
    transition: var(--transition);
}

.btn-review-cta:hover svg {
    stroke: #fff;
    transform: scale(1.15) rotate(10deg);
}

/* Premium Mobile Media Query Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem !important; /* Save horizontal space on narrow screens */
    }
    
    .booking-widget-wrapper {
        padding: 1.5rem 1rem !important;
        border-radius: 12px;
    }
    
    .features {
        padding: 4rem 0 !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        margin-bottom: 3.5rem !important;
    }
    
    .feature-item {
        padding: 1.25rem 1rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-color: var(--glass-border) !important;
        gap: 0.5rem !important;
    }
    
    .booking-reviews-section {
        padding-top: 3.5rem !important;
    }
    
    .reviews-header {
        margin-bottom: 2.25rem !important;
    }
    
    .reviews-title {
        font-size: 1.8rem !important;
    }
    
    .reviews-rating-bar {
        font-size: 1rem !important;
        flex-direction: column !important;
        gap: 0.35rem !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .review-card {
        padding: 1.5rem !important;
    }
    
    .thumbnail-row {
        gap: 0.5rem !important;
    }
    
    .tour-pricing-action {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 1.25rem !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info-card, .contact-form-container {
        padding: 1.75rem 1.25rem !important;
        border-radius: 12px !important;
    }
}

/* --- Premium WhatsApp Booking Form CSS --- */
.premium-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    pointer-events: none;
    opacity: 0.8;
}

.premium-booking-form input[type="text"],
.premium-booking-form input[type="tel"],
.premium-booking-form input[type="email"],
.premium-booking-form input[type="date"],
.premium-booking-form select {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 2.8rem;
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.premium-booking-form input:focus,
.premium-booking-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 30, 30, 0.75);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}

/* Custom styles for select option drop-down arrow */
.premium-booking-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.premium-booking-form select option {
    background-color: var(--bg-card);
    color: #fff;
    padding: 10px;
}

/* Quads Counters Styling */
.quads-counters-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    .quads-counters-container {
        grid-template-columns: 1fr;
    }
}

.quad-counter-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.quad-counter-card:hover {
    border-color: rgba(255, 102, 0, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.quad-counter-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quad-type-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.quad-type-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.quad-type-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 0.35rem;
    border-radius: 30px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    user-select: none;
}

.counter-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    min-width: 20px;
    text-align: center;
}

/* Total Price Area */
.total-price-display {
    background: rgba(255, 102, 0, 0.05);
    border: 1px dashed rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.total-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

/* WhatsApp Booking CTA Button */
.btn-whatsapp-booking {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    border: none;
    transition: var(--transition);
}

.btn-whatsapp-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    filter: brightness(1.1);
}

.btn-whatsapp-booking:active {
    transform: translateY(-1px);
}

.whatsapp-btn-icon {
    display: flex;
    align-items: center;
    animation: whatsappPulse 2s infinite ease-in-out;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}


