/* Modern Typography System */
:root {
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Inter', sans-serif;
}

/* Global Typography */
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #2c3e50;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.lead {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.7;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

/* Enhanced Typography for Tourism */
.display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

/* Button Typography */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

/* Price Typography */
.price {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Testimonial Typography */
.testimonial-card .card-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* FAQ Typography */
.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
}

/* Weather Widget Typography */
.weather-widget h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.temperature {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Customer Gallery Typography */
.customer-photo .photo-info {
    font-family: var(--font-body);
    font-weight: 500;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #ffc107 !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Hero Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.hero-loading-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-loading-bg.fade-out {
    opacity: 0;
}

.hero-fallback-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: none; /* Hidden by default on desktop */
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}



/* Hero Features */
.hero-features .feature-item {
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    transform: translateX(10px);
}

.hero-features .feature-item i {
    color: #28a745;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Bounce Animation for Fire Icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Section Titles */
.section-title {
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Features */
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Tour Cards */
.tour-card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Ensure packages display in same row */
#tours .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
}

#tours .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    padding: 0 15px !important;
    margin: 0 !important;
}

#tours .col-lg-4:first-child {
    margin-left: 0 !important;
}

#tours .col-lg-4:last-child {
    margin-right: 0 !important;
}

@media (max-width: 991.98px) {
    #tours .row {
        flex-wrap: wrap !important;
    }
    
    #tours .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.tour-card.border-primary {
    border: 2px solid #667eea !important;
}

.tour-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.tour-card.border-primary .tour-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.currency {
    font-size: 1rem;
    color: #7f8c8d;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* About Gallery */
.about-gallery .gallery-item-small {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-gallery .gallery-item-small:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-gallery .gallery-item-small img {
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.about-gallery .gallery-item-small:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 15px;
    border: 2px solid transparent;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder,
.contact-form .form-select {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: white;
}

.contact-form .form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .tour-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Hide video on mobile and show fallback background */
    .hero-video {
        display: none;
    }
    
    .hero-loading-bg {
        display: none;
    }
    
    .hero-fallback-bg {
        display: block;
    }
}

@media (min-width: 769px) {
    /* Show video on desktop and hide fallback */
    .hero-video {
        display: block;
    }
    
    .hero-fallback-bg {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Hover Effects */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Virtual Tour Section */
.virtual-tour-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.virtual-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tour-preview {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.virtual-tour-card:hover .play-overlay {
    opacity: 1;
}

/* Customer Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffc107;
}

.customer-avatar {
    color: #667eea;
}

/* Statistics Animation */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* FAQ Section */
.accordion-button {
    border: none;
    box-shadow: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Weather Widget */
.weather-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.weather-icon {
    color: #ffc107;
}

.temperature {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.condition {
    font-size: 1.1rem;
    opacity: 0.9;
}

.detail-item {
    padding: 1rem 0;
}

.detail-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.detail-item div {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-item small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Info Widget */
.info-widget {
    border-radius: 20px;
}

.essential-item {
    padding: 0.5rem 0;
}

.essential-item i {
    font-size: 1.2rem;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.chat-body {
    display: none;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 1rem;
}

.message-content {
    background: white;
    padding: 0.75rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.message.sent .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: auto;
}

.message.received .message-content {
    background: white;
    color: #2c3e50;
}

.chat-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.chat-input button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
}



/* Virtual Tour Modal */
.virtual-tour-content {
    text-align: center;
}

.tour-preview-large img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.tour-features {
    text-align: left;
    margin-top: 1.5rem;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design for New Features */
@media (max-width: 768px) {
    .live-chat-widget {
        width: 280px;
        right: 10px;
        bottom: 80px;
    }
    
    .floating-card {
        display: none;
    }
    
    .virtual-tour-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .weather-widget,
    .info-widget {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .live-chat-widget {
        width: 250px;
        right: 5px;
    }
    
    .chat-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .chat-body {
        height: 350px;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
} 

/* Customer Gallery */
.customer-photo {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.customer-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.customer-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.customer-photo:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-info {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.photo-info i {
    color: #ff6b6b;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: 280px;
        right: 10px;
        bottom: 80px;
    }
    
    .floating-card {
        display: none;
    }
    
    .virtual-tour-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .weather-widget,
    .info-widget {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .live-chat-widget {
        width: 250px;
        right: 5px;
    }
    
    .chat-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .chat-body {
        height: 350px;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
} 

/* Hero Section Typography */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-item span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Section Titles Enhancement */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Tour Package Typography */
.tour-card .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.tour-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Price Typography Enhancement */
.price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.2rem 0;
}

.currency {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: #7f8c8d;
    vertical-align: top;
}

.period {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: #7f8c8d;
}

/* Testimonial Typography */
.testimonial-card .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* Statistics Typography */
.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -0.02em;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Typography */
.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.accordion-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

/* Weather Widget Typography */
.weather-widget h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.temperature {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

.condition {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Customer Gallery Typography */
.customer-photo .photo-info {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Navigation Typography */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* Button Typography Enhancement */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-lg {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Footer Typography */
.footer h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.footer p, .footer li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
} 

/* Interactive Booking Section */
#booking {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://deserteveningsafari.com/wp-content/uploads/2018/04/Dune-Bashing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#booking .section-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#booking .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.booking-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Booking Card for Background */
#booking .booking-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#booking .booking-card:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.booking-card .form-label {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.booking-card .form-select,
.booking-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.booking-card .form-select:focus,
.booking-card .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.booking-card .form-select-lg,
.booking-card .form-control-lg {
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Price Summary Styling */
.price-summary {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease;
    padding: 0.75rem !important;
}

.price-summary:hover {
    border-color: #667eea !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.total-price .currency {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: #7f8c8d;
    vertical-align: top;
}

.total-price .amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #667eea;
    margin: 0 0.25rem;
    letter-spacing: -0.02em;
}

.total-price .period {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #7f8c8d;
}

/* Booking Button Enhancement */
#bookNowBtn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#bookNowBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#bookNowBtn:hover::before {
    left: 100%;
}

#bookNowBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Form Validation Styling */
.booking-card .form-select.is-invalid,
.booking-card .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.booking-card .form-select.is-valid,
.booking-card .form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Success Message Styling */
.booking-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.booking-success i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Loading State */
.booking-loading {
    opacity: 0.7;
    pointer-events: none;
}

.booking-loading .btn {
    position: relative;
}

.booking-loading .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Booking */
@media (max-width: 768px) {
    #booking {
        background-attachment: scroll;
    }
    
    .booking-card {
        padding: 1.5rem !important;
    }
    
    .booking-card .form-select-lg,
    .booking-card .form-control-lg {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .total-price .amount {
        font-size: 2rem;
    }
    
    #bookNowBtn {
        padding: 1rem 2rem !important;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .booking-card {
        padding: 1rem !important;
    }
    
    .price-summary {
        padding: 1rem !important;
    }
    
    .total-price .amount {
        font-size: 1.8rem;
    }
} 

/* Enhanced Form Elements */ 