/* Luxury MediSpa Home V2 Styles */

:root {
    --spa-black: #000000;
    --spa-white: #ffffff;
    --spa-beige: #f8f5f2;
    --spa-grey: #f4f4f4;
    --spa-text-grey: #666666;
}

.home-v2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--spa-black);
}

.home-v2 .outer {
    padding-left: 15px !important;
    padding-right: 15px !important;
}



.home-v2 section.outer:last-child {
    margin-bottom: 0;
}

.home-v2 .inner {
    max-width: 100% !important;
    width: 100% !important;
}

.hero-v2 {
    padding: 20px 0 !important;
}

.hero-v2 .inner {
    max-width: 98% !important;
    width: 98% !important;
}



/* Hero V2 */
.hero-v2 {
    padding: 10px 0 !important;
}

.hero-v2-inner {
    position: relative;
    aspect-ratio: 727 / 259;
    width: 100%;
    background-image: url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    display: flex;
    align-items: center;
    overflow: visible;
    /* Allow card to potentially overflow if ratio is too thin */
}

.hero-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    width: 45%;
    max-width: 600px;
    margin: 50px 0 50px 60px;
    border-radius: 45px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.hero-card .badge {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-card h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin: 0 0 25px 0;
    font-weight: 800;
    color: var(--spa-black);
}

.hero-card p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #111;
    font-weight: 500;
}

.btn-book {
    display: inline-block;
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 12px 45px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 12px;
    font-size: 1.4rem;
}

/* Solutions */
.solutions {
    padding: 100px 0;
    text-align: center;
}

.solutions-header {
    margin-bottom: 60px;
}

.solutions-header h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 20px;
}

.badge-dark {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.sol-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.sol-icon img {
    height: 80px;
    width: auto;
    display: inline-block;
}


.sol-item h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.sol-item p {
    color: var(--spa-text-grey);
    line-height: 1.6;
}

/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.brand-item {
    background: var(--spa-grey);
    padding: 20px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    font-size: 1.4rem;
    border-radius: 8px;
    border: 1px solid #eee;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    /* Fixed height for uniformity */
    width: 100%;
}

.brand-item img {
    max-width: 80%;
    /* Prevent logo from touching edges too much */
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    display: block;
}

/* Feature Dark */
/* Feature Dark */
.feature-dark {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 80px 0 !important;
    /* Reduced vertical padding */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 300px;
    /* Increased side padding to match FAQ section exact alignment */
}

.feature-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--spa-white);
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.6rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1.6rem;
}

.check-list li::before {
    content: '✓';
    margin-right: 10px;
    color: var(--spa-white);
    font-weight: 900;
}

.btn-white {
    display: inline-block;
    background: var(--spa-white);
    color: var(--spa-black);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 40px;
    font-size: 1rem;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white:hover {
    transform: scale(1.05);
}

.feature-image img {
    width: 100%;
    /* padding: 20px; Removed padding for tighter look */
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testi-header h2 {
    font-size: 3.6rem;
}

.btn-small-dark {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.google-badge {
    text-align: center;
    margin-bottom: 60px;
}

.g-stars {
    color: #fbbc05;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.review-card .stars {
    color: #fbbc05;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card .reviewer {
    font-weight: 700;
    font-size: 1.3rem;
}

/* FAQ */
/* FAQ */
.faq {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 120px 0 !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    /* Fixed width for intro, rest for questions */
    gap: 100px;
    align-items: start;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 300px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--spa-white);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.faq-intro h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--spa-white);
    color: var(--spa-black);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.6rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    margin-bottom: 24px;
    line-height: 1.6;
    color: #333;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    /* max-height handled by JS */
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

.icon-plus {
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1;
    transition: transform 0.3s;
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
}

/* Booking */
.booking {
    padding: 100px 0 !important;
    background: var(--spa-beige);
    text-align: center;
}

.booking h2 {
    font-size: 3.6rem;
    margin-bottom: 20px;
}

.booking p {
    font-size: 1.8rem;
    color: var(--spa-text-grey);
    margin-bottom: 60px;
}

.appointment-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 1.6rem;
}

.appointment-form textarea {
    border-radius: 20px;
    margin-bottom: 20px;
}

.btn-form {
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 15px 40px;
    border-radius: 40px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.6rem;
}

/* Footer Adjustments */
.site-footer {
    background: var(--spa-black) !important;
    color: var(--spa-white) !important;
    padding: 80px 0 !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
}

.footer-logo {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-col h4 {
    color: var(--spa-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--spa-white);
    width: fit-content;
    cursor: pointer;
}

.social-item:hover .social-icon {
    transform: scale(1.1);
}

.social-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.wechat-container {
    position: relative;
}

.wechat-qr {
    display: none;
    position: absolute;
    bottom: 50px;
    /* Center relevant to the icon size approximately, or just left align */
    left: 0;
    width: 300px;
    /* Doubled size */
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.wechat-qr img {
    width: 100%;
    display: block;
}

.wechat-container:hover .wechat-qr {
    display: block;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Base Responsive */
@media (max-width: 991px) {
    .hero-v2-content {
        padding: 0 20px;
    }

    .hero-card {
        padding: 30px;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .solutions-grid,
    .reviews-grid,
    .feature-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .gh-head-inner {
        grid-template-columns: 1fr auto !important;
    }

    .gh-head-menu {
        display: none;
    }

    .hero-v2-inner {
        aspect-ratio: auto !important;
        height: auto !important;
        min-height: 500px !important;
        padding: 40px 20px !important;
        background-position: center;
    }

    /* Responsive Padding Resets */
    .feature-grid,
    .faq-grid {
        padding: 0 !important;
        /* Remove the large desktop padding */
    }

    .solutions,
    .feature-dark,
    .testimonials,
    .faq,
    .booking {
        padding: 60px 0 !important;
    }

    .faq-intro {
        position: static;
        margin-bottom: 30px;
    }

    .faq-intro h2 {
        font-size: 2.5rem;
    }

    /* Mobile Typography */
    .hero-card h1 {
        font-size: 2.8rem;
    }

    .hero-card p {
        font-size: 1.2rem;
    }

    .solutions-header h2,
    .feature-content h2,
    .booking h2 {
        font-size: 2.5rem;
    }

    /* Footer Responsive Override */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        align-items: center;
        justify-content: center;
    }

    .social-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-card h1 {
        font-size: 2.2rem;
    }

    .solutions-header h2,
    .feature-content h2,
    .faq-intro h2 {
        font-size: 2rem;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .sol-icon img {
        height: 60px;
    }
}