/* Tour Page Styles - Simple & Responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Link Styles */
.tour-section a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-section a:hover {
    color: #d35400;
    text-decoration: underline;
}

/* Main Container */
.tour-container {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Left Column - Main Content */
.left-column {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Right Column - Sidebar */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

/* Tour Image */
.tour-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour Sections */
.tour-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.tour-section:last-child {
    border-bottom: none;
}

.tour-section p {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-section p i {
    color: #e67e22;
}

/* Tour Title and Price in Overview */
.tour-title-price {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.tour-title-price h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.tour-rating span {
    color: #666;
    font-size: 0.95rem;
}

.tour-price-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-price-inline .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e67e22;
}

.tour-price-inline .per-person {
    font-size: 1.1rem;
    color: #666;
}

.tour-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Inclusions */
.inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.inclusion-list h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.inclusion-list ul {
    list-style: none;
}

.inclusion-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.inclusion-list li i {
    color: #27ae60;
    width: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Sidebar Cards */
.booking-card,
.contact-card,
.related-tours {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Booking Card */
.booking-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
}

.big-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e67e22;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-call {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #27ae60;
    font-size: 0.9rem;
}

.feature i {
    width: 16px;
}

/* Contact Card */
.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #e67e22;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 0.85rem;
    color: #666;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #e67e22;
}

/* Related Tours */
.related-tours h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.related-tour {
    display: flex;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.related-tour img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.tour-info {
    padding: 10px 15px;
    flex: 1;
}

.tour-info h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.tour-info .price {
    color: #e67e22;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.btn-small {
    display: inline-block;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.btn-small:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tour-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    /* Mobile: Left column shows first */
    .left-column {
        order: 1;
    }
    
    /* Mobile: Right column shows second */
    .right-column {
        order: 2;
    }
    
    .tour-title-price h1 {
        font-size: 1.8rem;
    }
    
    .tour-price-inline .price {
        font-size: 1.8rem;
    }
    
    .tour-section {
        padding: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inclusions {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-card,
    .contact-card,
    .related-tours {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tour-container {
        padding: 0 5px;
    }
    
    .tour-title-price h1 {
        font-size: 1.5rem;
    }
    
    .tour-price-inline .price {
        font-size: 1.5rem;
    }
    
    .tour-section {
        padding: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .related-tour {
        flex-direction: column;
    }
    
    .related-tour img {
        width: 100%;
        height: 120px;
    }
}
/* Google Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonials-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    cursor: pointer;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: bold;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.google-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285f4;
    border-radius: 50%;
    flex-shrink: 0;
}

.google-icon i {
    color: white;
    font-size: 1rem;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.btn-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
    color: white;
}

.btn-testimonials i {
    font-size: 1.2rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0;
    }
    
    .testimonials-header .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .customer-info {
        gap: 12px;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .customer-details h4 {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonials-header .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-header .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .btn-testimonials {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .rating-stars i {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
}
  body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    a {
        color: inherit;
        text-decoration: none;  
    }
    a:hover {
        color: #e76f51;
    }
  .topbar {
        background-color: #2c3e50;
        color: white;
        padding: 0px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        @media (max-width: 600px) {
            display: none;
        }
    }

    .contact-info {
        display: flex;
        gap: 20px;        .container {
            padding: 0 15px;
        }
    }
    .contact-info span {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .material-icons {
        font-size: 16px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 3px;
        transition: background-color 0.3s;
    }

    .nav-links a:hover {
        color: #e76f51;
        background-color: #34495e;
    }

    @media (max-width: 768px) {
        .contact-info {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }

    /* Simple Header Styles */
    .main-header {
        background-color: #fff;
        border-bottom: 2px solid #ddd;
        padding: 15px 0;
    }

    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo p {
        margin: 0;
        font-size: 1.3rem;
        color: #333;
        font-weight: 600;
    }

    /* Simple Navigation */
    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 25px;
    }

    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        padding: 8px 12px;
        transition: color 0.3s;
    }

    .nav-menu a:hover {
        color: #e76f51;
    }

    /* Simple Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 6px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        position: relative;
        z-index: 9999;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background-color: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .header-container {
            padding: 0 10px;
        }
    .main-header{
        padding: 5px 0;
    }

        .hamburger {
            display: flex;
            position: relative;
            z-index: 10000;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 0;
            flex-direction: column;
            background-color: #fff;
            width: 100%;
            height: 100vh;
            text-align: center;
            transition: 0.3s;
            padding-top: 80px;
            gap: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 9998;
        }

        .nav-menu.active {
            left: 0;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 2rem;
            color: #333;
            cursor: pointer;
            padding: 5px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-menu:hover {
            background-color: #f0f0f0;
            color: #e76f51;
        }

        .nav-menu li {
            margin: 15px 0;
        }

        .nav-menu a {
            font-size: 1.1rem;
            display: block;
            padding: 15px;
        }

        .logo h1 {
            font-size: 1.5rem;
        }
    }

     /* Footer Styles */
    .footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 50px 0 20px;
        margin-top: 50px;
    }

    .footer-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .footer-column p {
        line-height: 1.6;
        margin-bottom: 20px;
        color: #bdc3c7;
        font-size: 0.9rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        line-height: 1.4;
    }

    .footer-links a:hover {
        color: #3498db;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #34495e;
        border-radius: 50%;
        color: #ecf0f1;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background-color: #3498db;
        transform: translateY(-2px);
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #bdc3c7;
    }

    .contact-item i {
        margin-right: 10px;
        color: #3498db;
        font-size: 1.2rem;
    }

    .contact-item span {
        font-size: 0.9rem;
    }

    /* Footer Responsive Design */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 40px 0 20px;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .footer-container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .footer-column {
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .contact-item {
            justify-content: center;
        }
    }

      /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    text-decoration: none !important;
}

.whatsapp-float i {
    font-size: 28px !important;
    color: white !important;
    line-height: 1 !important;
    font-family: 'Font Awesome 6 Brands' !important;
}

/* Tooltip styles */
.whatsapp-float .tooltip {
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #333 !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    font-family: 'Poppins', sans-serif !important;
}

.whatsapp-float .tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    margin-top: -5px !important;
    border: 5px solid transparent !important;
    border-left-color: #333 !important;
}

.whatsapp-float:hover .tooltip {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure floating buttons container doesn't interfere */
.floating-buttons {
    position: relative !important;
    z-index: 9999 !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-float i {
        font-size: 24px !important;
    }

    .whatsapp-float .tooltip {
        font-size: 12px !important;
        padding: 6px 10px !important;
        right: 60px !important;
    }
}
