/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');*/
    opacity: 0.3;
    z-index: 1;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

    .hero-indicator.active {
        background: white;
        width: 30px;
        border-radius: 6px;
    }

@media (max-width: 768px) {
    .hero-indicators {
        bottom: 20px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-indicator.active {
        width: 25px;
    }
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    background: black;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.cta-button:hover {
    background: #ee5a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

/* Search Bar */
.search-section {
    background: white;
    padding: 3rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}

.search-button {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.search-button:hover {
    background: #5568d3;
}

/* Featured Tours */
.featured-tours {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tour-image {
    width: 100%;
    height: 250px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.gallery-image.active {
    opacity: 1;
    pointer-events: auto;
}

.tour-content {
    padding: 1.5rem;
}

.tour-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.tour-description {
    color: #666;
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.tour-duration {
    color: #667eea;
    font-weight: 600;
}

.tour-price {
    font-size: 1.5rem;
    color: black;
    font-weight: bold;
}

.tour-rating {
    color: #ffa500;
    margin-bottom: 0.5rem;
}

/* Events Section */
.events-section {
    padding: 5rem 5%;
    background: white;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-date {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-location {
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* services section */
.services-section {
    margin-bottom: 5rem;
    padding: 5rem 5%;
    background: #f8f9fa;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.service-item:hover {
    transform: translateY(-10px);
}
.service-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.service-details {
    text-align: center;
}
.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.service-details p {
    color: #666;
    line-height: 1.7;
}

.quote-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #25D366; /* WhatsApp green */
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.quote-btn:hover {
    background: #128C7E;
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 5%;
    background: white;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    color: #667eea;
    font-weight: bold;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Join Us Section */
.join-us-section {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    padding: 4rem 5%;
    color: #fff;
}

.join-us-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.join-us-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.join-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.join-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
}

.join-us-card {
    width: 100%;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.join-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.join-us-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.join-us-description {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.join-us-button {
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.9rem 1.5rem;
    margin: 0.25rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    min-width: 140px;
}

.join-us-button:first-of-type {
    background: #ffffff;
    color: #5b6cff;
    box-shadow: 0 6px 18px rgba(255,255,255,0.25);
}

.join-us-button:first-of-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,255,255,0.35);
}

.join-us-button:last-of-type {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.85);
    box-shadow: none;
}

.join-us-button:last-of-type:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .join-us-section {
        padding: 3rem 6%;
    }

    .join-us-card {
        padding: 1.5rem;
    }

    .join-us-button {
        width: 100%;
        max-width: 320px;
    }
}

/* Newsletter */
.newsletter {
    padding: 4rem 5%;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-button {
    background: black;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-button:hover {
    background: #ee5a52;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .search-section {
        padding: 2rem 5%;
        margin-top: -60px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .search-button {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .featured-tours,
    .events-section,
    .testimonials,
    .trust-section {
        padding: 3rem 5%;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .newsletter {
        padding: 3rem 5%;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-image {
        height: 200px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tour-title {
        font-size: 1.3rem;
    }

    .tour-price {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .event-date {
        font-size: 1.5rem;
    }

    .event-title {
        font-size: 1.2rem;
    }
}