/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-title {
    font-family: 'Lustria', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.05);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Lustria', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 0;
    background: var(--light-color);
    position: relative;
}

.featured-offer {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
}

.featured-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.offer-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.offer-content {
    padding: 3rem;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-family: 'Lustria', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.offer-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.price-from {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.price-amount {
    font-family: 'Lustria', serif;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Lustria', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-family: 'Lustria', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* ===== ADVENTURE SECTION ===== */
.adventure-section {
    padding: 6rem 0;
    background: var(--white);
}

.adventure-quiz {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-container {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.quiz-question h4 {
    font-family: 'Lustria', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quiz-option {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quiz-option.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quiz-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.quiz-option.selected i {
    color: var(--white);
}

.quiz-option span {
    font-weight: 500;
    font-size: 1.1rem;
}

.result-content {
    text-align: center;
}

.result-content h4 {
    font-family: 'Lustria', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.result-recommendation {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.destinations-section .section-title {
    color: var(--white);
}

.destinations-section .section-title::after {
    background: var(--accent-color);
}

.destinations-section .section-subtitle {
    color: var(--light-color);
}

.destinations-map {
    max-width: 900px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-background {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.destination-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.pin-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(171, 230, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(171, 230, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(171, 230, 255, 0);
    }
}

.pin-tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 8px solid transparent;
    border-top-color: var(--white);
    transform: translateX(-50%);
}

.destination-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
}

.destination-pin:hover .pin-marker {
    transform: scale(1.2);
}

.pin-tooltip h5 {
    font-family: 'Lustria', serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pin-tooltip p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== COMPARATOR SECTION ===== */
.comparator-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.route-comparator {
    margin-top: 2rem;
}

.route-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.route-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.route-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.route-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.route-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-header h4 {
    font-family: 'Lustria', serif;
    color: var(--primary-color);
    margin: 0;
}

.route-duration {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.route-image {
    height: 200px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-features {
    padding: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.feature i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 16px;
}

.route-price {
    padding: 0 1.5rem 1.5rem;
    font-family: 'Lustria', serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
}

.author-info h5 {
    font-family: 'Lustria', serif;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-waves {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.cta-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.cta-waves .wave-fill {
    fill: var(--light-color);
}

.cta-title {
    font-family: 'Lustria', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .offer-content {
        padding: 2rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .route-card.featured {
        transform: none;
    }
    
    .route-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-section,
    .adventure-section,
    .destinations-section,
    .comparator-section,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .featured-offer .row {
        flex-direction: column-reverse;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-container {
        padding: 2rem;
    }
    
    .map-background {
        height: 300px;
    }
    
    .destination-pin {
        position: relative !important;
        display: inline-block;
        margin: 1rem;
    }
    
    .pin-tooltip {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
    }
    
    .pin-tooltip::after {
        display: none;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        margin: 0.5rem;
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .quiz-container {
        padding: 1.5rem;
    }
    
    .quiz-option {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}
    