/* Enhanced Navigation from tours.html */
/* Enhanced Navigation */
/* Tour Button with Tag */
.tour-nav-item {
            position: relative;
        }
.tour-tag {
            position: absolute;
            top: -8px;
            right: -5px;
            background: var(--gold);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
/* Hero + Stats shared background */
.hero-stats-wrap {
            background: var(--hero-bg-desktop);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
/* Hero Section */
.hero-section {
            background: transparent;
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            margin-top: -70px; /* Offset for fixed nav */
        }
.hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e6b325' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
        }
.hero-section > .container {
            position: relative;
            z-index: 1;
        }
.hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
.hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
/* Shared hero background */
:root {
            --hero-bg-desktop: url('../img/tours/all-tours/cape-peninsula-3.jpg');
            --hero-bg-mobile: linear-gradient(rgba(10, 10, 30, 0.85), rgba(10, 10, 30, 0.9)), url('../img/tours/day-tours/cape-town-city-1.jpg');
        }
/* Stats Section */
.stats-section {
            background: transparent;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
.stats-section > .container {
            position: relative;
            z-index: 1;
        }
.stat-item {
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }
.stat-item:hover {
            transform: translateY(-5px);
        }
.stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }
/* About Section */
.about-section {
            padding: 100px 0;
            background-color: white;
        }
.about-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
        }
.about-content .lead {
            font-size: 1.2rem;
            font-weight: 500;
        }
.about-content p + p {
            margin-top: 1rem;
        }
/* Luxury Tours Section */
.luxury-tours-section {
            padding: 100px 0;
            background-color: var(--light);
        }
.tour-example-card {
            background: white;
            border-radius: 12px;
            padding: 30px 24px;
            text-align: center;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
.tour-example-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
            border-color: var(--gold);
        }
.tour-example-icon {
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
.tour-example-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
/* READY TO EXPLORE SECTION with Logo Image Background */
.explore-section {
            padding: 150px 0;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 700px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
.logo-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.15; /* Subtle background effect */
            background-image: url('../img/ONYX_logo-removebg-preview.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            background-attachment: fixed;
        }
.logo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.8) 100%);
            z-index: 2;
        }
.explore-content {
            text-align: center;
            position: relative;
            z-index: 3;
            width: 100%;
        }
.explore-title {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
.explore-subtitle {
            font-size: 1.4rem;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
.explore-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
        }
.explore-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px); /* Safari support */
            border-radius: 15px;
            padding: 30px;
            width: 280px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
.explore-feature:hover {
            transform: translateY(-15px) scale(1.03);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
.explore-feature-icon {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
.explore-feature h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: white;
        }
.explore-feature p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
        }
.explore-cta {
            margin-top: 60px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
/* Services Section - UPDATED WITH PRICES */
.services-section, .tours-section, .booking-section {
            padding: 100px 0;
        }
.services-section {
            background-color: var(--light);
        }
.tours-section {
            background-color: white;
        }
.booking-section {
            background-color: var(--gray);
        }
/* CONTACT SECTION with Logo Background */
.contact-section {
            padding: 100px 0;
            color: white;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
        }
.contact-logo-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.1; /* Very subtle for contact section */
            background-image: url('../img/ONYX_logo-removebg-preview.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            background-attachment: fixed;
        }
.contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
            z-index: 2;
        }
.contact-container {
            position: relative;
            z-index: 3;
        }
.section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
.section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
.section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
/* Contact section specific title */
.contact-section .section-title h2 {
            color: white;
        }
.contact-section .section-title h2::after {
            background: var(--gold);
        }
/* Updated Service Cards with Prices */
.service-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
            position: relative;
        }
.service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--gold);
        }
.service-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 1.2rem;
        }
.service-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
.service-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
.service-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
.service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }
/* Tour Cards with Slideshow */
.tour-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
.tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
.tour-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
        }
.tour-slideshow {
            height: 220px;
            position: relative;
            overflow: hidden;
        }
.tour-slideshow img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
        }
.tour-slideshow img:not(.active) {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
        }
.slideshow-controls {
            position: absolute;
            bottom: 15px;
            right: 15px;
            display: flex;
            gap: 8px;
        }
.slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
.slide-dot.active {
            background: white;
            transform: scale(1.2);
        }
.tour-content {
            padding: 25px;
        }
.tour-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
.tour-price {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.3rem;
        }
.tour-duration {
            color: #666;
            font-size: 0.9rem;
        }
.tour-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
.tour-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
.tour-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }
.tour-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
.quick-view-btn {
            flex: 1;
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
.quick-view-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
.book-now-btn {
            flex: 1;
            background: var(--gold);
            color: var(--primary);
            border: none;
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
.book-now-btn:hover {
            background: #d19c1f;
            transform: translateY(-2px);
            color: var(--primary);
        }
/* Booking Section - UPDATED WITH ALL SERVICES */
.booking-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
.booking-form {
            padding: 40px;
        }
.form-control-custom, .form-select-custom {
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }
.form-control-custom:focus, .form-select-custom:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.25rem rgba(230, 179, 37, 0.25);
        }
#bookingCalendar {
            padding: 40px;
            background: var(--primary);
            color: white;
            height: 100%;
        }
/* Calendar Customization */
.fc {
            background: white;
            padding: 20px;
            border-radius: 10px;
        }
.fc-toolbar-title {
            color: var(--primary);
            font-weight: 700;
        }
.fc-button-primary {
            background-color: var(--accent) !important;
            border-color: var(--accent) !important;
        }
.fc-button-primary:hover {
            background-color: var(--primary) !important;
            border-color: var(--primary) !important;
        }
.fc-daygrid-day.selected-date .fc-daygrid-day-frame {
            background: rgba(230, 179, 37, 0.2);
            box-shadow: inset 0 0 0 2px var(--gold);
            border-radius: 6px;
        }
/* WhatsApp & Email Floaters */
/* Contact Section Form */
.contact-form-container {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
/* Footer with Enhanced Logo from tours.html */
footer {
            background-color: #000;
            color: var(--gold);
            padding: 70px 0 20px;
        }
.footer-logo-container {
            width: 120px;
            height: 90px;
            border-radius: 8px;
            overflow: hidden;
            border: none;
            margin-bottom: 20px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
.footer-logo-container img,
.footer-logo-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
.footer-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }
.social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
.social-icons a:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-5px);
        }
.footer-links h5 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
.footer-links h5::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }
.footer-links ul {
            list-style: none;
            padding: 0;
        }
.footer-links ul li {
            margin-bottom: 12px;
        }
.footer-links ul li a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
.footer-links ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
.copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gold);
        }
/* Quick View Modal - Enhanced from tours.html */
.quick-view-modal .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }
.quick-view-modal .modal-header {
            background: var(--primary);
            color: white;
            border-bottom: 2px solid var(--gold);
            padding: 20px 30px;
        }
.quick-view-modal .modal-header .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }
.quick-view-modal .modal-body {
            padding: 0;
        }
.modal-slideshow-container {
            position: relative;
            height: 350px;
            overflow: hidden;
        }
.modal-slideshow {
            height: 100%;
            position: relative;
        }
.modal-slideshow img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
        }
.modal-slideshow img:not(.active) {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
        }
.modal-slideshow-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }
.modal-slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
.modal-slide-dot.active {
            background: white;
            transform: scale(1.3);
        }
.modal-tour-details {
            padding: 30px;
        }
.modal-price-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
.modal-price {
            font-size: 1.8rem;
            color: var(--accent);
            font-weight: 700;
        }
.modal-duration {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
.modal-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
.modal-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
.modal-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(230, 179, 37, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
        }
.modal-includes-section {
            background: rgba(230, 179, 37, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
.modal-includes-section h6 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.modal-includes-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.modal-includes-list li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
.modal-includes-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }
.modal-footer-actions {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
/* Animations */
.fade-in {
            animation: fadeIn 0.8s ease-out;
        }
.pulse-animation {
            animation: pulse 2s infinite;
        }
@keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
@keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
/* Responsive */
@media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .explore-title {
                font-size: 2.8rem;
            }
            
            .services-section, .tours-section, .booking-section, .contact-section, .explore-section {
                padding: 70px 0;
            }
            
            .explore-section {
                min-height: 600px;
            }
            
            .logo-image-container {
                width: 130px;
                height: 100px;
            }
            
            .whatsapp-float, .email-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: calc(16px + env(safe-area-inset-bottom));
                right: calc(16px + env(safe-area-inset-right));
            }
            
            .email-float {
                bottom: calc(78px + env(safe-area-inset-bottom));
            }
            
            .modal-slideshow-container {
                height: 300px;
            }
            
            .modal-features-grid {
                grid-template-columns: 1fr;
            }
        }
@media (max-width: 768px) {
            #bookingCalendar {
                padding: 24px;
            }

            .fc {
                padding: 12px;
            }

            .fc-toolbar {
                flex-direction: column;
                gap: 8px;
            }

            .fc-toolbar-title {
                font-size: 1.25rem;
                text-align: center;
            }

            .fc .fc-toolbar-chunk {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 6px;
            }

            .fc .fc-button-group {
                flex-wrap: wrap;
            }

            .fc .fc-button {
                padding: 0.3rem 0.55rem;
                font-size: 0.85rem;
            }

            .fc .fc-header-toolbar {
                margin-bottom: 0.75rem;
            }

            .hero-stats-wrap {
                background: transparent;
                background-attachment: scroll;
            }

            .hero-section {
                background: var(--hero-bg-mobile);
                background-size: cover;
                background-position: center;
                background-attachment: scroll;
            }

            .stats-section {
                background: var(--primary);
            }

            .stats-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e6b325' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
                opacity: 0.25;
                pointer-events: none;
            }

            .stats-section > .container {
                position: relative;
                z-index: 1;
            }

            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .explore-title {
                font-size: 2.2rem;
            }
            
            .explore-subtitle {
                font-size: 1.2rem;
            }
            
            .explore-section {
                min-height: 550px;
                padding: 100px 0;
            }

            /* Mobile-specific background image optimization */
            .logo-background, .contact-logo-background {
                background-attachment: scroll; /* Remove fixed on mobile */
                background-size: 80%; /* Slightly smaller on mobile */
                opacity: 0.1; /* Adjust opacity for mobile */
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .tour-actions {
                flex-direction: column;
            }
            
            .modal-slideshow-container {
                height: 250px;
            }
            
            .modal-footer-actions {
                flex-direction: column;
            }
            
            .tour-tag {
                top: -5px;
                right: 0;
                font-size: 0.6rem;
                padding: 1px 4px;
            }
            
            .explore-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .explore-cta .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .contact-form-container {
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
            }
        }
@media (max-width: 576px) {
            body {
                padding-top: 60px;
            }
            
            .hero-section {
                margin-top: -60px;
                padding: 120px 0 80px;
            }
            
            .explore-title {
                font-size: 1.8rem;
            }
            
            .explore-subtitle {
                font-size: 1.1rem;
            }
            
            .explore-section {
                min-height: 500px;
                padding: 80px 0;
            }
            
            /* Mobile-specific adjustments */
            .logo-background, .contact-logo-background {
                background-size: 70%; /* Even smaller on mobile */
                opacity: 0.01; /* Very subtle on small screens */
            }
            
            .modal-slideshow-container {
                height: 200px;
            }
            
            .tour-tag {
                display: none;
            }
            
            .logo-image-container {
                width: 120px;
                height: 90px;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }

            .whatsapp-float, .email-float {
                bottom: calc(90px + env(safe-area-inset-bottom));
                right: calc(16px + env(safe-area-inset-right));
            }

            .email-float {
                bottom: calc(150px + env(safe-area-inset-bottom));
            }

            .explore-features {
                flex-direction: column;
                align-items: center;
            }
            
            .explore-feature {
                width: 100%;
                max-width: 300px;
            }
            
            .explore-cta .btn {
                padding: 15px 20px;
                font-size: 0.9rem;
            }
            
            .contact-section .section-title h2 {
                font-size: 2rem;
            }
        }
/* Special mobile handling */
@media (max-width: 768px) and (orientation: portrait) {
            .logo-background, .contact-logo-background {
                background-size: 70%;
            }
        }
@media (max-width: 768px) and (orientation: landscape) {
            .logo-background, .contact-logo-background {
                background-size: 50%;
            }
            
            .explore-section {
                min-height: 400px;
            }
        }
