/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: #4e4c4c;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2e, #e08419);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Header */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    backdrop-filter: none;
}

/* Navbar text color: white when transparent, dark when scrolled */
.header .nav-brand h2,
.header .nav-menu a,
.header .hamburger span {
    color: #fff;
    transition: color 0.3s;
}
.header.scrolled .nav-brand h2,
.header.scrolled .nav-menu a {
    color: #222;
}
.header.scrolled .nav-menu a:hover {
    color: #ff6b35;
}
.header.scrolled .hamburger span {
    background: #222;
}


/* Mobile & Tablet: Show nav-menu links in white when menu is open */
@media (max-width: 768px) {
    /* Hide sun icon on mobile */
    .nav-brand .fas.fa-sun {
        display: none;
    }
    
    .header.scrolled .nav-menu,
    .header .nav-menu {
        background-color: rgba(0, 0, 0, 0.95);
    }
    .header.scrolled .nav-menu a,
    .header .nav-menu a {
        color: #fff;
    }
    .header.scrolled .nav-menu a:hover,
    .header .nav-menu a:hover {
        color: #ff6b35;
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.nav-brand i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='heroGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ff6b35;stop-opacity:0.9'/%3E%3Cstop offset='30%25' style='stop-color:%23f7931e;stop-opacity:0.8'/%3E%3Cstop offset='70%25' style='stop-color:%23764ba2;stop-opacity:0.9'/%3E%3Cstop offset='100%25' style='stop-color:%23667eea;stop-opacity:1'/%3E%3C/linearGradient%3E%3CradialGradient id='sunGrad' cx='20%25' cy='30%25' r='50%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffeb3b;stop-opacity:0.3'/%3E%3Cstop offset='100%25' style='stop-color:%23ffeb3b;stop-opacity:0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23heroGrad)'/%3E%3Ccircle cx='384' cy='324' r='400' fill='url(%23sunGrad)'/%3E%3Cpath d='M0,800 Q480,650 960,700 T1920,750 L1920,1080 L0,1080 Z' fill='%23f4a261' opacity='0.4'/%3E%3Cpath d='M0,850 Q640,720 1280,770 T1920,800 L1920,1080 L0,1080 Z' fill='%23e76f51' opacity='0.3'/%3E%3Cpath d='M0,900 Q320,780 640,820 Q960,860 1280,840 Q1600,820 1920,850 L1920,1080 L0,1080 Z' fill='%23264653' opacity='0.2'/%3E%3C/svg%3E") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 40px 0 100px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .about-grid {
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Tours Section */
.tours {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #ff6b35 75%, #f7931e 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.tours::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='0' cy='40' r='20'/%3E%3Ccircle cx='80' cy='40' r='20'/%3E%3Ccircle cx='40' cy='0' r='20'/%3E%3Ccircle cx='40' cy='80' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 25s infinite linear;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(120deg); }
    66% { transform: translate(-5px, 5px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.tours .container {
    position: relative;
    z-index: 2;
}

.tours .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.tours .section-header p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    font-weight: 400;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.tour-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.8);
    transform: scale(1.03);
    box-shadow: 0 25px 55px rgba(255, 107, 53, 0.2);
}

.tour-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 35px 65px rgba(255, 107, 53, 0.3);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-content {
    padding: 2rem;
}

.tour-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.tour-features i {
    color: #ff6b35;
}

.tour-highlights ul {
    list-style: none;
    margin: 1.5rem 0;
}

.tour-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.tour-highlights i {
    color: #28a745;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.per-person {
    color: #666;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='0' cy='0' r='2'/%3E%3Ccircle cx='60' cy='0' r='2'/%3E%3Ccircle cx='0' cy='60' r='2'/%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    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='M50 5L55 20L70 20L58.5 30L63.5 45L50 35L36.5 45L41.5 30L30 20L45 20Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E") repeat;
    animation: rotate 30s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}





.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.floating-buttons a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;  /* WhatsApp green */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.floating-buttons a:hover {
  transform: scale(1.1);
}
.floating-buttons img {
  width: 28px;
  height: 28px;
}
@media (max-width: 480px) {
  .floating-buttons a { width: 48px; height: 48px; }
  .floating-buttons img { width: 24px; height: 24px; }
}







/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
}



.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-contact i {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hamburger span {
        background: white;
    }
    
    .header.scrolled .hamburger span {
        background: #333;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 90vh;
        padding-top: 80px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .hero-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .about-grid,
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-card.featured {
        transform: none;
        border: 2px solid #ff6b35;
    }
    
    .tour-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about,
    .tours,
    .gallery,
    .contact {
        padding: 60px 0;
    }
}

.tour-detail-hero {
    height: 60vh;
    /* Default Arabian Desert SVG background */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='desertGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ff6b35;stop-opacity:0.9'/%3E%3Cstop offset='50%25' style='stop-color:%23f7931e;stop-opacity:0.8'/%3E%3Cstop offset='100%25' style='stop-color:%23e76f51;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23desertGrad)'/%3E%3Cpath d='M0,600 Q480,450 960,500 T1920,550 L1920,1080 L0,1080 Z' fill='%23f4a261' opacity='0.6'/%3E%3Cpath d='M0,700 Q640,550 1280,600 T1920,650 L1920,1080 L0,1080 Z' fill='%23e76f51' opacity='0.4'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    padding: 2rem;
    margin-top: 0;
    padding-top: 80px;
}

/* Specific Tour Hero Backgrounds */
.morning-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='morningGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffeb3b;stop-opacity:0.9'/%3E%3Cstop offset='30%25' style='stop-color:%23ffc107;stop-opacity:0.8'/%3E%3Cstop offset='70%25' style='stop-color:%23ff9800;stop-opacity:0.9'/%3E%3Cstop offset='100%25' style='stop-color:%23ff6b35;stop-opacity:1'/%3E%3C/linearGradient%3E%3CradialGradient id='morningSun' cx='80%25' cy='20%25' r='30%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffeb3b;stop-opacity:0.6'/%3E%3Cstop offset='100%25' style='stop-color:%23ffeb3b;stop-opacity:0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23morningGrad)'/%3E%3Ccircle cx='1536' cy='216' r='300' fill='url(%23morningSun)'/%3E%3Cpath d='M0,700 Q480,550 960,600 T1920,650 L1920,1080 L0,1080 Z' fill='%23f4a261' opacity='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.evening-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='eveningGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ff9800;stop-opacity:0.9'/%3E%3Cstop offset='30%25' style='stop-color:%23ff5722;stop-opacity:0.8'/%3E%3Cstop offset='70%25' style='stop-color:%23e91e63;stop-opacity:0.9'/%3E%3Cstop offset='100%25' style='stop-color:%23673ab7;stop-opacity:1'/%3E%3C/linearGradient%3E%3CradialGradient id='eveningSun' cx='15%25' cy='25%25' r='25%25'%3E%3Cstop offset='0%25' style='stop-color:%23ff5722;stop-opacity:0.8'/%3E%3Cstop offset='100%25' style='stop-color:%23ff5722;stop-opacity:0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23eveningGrad)'/%3E%3Ccircle cx='288' cy='270' r='250' fill='url(%23eveningSun)'/%3E%3Cpath d='M0,650 Q480,500 960,550 T1920,600 L1920,1080 L0,1080 Z' fill='%23bf360c' opacity='0.4'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.overnight-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='nightGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23000051;stop-opacity:1'/%3E%3Cstop offset='30%25' style='stop-color:%23001a4d;stop-opacity:0.9'/%3E%3Cstop offset='70%25' style='stop-color:%23002447;stop-opacity:0.8'/%3E%3Cstop offset='100%25' style='stop-color:%23003366;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23nightGrad)'/%3E%3Ccircle cx='200' cy='150' r='3' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='400' cy='100' r='2' fill='%23ffffff' opacity='0.9'/%3E%3Ccircle cx='600' cy='180' r='2' fill='%23ffffff' opacity='0.7'/%3E%3Ccircle cx='800' cy='120' r='3' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='1000' cy='200' r='2' fill='%23ffffff' opacity='0.9'/%3E%3Ccircle cx='1200' cy='140' r='2' fill='%23ffffff' opacity='0.6'/%3E%3Ccircle cx='1400' cy='90' r='3' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='1600' cy='170' r='2' fill='%23ffffff' opacity='0.7'/%3E%3Cpath d='M0,750 Q480,600 960,650 T1920,700 L1920,1080 L0,1080 Z' fill='%231a1a2e' opacity='0.6'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.desert-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='classicGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ff6b35;stop-opacity:0.9'/%3E%3Cstop offset='50%25' style='stop-color:%23f7931e;stop-opacity:0.8'/%3E%3Cstop offset='100%25' style='stop-color:%23e76f51;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23classicGrad)'/%3E%3Cpath d='M0,600 Q320,450 640,500 Q960,550 1280,520 Q1600,490 1920,540 L1920,1080 L0,1080 Z' fill='%23d2691e' opacity='0.5'/%3E%3Cpath d='M0,700 Q480,550 960,600 T1920,650 L1920,1080 L0,1080 Z' fill='%23cd853f' opacity='0.4'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.vip-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='vipGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffd700;stop-opacity:0.9'/%3E%3Cstop offset='30%25' style='stop-color:%23ffb300;stop-opacity:0.8'/%3E%3Cstop offset='70%25' style='stop-color:%23ff8c00;stop-opacity:0.9'/%3E%3Cstop offset='100%25' style='stop-color:%23ff6b35;stop-opacity:1'/%3E%3C/linearGradient%3E%3CradialGradient id='vipGlow' cx='50%25' cy='30%25' r='40%25'%3E%3Cstop offset='0%25' style='stop-color:%23ffd700;stop-opacity:0.4'/%3E%3Cstop offset='100%25' style='stop-color:%23ffd700;stop-opacity:0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23vipGrad)'/%3E%3Ccircle cx='960' cy='324' r='400' fill='url(%23vipGlow)'/%3E%3Cpath d='M0,650 Q480,500 960,550 T1920,600 L1920,1080 L0,1080 Z' fill='%23b8860b' opacity='0.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.quadbike-safari-hero {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='adventureGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%234caf50;stop-opacity:0.9'/%3E%3Cstop offset='30%25' style='stop-color:%23ff9800;stop-opacity:0.8'/%3E%3Cstop offset='70%25' style='stop-color:%23ff5722;stop-opacity:0.9'/%3E%3Cstop offset='100%25' style='stop-color:%23ff6b35;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23adventureGrad)'/%3E%3Cpath d='M0,600 Q240,400 480,500 Q720,600 960,550 Q1200,500 1440,580 Q1680,650 1920,600 L1920,1080 L0,1080 Z' fill='%23795548' opacity='0.4'/%3E%3Cpath d='M0,750 Q480,600 960,650 T1920,700 L1920,1080 L0,1080 Z' fill='%238d6e63' opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.tour-quick-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Make .tour-detail-hero height auto and min-height 60vh for flexibility */
.tour-detail-hero {
    height: auto;
    min-height: 60vh;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.quick-info-item i {
    color: #ff6b35;
}

.tour-details {
    padding: 80px 0;
}

.tour-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.tour-main-content {
    background: white;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.included-grid {
    display: grid;
    gap: 1.5rem;
}

.included-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.included-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.included-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.included-item p {
    color: #666;
    margin: 0;
}

.itinerary-timeline {
    position: relative;
    padding-left: 0;
    margin-left: 1rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: #ff6b35;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 0rem 0 2rem 2rem;
    position: relative;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 134px;
    top: 12px;
    width: 14px;
    height: 14px;
    background: #ff6b35;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #ff6b35;
    z-index: 2;
}

.timeline-time {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-right: 1rem;
}

.timeline-content {
    flex: 1;
    padding-left: 1rem;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-tabs {
    margin-top: 1rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel ul {
    list-style: none;
}

.tab-panel li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tab-panel i {
    color: #ff6b35;
    width: 20px;
}

.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.price-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-header .per-person {
    display: block;
    color: #666;
    margin-top: 0.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-full {
    width: 100%;
    margin-bottom: 1.5rem;
}

.booking-features {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.booking-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.booking-features i {
    color: #28a745;
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-card .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-card .contact-item:hover {
    background: #f8f9fa;
}

.contact-card .contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-card .contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
}

.contact-card .contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.related-tours {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-tours h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Mobile Responsive for Tour Detail Page */
@media (max-width: 768px) {
    .tour-detail-hero {
        height: 100vh;
        padding: 0 1rem;
        padding-top: 100px;
    }
    
    .tour-detail-hero h1 {
        font-size: 2rem;
    }
    
    .tour-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .quick-info-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .tour-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-sidebar {
        position: static;
        order: -1;
    }
    
    .tour-details {
        padding: 40px 0;
    }
    
    .content-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    /* Timeline Mobile Fix */
    .itinerary-timeline {
        margin-left: 0;
    }
    
    .itinerary-timeline::before {
        left: 20px;
        top: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding-left: 4.5rem;
    }
    
    .timeline-item::before {
        left: 14px;
        top: 12px;
    }
    
    .timeline-time {
        align-self: flex-start;
        margin-left: -2.5rem;
        margin-right: 0;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: auto;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    /* Tab buttons mobile */
    .tab-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 0.75rem 1rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        border-bottom: 2px solid transparent;
    }
    
    .tab-btn.active {
        background: #ff6b35;
        color: white;
        border-color: #ff6b35;
    }
    
    /* Related tours */
    .related-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .related-tours {
        padding: 40px 0;
    }
    
    /* Booking card mobile */
    .booking-card,
    .contact-card {
        margin-bottom: 1rem;
    }
    
    .price-header .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about,
    .tours,
    .gallery,
    .contact {
        padding: 60px 0;
    }
    
    .about-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Tour Detail Mobile Styles */
    .tour-detail-hero {
        height: 100vh;
        padding: 0 1rem;
        padding-top: 120px;
    }
    
    .tour-detail-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .tour-detail-hero p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .quick-info-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .booking-card,
    .contact-card {
        padding: 1.5rem;
        margin: 0 -15px 1rem -15px;
        border-radius: 0;
    }
    
    .price-header .price {
        font-size: 1.8rem;
    }
    
    .timeline-time {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        margin-left: -2rem;
    }
    
    /* .timeline-item {
        padding-left: 2rem;
        margin-bottom: 2rem;
    } */
     .timeline-item {
        padding-left: 4rem;
        margin-bottom: 1rem;
    }
}
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .itinerary-timeline::before {
        left: 15px;
        top: 25px;
    }
    
    .timeline-item::before {
        left: 9px;
        width: 12px;
        height: 12px;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        min-width: 100px;
    }
    
    .included-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
    }
    
    .included-item i {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .contact-card .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .tour-features {
        justify-content: center;
    }
    
    .tour-features span {
        font-size: 0.8rem;
        padding: 4px 8px;
    }


/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ff6b6b;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Lightbox Styles */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: -35px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}
