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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Effects */
.glass-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.glass-button {
    background: linear-gradient(135deg, #c3972d 0%, #d4a942 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(195, 151, 45, 0.3);
}

.glass-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(195, 151, 45, 0.5);
    background: linear-gradient(135deg, #d4a942 0%, #e6bb57 100%);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-box {
    padding: 60px 40px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #c3972d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.tour-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.detail-item i {
    color: #c3972d;
    font-size: 1.2rem;
}

.cta-button {
    font-size: 20px;
    padding: 18px 40px;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #333 0%, #c3972d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.icon-item {
    text-align: center;
    padding: 40px 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c3972d 0%, #d4a942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(195, 151, 45, 0.3);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.icon-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.icon-item p {
    color: #666;
    font-size: 1rem;
}

/* Portfolio Sections */
.portfolio-section {
    padding: 80px 0;
}

.slideshow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

.slideshow {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #666;
}

.slide-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #c3972d;
}

.slide-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #c3972d 0%, #d4a942 100%);
    border-radius: 2px;
    width: 0%;
    animation: progressAnimation 5s linear infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Guide Section */
.guide-section {
    padding: 100px 0;
}

.guide-presentation {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Georgia', serif;
}

.guide-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.guide-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #333;
}

.stat-item i {
    color: #c3972d;
    font-size: 1.2rem;
    width: 20px;
}

.guide-image {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photographer-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c3972d 0%, #d4a942 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(195, 151, 45, 0.3);
}

.photo-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonial-box {
    width: 400px;
    padding: 30px;
    flex-shrink: 0;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    color: #c3972d;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQs Section */
.faqs-section {
    padding: 100px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(195, 151, 45, 0.1);
}

.faq-question i {
    color: #c3972d;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-section .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
}

.booking-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.pricing-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.price-item {
    text-align: center;
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #c3972d;
    line-height: 1;
}

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

.tour-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
    color: white;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c3972d;
    line-height: 1;
}

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

.booking-cta {
    font-size: 22px;
    padding: 20px 50px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.booking-terms {
    color: white;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #c3972d;
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c3972d;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c3972d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tour-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .guide-presentation {
        padding: 40px 30px;
    }
    
    .testimonial-box {
        width: 300px;
    }
    
    .pricing-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .guide-name {
        font-size: 2rem;
    }
    
    .photographer-image {
        width: 250px;
        height: 350px;
    }
    
    .booking-content {
        padding: 40px 30px;
    }
}