/* Home Page Specific Styles */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background: url('https://iili.io/3oemyzb.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 18, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease;
}

.welcome-badge {
    background: rgba(255, 224, 68, 0.9);
    color: #0d1b12;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: slideInUp 1s ease 0.3s both;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease 0.6s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    animation: slideInUp 1s ease 0.9s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: slideInUp 1s ease 1.2s both;
}

.explore-btn {
    background: #ffe044;
    color: #0d1b12;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-btn {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.arrow {
    transition: transform 0.3s ease;
}

.explore-btn:hover .arrow {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 2;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

/* Featured Tours Section */
.featured-tours-section {
    padding: 100px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    background: #ffe044;
    color: #0d1b12;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #0d1b12;
    margin: 0 0 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffe044;
    color: #0d1b12;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 1.5rem;
    color: #0d1b12;
    margin: 0 0 10px;
}

.tour-description {
    color: #555;
    margin: 0 0 20px;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tour-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.tour-detail i {
    color: #ffe044;
}

.tour-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d1b12;
    margin: 0 0 20px;
}

.tour-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.tour-buttons {
    display: flex;
    gap: 15px;
}

.book-tour-btn {
    background: #ffe044;
    color: #0d1b12;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.book-tour-btn:hover {
    background: #0d1b12;
    color: #fff;
}

.tour-details-btn {
    background: transparent;
    color: #0d1b12;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ddd;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.tour-details-btn:hover {
    border-color: #0d1b12;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #0d1b12;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    border-color: #0d1b12;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 224, 68, 0.2);
    color: #0d1b12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    color: #0d1b12;
    margin: 0 0 15px;
}

.feature-description {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(13, 27, 18, 0.9), rgba(13, 27, 18, 0.9)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1868&q=80') center/cover no-repeat fixed;
}

.testimonials-section .section-badge {
    background: rgba(255, 224, 68, 0.9);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: #fff;
}

/* Testimonials Section Styling */
.testimonials-section {
    background-color: #0a2a12;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.testimonials-section .section-badge {
    background-color: rgba(255, 177, 0, 0.2);
    color: #ffb100;
}

.testimonials-section .section-title {
    color: #ffffff;
    margin-bottom: 50px;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
    z-index: 1;
}

.testimonials-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    gap: 30px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-card {
    background: rgba(14, 42, 20, 0.7);
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    backdrop-filter: blur(10px);
    min-width: calc(100% - 60px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;

    opacity: 0.7;
}

.testimonial-card.active {
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 177, 0, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 177, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-quote {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0 0 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffb100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 177, 0, 0.3);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-name {
    color: #ffb100;
}

.author-location {
    color: #cccccc;
    margin: 5px 0 0 0;
    font-size: 14px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background-color: #ffb100;
    color: #0a2a12;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: #4a4a4a;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ffb100;
    transform: scale(1.3);
}

.slider-dot:hover {
    background-color: rgba(255, 177, 0, 0.7);
    transform: scale(1.2);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: #ffe044;
    color: #0d1b12;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffe044;
    transform: scale(1.2);
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-cta h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 1.3rem;
}

.write-review-btn {
    background: #ffe044;
    color: #0d1b12;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.write-review-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.write-review-btn::after {
    content: '\f304';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.review-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #e74c3c;
    transform: rotate(90deg);
}

.review-modal-content h3 {
    color: #0d1b12;
    margin: 0 0 25px;
    font-size: 1.5rem;
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: #0d1b12;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 27, 18, 0.1);
}

.rating-select {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: #ccc;
}

.rating-select i {
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-select i:hover,
.rating-select i.active {
    color: #f39c12;
}

.submit-review-btn {
    background: #0d1b12;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-review-btn:hover {
    background: #ffe044;
    color: #0d1b12;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: #0d1b12;
    margin: 0 0 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .tours-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tours-container {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
}
