/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

/* Media Queries - Hero */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        align-items: stretch;
        padding: 15px 0; /* Scaled from 480px: 10px * (768/480) ≈ 15px */
    }

    .hero-video {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Make the overlay disappear on mobile for better visibility */
    .hero-overlay {
        display: none;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}

/* =========================================================
   WHO ARE WE SECTION
   ========================================================= */
.who-are-we {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    text-align: center;
}

.who-are-we h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.who-are-we-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.who-are-we-content p {
    font-size: 1.1rem;
    color: #003366;
    font-weight: 600;
}

/* Media Queries - Who Are We */
@media (max-width: 768px) {
    .who-are-we h2 {
        margin-bottom: 20px; /* Scaled from 480px: 15px * (768/480) ≈ 24px */
    }

    .who-are-we {
        padding: 32px 24px; /* Scaled from 480px: 20px * (768/480) ≈ 32px, 15px * (768/480) ≈ 24px */
    }

    .who-are-we > .container {
        padding: 0 8px; /* Scaled from 480px: 5px * (768/480) ≈ 8px */
    }

    .who-are-we-content p {
        font-size: 1.1rem; /* Scaled from 480px: 1rem * (768/480) ≈ 1.6rem */
    }

    .who-are-we-content {
        padding: 40px 24px; /* Scaled from 480px: 25px * (768/480) ≈ 40px, 15px * (768/480) ≈ 24px */
        margin: 0 16px; /* Scaled from 480px: 10px * (768/480) ≈ 16px */
    }
}

/* Media Queries - Who Are We */
@media (max-width: 480px) {
    .who-are-we h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .who-are-we {
        padding: 20px 15px;
    }

    .who-are-we > .container {
        padding: 0 5px;
    }

    .who-are-we-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .who-are-we-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
}

/* =========================================================
   TOUR SLIDES SECTION
   ========================================================= */
.tour-slides {
    padding: 80px 0;
    background: #fff;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-content {
    z-index: 2;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-button {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.slide-button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries - Tour Slides */
@media (max-width: 768px) {
    .tour-slides {
        padding: 8px 0; /* Scaled from 480px: 5px * (768/480) ≈ 8px */
    }

    .tour-slides > .container {
        padding: 0 8px; /* Scaled from 480px: 5px * (768/480) ≈ 8px */
    }

    .swiper {
        height: 560px; /* Scaled from 480px: 350px * (768/480) ≈ 560px */
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1.1rem; /* Scaled from 480px: 1rem * (768/480) ≈ 1.6rem */
    }

    .slide-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .tour-slides {
        padding: 10px 0;
    }

    .tour-slides > .container {
        padding: 0 5px;
    }

    .swiper {
        height: 350px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* =========================================================
   PARIS TOURS SECTION
   ========================================================= */
.paris-tours {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.paris-tours h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.paris-tours p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .paris-tours {
        padding: 64px 24px;
    }

    .paris-tours p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .paris-tours {
        padding: 40px 15px;
    }

    .paris-tours h2 {
        font-size: 1.75rem;
    }

    .paris-tours p {
        font-size: 1rem;
    }
}

/* =========================================================
   MEET GUIDES SECTION
   ========================================================= */
.meet-guides {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.meet-guides h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.guide-card:hover {
    transform: translateY(-10px);
}

.guide-image {
    width: 100%;
    height: 375px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.guide-content {
    padding: 30px;
}

.guide-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.guide-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.read-more-btn {
    background: #007cba;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    float: right;
}

.read-more-btn:hover {
    background: #005a87;
}


/* Media Queries - Meet Guides */
@media (max-width: 768px) {
    .meet-guides {
        padding: 25px 7px;
    }

    .meet-guides > .container {
        padding: 0;
    }

    .meet-guides h2 {
        margin-bottom: 16px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .guide-card {
        margin: 0 30px;
        height: auto;
    }

    .guide-image {
        height: 450px;
    }

    .guide-image img {
        object-fit: cover;
        object-position: top;
    }

    .guide-content {
        padding: 20px;
    }

    .guide-name {
        font-size: 1.3rem;
        margin-bottom: 7px;
    }

    .guide-description {
        font-size: 1rem;
    }

    .read-more-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .meet-guides {
        padding: 20px 5px;
    }

    .meet-guides > .container {
        padding: 0;
    }

    .meet-guides h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .guides-grid {
        gap: 30px;
    }

    .guide-card {
        margin: 0 25px;
        height: auto;
    }

    .guide-image {
        height: 250px;
    }

    .guide-image img {
        object-fit: cover;
        object-position: top; /* Keep face visible */
    }

    .guide-content {
        padding: 15px;
    }

    .guide-name {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .guide-description {
        font-size: 0.85rem;
    }

    .read-more-btn {
        padding: 10px 18px; /* Smaller button */
        font-size: 0.85rem;
    }
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonials {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.star-rating {
    margin: 20px 0;
}

.star-rating i {
    color: #ffd700;
    font-size: 2rem;
    margin: 0 5px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-swiper {
    height: auto;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #007cba;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Media Queries - Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 35px 20px; /* Scaled from 480px: 30px * (768/480) ≈ 48px, 15px * (768/480) ≈ 24px */
    }

    .testimonials h2 {
        margin-bottom: 12px; /* Scaled from 480px: 10px * (768/480) ≈ 16px */
    }

    .testimonials > .container {
        padding: 0 8px; /* Scaled from 480px: 5px * (768/480) ≈ 8px */
    }

    .star-rating {
        margin: 12px 0; /* Scaled from 480px: 10px * (768/480) ≈ 16px */
    }

    .star-rating i {
        font-size: 1.3rem; /* Scaled from 480px: 1.2rem * (768/480) ≈ 1.92rem */
        margin: 0 2px; /* Scaled from 480px: 2px * (768/480) ≈ 3.2px */
    }

    .fas .fa-star {
        font-size: 1.3rem; /* Scaled from 480px: 1.2rem * (768/480) ≈ 1.92rem */
        margin: 0 2px; /* Scaled from 480px: 2px * (768/480) ≈ 3.2px */
    }

    .testimonial-content {
        padding: 25px; /* Scaled from 480px: 20px * (768/480) ≈ 32px */
        margin: 0 12px; /* Scaled from 480px: 10px * (768/480) ≈ 16px */
    }

    .testimonial-swiper {
        height: auto;
    }

    .testimonial-text {
        font-size: 1rem; /* Scaled from 480px: 0.9rem * (768/480) ≈ 1.44rem */
        line-height: 1.4; /* Scaled from 480px: 1.4 * (768/480) ≈ 2.24 */
    }
}

/* Media Queries - Testimonials */
@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .testimonials {
        padding: 30px 15px; /* Less vertical padding */
    }

    .star-rating {
        margin: 10px 0;
    }

    .star-rating i {
        font-size: 1.0rem;
        margin: 0 2px;
    }

    .fas .fa-star {
        font-size: 1.0rem;
        margin: 0 2px;
    }

    .testimonials > .container {
        padding: 0 5px;
    }


    /* gap between .testimonial-author and .testimonial-text*/
    .testimonial-content {
        padding: 20px;
        margin: 0 10px;
    }

    .testimonial-swiper {
        height: auto;
    }

    .testimonial-text {
        font-size: 0.9rem; /* Smaller text */
        line-height: 1.4; /* Tighter line spacing */
    }

    .star-rating i {
        font-size: 1.2rem; /* Smaller stars */
        margin: 0 2px;
    }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: white;
    color: #007cba;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-button:hover {
    background: #007cba;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 18px;
    }

    .cta-content h3 {
        margin-bottom: 18px;
    }

    .cta-content p {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 22px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
.gallery-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 3/2;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Media Queries - Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section h2 {
        font-size: 1.5rem;
    }
}
