  
    img.logo {
    width: 173px;
    height: 77px;
}


        :root {
            --sand-beige: #f4e9d8;
            --royal-gold: #d4af37;
            --desert-brown: #a0522d;
            --night-blue: #0f1a2c;
            --light-sand: #f9f5eb;
            --gold-light: #f2e8c9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background-color: var(--light-sand);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--night-blue);
        }
        
        /* Glassmorphism Effect */
        .glass-card {
            background: rgba(244, 233, 216, 0.25);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 8px 32px rgba(160, 82, 45, 0.1);
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .glass-card:hover {
            box-shadow: 0 12px 40px rgba(160, 82, 45, 0.15);
            transform: translateY(-5px);
        }
        
        /* Navbar */
        .navbar {
            background: rgba(15, 26, 44, 0.9);
            backdrop-filter: blur(10px);
            padding: 1px 0;
            transition: all 0.3s;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 28px;
            color: var(--royal-gold) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--sand-beige) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--royal-gold) !important;
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(15, 26, 44, 0.7), rgba(160, 82, 45, 0.4)), 
                        url('bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .typed-text {
            color: var(--royal-gold);
            font-weight: 600;
        }
        
        .btn-gold {
            background-color: var(--royal-gold);
            color: var(--night-blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #e6c02e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: var(--royal-gold);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid var(--royal-gold);
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        
        /* Section Styling */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--royal-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Package Cards */
        .package-card {
            height: 100%;
            overflow: hidden;
        }
        
        .package-img {
            height: 220px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
            width: 100%;
        }
        
        .package-price {
            color: var(--royal-gold);
            font-size: 1.8rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .inclusion-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .inclusion-list li {
            padding: 5px 0;
            border-bottom: 1px dashed rgba(160, 82, 45, 0.2);
        }
        
        .inclusion-list li i {
            color: var(--royal-gold);
            margin-right: 10px;
        }
        
        /* Safari Experience */
        .safari-card {
            text-align: center;
            padding: 30px 20px;
            height: 100%;
        }
        
        .safari-icon {
            font-size: 3rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
        }
        
        /* Testimonials */
        .testimonial-card {
            padding: 30px;
            margin: 15px;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--royal-gold);
            margin-bottom: 20px;
        }
        
        .rating {
            color: var(--royal-gold);
            margin-bottom: 15px;
        }
        
        /* Booking Form */
        .booking-form {
            padding: 40px;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--royal-gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        /* Footer */
        .footer {
            background-color: var(--night-blue);
            color: var(--sand-beige);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--royal-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--sand-beige);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--royal-gold);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--royal-gold);
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--royal-gold);
            color: var(--night-blue);
            transform: translateY(-5px);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .float-btn {
            text-decoration-line: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: var(--royal-gold);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .booking-form {
                padding: 30px 20px;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Lazy Load Image */
        .lazy-img {
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        .lazy-img.loaded {
            opacity: 1;
        }
        
        
                /* Hero Section */
        .contact-hero {
            height: 60vh;
            background: linear-gradient(rgba(15, 26, 44, 0.8), rgba(160, 82, 45, 0.6)), 
                        url('bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-gold {
            background-color: var(--royal-gold);
            color: var(--night-blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #e6c02e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: var(--royal-gold);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid var(--royal-gold);
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--royal-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Contact Info Cards */
        .contact-info-card {
            text-align: center;
            padding: 40px 30px;
            height: 100%;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Form */
        .contact-form {
            padding: 40px;
        }
        
        .form-control, .form-select, textarea {
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-control:focus, .form-select:focus, textarea:focus {
            border-color: var(--royal-gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
            background: rgba(255, 255, 255, 0.9);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Quick Contact Section */
        .quick-contact-section {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .quick-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quick-contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .quick-contact-icon i {
            font-size: 1.5rem;
            color: var(--royal-gold);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(160, 82, 45, 0.15);
            height: 400px;
        }
        
        .map-placeholder {
            height: 100%;
            background: linear-gradient(rgba(15, 26, 44, 0.1), rgba(160, 82, 45, 0.1)), 
                        url('desert.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button {
            background-color: rgba(244, 233, 216, 0.3);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: var(--night-blue);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--night-blue);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            border-color: var(--royal-gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .accordion-button::after {
            background-color: var(--royal-gold);
        }
        
        /* Business Hours */
        .hours-section {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .hours-table {
            width: 100%;
        }
        
        .hours-table tr {
            border-bottom: 1px solid rgba(160, 82, 45, 0.2);
        }
        
        .hours-table td {
            padding: 15px 0;
        }
        
        .hours-table td:first-child {
            font-weight: 600;
        }
        
        .hours-table td:last-child {
            text-align: right;
        }
        
        /* Response Time Card */
        .response-card {
            padding: 30px;
            text-align: center;
        }
        
        .response-icon {
            font-size: 3rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--night-blue);
            color: var(--sand-beige);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--royal-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--sand-beige);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--royal-gold);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--royal-gold);
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--royal-gold);
            color: var(--night-blue);
            transform: translateY(-5px);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: var(--royal-gold);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .quick-contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .quick-contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Success Message */
        .success-message {
            display: none;
            padding: 20px;
            background-color: rgba(76, 175, 80, 0.1);
            border: 1px solid #4caf50;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #2e7d32;
        }
        
         
        /* Hero Section */
        .about-hero {
            height: 70vh;
            background: linear-gradient(rgba(15, 26, 44, 0.8), rgba(160, 82, 45, 0.5)), 
                        url('bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-gold {
            background-color: var(--royal-gold);
            color: var(--night-blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #e6c02e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        /* About Intro Section */
        .about-intro {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--royal-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .highlight-text {
            color: var(--royal-gold);
            font-weight: 600;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .service-card {
            height: 100%;
            text-align: center;
            padding: 30px 20px;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-list {
            list-style: none;
            padding-left: 0;
            text-align: left;
        }
        
        .service-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(160, 82, 45, 0.2);
            position: relative;
            padding-left: 30px;
        }
        
        .service-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--royal-gold);
            font-weight: bold;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--royal-gold);
            margin-bottom: 20px;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            height: 100%;
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(15, 26, 44, 0.9), rgba(160, 82, 45, 0.8)), 
                        url('desert.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: var(--royal-gold);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid var(--royal-gold);
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        
        /* Footer */
        .footer {
            background-color: var(--night-blue);
            color: var(--sand-beige);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--royal-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--sand-beige);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--royal-gold);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--royal-gold);
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--royal-gold);
            color: var(--night-blue);
            transform: translateY(-5px);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: var(--royal-gold);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
          /* Hero Section */
        .packages-hero {
            height: 60vh;
            background: linear-gradient(rgba(15, 26, 44, 0.8), rgba(160, 82, 45, 0.6)), 
                        url('bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-gold {
            background-color: var(--royal-gold);
            color: var(--night-blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #e6c02e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: var(--royal-gold);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid var(--royal-gold);
            transition: all 0.3s;
        }
        
        .btn-outline-gold:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        
        /* Packages Section */
        .packages-section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--royal-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Package Cards */
        .package-card {
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--royal-gold);
            color: var(--night-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .package-img {
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .package-price {
            color: var(--royal-gold);
            font-size: 2rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .price-period {
            font-size: 1rem;
            color: #666;
            font-weight: normal;
        }
        
        .inclusion-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 25px;
        }
        
        .inclusion-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(160, 82, 45, 0.2);
            position: relative;
            padding-left: 30px;
        }
        
        .inclusion-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--royal-gold);
            font-weight: bold;
        }
        
        .exclusion-list li:before {
            content: '✗';
            color: #999;
        }
        
        /* Package Comparison */
        .comparison-section {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(160, 82, 45, 0.1);
        }
        
        .comparison-table th {
            background-color: var(--night-blue);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(160, 82, 45, 0.1);
            text-align: center;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: rgba(244, 233, 216, 0.2);
        }
        
        .comparison-table .feature-name {
            text-align: left;
            font-weight: 600;
        }
        
        .check-icon {
            color: var(--royal-gold);
            font-size: 1.2rem;
        }
        
        .cross-icon {
            color: #ccc;
            font-size: 1.2rem;
        }
        
        /* Package Tabs */
        .package-tabs {
            margin-bottom: 40px;
        }
        
        .package-tabs .nav-link {
            color: var(--night-blue);
            font-weight: 500;
            padding: 12px 25px;
            border-radius: 50px;
            margin: 0 5px;
            background-color: rgba(244, 233, 216, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .package-tabs .nav-link.active {
            background-color: var(--royal-gold);
            color: var(--night-blue);
            border-color: var(--royal-gold);
        }
        
        /* Seasonal Offers */
        .offers-section {
            padding: 80px 0;
        }
        
        .offer-card {
            text-align: center;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .offer-badge {
            position: absolute;
            top: 20px;
            left: -30px;
            background: var(--desert-brown);
            color: white;
            padding: 5px 30px;
            transform: rotate(-45deg);
            font-weight: 600;
            width: 150px;
            text-align: center;
        }
        
        .offer-icon {
            font-size: 3rem;
            color: var(--royal-gold);
            margin-bottom: 20px;
        }
        
        .offer-highlight {
            color: var(--desert-brown);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        /* Booking Process */
        .booking-process {
            padding: 80px 0;
            background-color: rgba(244, 233, 216, 0.3);
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--royal-gold);
            color: var(--night-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button {
            background-color: rgba(244, 233, 216, 0.3);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: var(--night-blue);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--night-blue);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            border-color: var(--royal-gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .accordion-button::after {
            background-color: var(--royal-gold);
        }
        
        /* CTA Section */
        
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--night-blue);
            color: var(--sand-beige);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--royal-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--sand-beige);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--royal-gold);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--royal-gold);
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--royal-gold);
            color: var(--night-blue);
            transform: translateY(-5px);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: var(--royal-gold);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .package-tabs .nav-link {
                padding: 10px 15px;
                margin: 5px;
                font-size: 0.9rem;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }