﻿/*
:root {
    --red: #e94b4b;
    --aqua: #a6e8ea;
    --cream: #fffbe6;
    --black: #222;
    --white: #fff;
    --light-gray: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--light-gray);
    color: var(--black);
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    padding: 32px 40px 16px 40px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: var(--aqua);
    text-shadow: 2px 2px var(--red);
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

    .nav-link.active,
    .nav-link:hover {
        border-bottom: 2px solid var(--red);
    }
    
.book-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 16px;
    font-weight: bold;
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s, background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .book-btn:hover {
        background: var(--aqua);
        color: var(--black);
        transform: scale(1.07);
        box-shadow: 0 6px 20px rgba(233, 75, 75, 0.2);
    }
    */
.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.left-col {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 0 4px 24px rgba(233,75,75,0.10);
    display: block;
    border-radius: 8px;
    background: var(--cream);
}

.right-col {
    flex: 1 1 50%;
    background: none;
    padding: 0 0 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

    .right-col h2 {
        font-size: 3rem;
        font-weight: 600;
        margin: 0 0 16px 0;
        line-height: 1.05;
        color: var(--red);
    }

    .right-col p {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 32px;
        color: var(--black);
    }

.learn-more-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 24px;
    padding: 14px 38px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s, background 0.2s, color 0.2s;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .learn-more-btn:hover {
        background: var(--aqua);
        color: var(--black);
        transform: scale(1.07);
        box-shadow: 0 6px 20px rgba(233, 75, 75, 0.2);
    }

/* Responsive Design */
@media (max-width: 1100px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 0 16px;
    }

    .left-col, .right-col {
        max-width: 100%;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .main-image {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        gap: 24px;
        padding: 0 8px;
    }

    .left-col, .right-col {
        max-width: 100%;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .main-image {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        padding: 16px 8px;
        gap: 12px;
    }

    .logo {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
    }

    .book-btn {
        width: 100%;
        margin: 8px 0 0 0;
        padding: 10px 0;
    }

    .main-content {
        padding: 0 4px;
        gap: 16px;
    }

    .right-col h2 {
        font-size: 2rem;
    }

    .right-col p {
        font-size: 1rem;
    }

    .learn-more-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px 0;
        text-align: center;
    }
}

/* Ensure box-sizing for all elements 
*, *::before, *::after {
    box-sizing: border-box;
}
    */
/* Team Section Styles */
.team-section {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
    text-align: center;
}

    .team-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 32px;
    }

.team-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.team-member {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 24px;
    max-width: 350px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 32px rgba(233, 75, 75, 0.15);
    }

.member-photo {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
}

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 75, 75, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 12px;
}

.social-link {
    background: var(--white);
    color: var(--red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

    .social-link:hover {
        background: var(--aqua);
    }

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.member-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 16px;
}

.member-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    background: var(--aqua);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--red);
}


/* About Section Styles */
.about-section {
    background: var(--white);
    padding: 48px 0;
    margin: 48px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

    .about-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 24px;
    }

.about-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-item {
    background: var(--cream);
    border: 2px solid var(--aqua);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(166, 232, 234, 0.3);
    }

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
}


/* Trust Section Styles */
.trust-section {
    background: var(--aqua);
    padding: 48px 0;
    margin: 48px 0;
}

.certifications {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    margin-bottom: 48px;
}

    .certifications h3 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 32px;
    }

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cert-item {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
}

    .cert-item:hover {
        transform: scale(1.02);
    }

.cert-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cert-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.cert-info p {
    font-size: 1rem;
    color: var(--black);
    margin: 0;
}

.guarantee-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

    .guarantee-section h4 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 24px;
    }

.guarantee-list {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 24px;
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

    .guarantee-list li {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--black);
        margin-bottom: 12px;
        padding-left: 24px;
        position: relative;
    }

        .guarantee-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .guarantee-list li:last-child {
            margin-bottom: 0;
        }


/* Additional Responsive Design for New Sections */
@media (max-width: 900px) {
    .team-section h2,
    .about-content h2,
    .certifications h3 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cert-badge {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .team-section,
    .about-content,
    .certifications,
    .guarantee-section {
        padding: 0 16px;
    }

        .team-section h2,
        .about-content h2,
        .certifications h3 {
            font-size: 1.8rem;
        }

        .guarantee-section h4 {
            font-size: 1.5rem;
        }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .member-stats {
        flex-direction: column;
        gap: 8px;
    }

    .guarantee-list {
        padding: 16px;
    }

        .guarantee-list li {
            font-size: 1rem;
        }
}

/* Service Tags - Scrolling Animation */
.service-tags {
    margin: 16px 0 32px 0;
    color: var(--red);
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    position: relative;
    width: 100vw;
    overflow: hidden;
    animation: moveTags 25s linear infinite;
}

    .service-tags span {
        white-space: nowrap;
        padding: 6px 12px;
    }

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

    100% {
        transform: translateX(100%);
    }
}

/* Testimonials Gallery Section */
.testimonials-gallery {
    margin: 32px auto;
    max-width: 1200px;
    padding: 0 24px;
}

.testimonials-row, .gallery-row {
    display: flex;
    gap: 24px;
    justify-content: left;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.testimonial {
    border: 2px solid var(--red);
    background: var(--white);
    border-radius: 8px;
    padding: 18px 22px;
    font-size: 1.05rem;
    color: var(--black);
    max-width: 340px;
    min-width: 220px;
    margin-bottom: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(233, 75, 75, 0.15);
    }

.gallery-img {
    width: 320px;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--cream);
    border: 2px solid var(--red);
    transition: transform 0.3s ease;
}

    .gallery-img:hover {
        transform: scale(1.03);
    }

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    max-width: 400px;
    margin: 32px auto;
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.review-slide {
    display: none;
    text-align: center;
}

    .review-slide.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stars {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.review-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.reviewer {
    font-weight: 600;
    color: var(--black);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .prev-btn:hover, .next-btn:hover {
        background: var(--aqua);
        color: var(--black);
    }

.prev-btn {
    left: -16px;
}

.next-btn {
    right: -16px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .testimonials-row, .gallery-row {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .gallery-img {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .gallery-img {
        width: 100%;
        max-width: 400px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .testimonials-row, .gallery-row {
        gap: 12px;
    }

    .testimonial {
        font-size: 0.98rem;
        padding: 12px 8px;
        min-width: 100%;
    }

    .gallery-img {
        height: 120px;
        width: 100%;
    }

    .reviews-carousel {
        padding: 16px;
        max-width: 90%;
    }
}
