/* ============================================
   NANMA LABS — COMPLETE HOMEPAGE STYLESHEET
   (All purples harmonized around #5f1f92)
   ============================================ */

:root {
    --bg-dark: #5f1f92;
    --brand-purple: #5f1f92;
    --brand-yellow: #FFF100;
    --white: #ffffff;
    --light-bg: #f3edf8;
    --text-dark: #5f1f92;
    --text-muted: #555;
    --gradient-purple: linear-gradient(135deg, #5f1f92 0%, #4a1773 50%, #351060 100%);
    --shadow-soft: 0 10px 40px rgba(95, 31, 146, 0.1);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-md: 15px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: clip;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.65s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: none !important;
    filter: none !important;
    will-change: auto;
}

.reveal-up {
    transform: translateY(48px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(-55px);
}

.reveal-right {
    transform: translateX(55px);
}

.reveal-scale {
    transform: scale(0.88);
}

.reveal-blur {
    filter: blur(10px);
    transform: translateY(24px);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.45s;
}

.reveal-delay-5 {
    transition-delay: 0.6s;
}


/* ============================================
   NAVBAR
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.purple-strip {
    background-color: var(--bg-dark);
    height: 60px;
    width: 100%;
}

.island-nav {
    background-color: #ffffff;
    max-width: 1250px;
    width: 95%;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

.logo img {
    height: 75px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    text-decoration: none;
    color: #2d0a47;
    font-weight: 400;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-purple);
}

.nav-links a.active {
    font-weight: 700;
}

.btn-book {
    background-color: var(--brand-purple);
    color: var(--light-bg);
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 31, 146, 0.3);
}

.mobile-only {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    z-index: 10000;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--brand-purple);
    border-radius: 5px;
    transition: 0.3s;
    display: block;
    max-width: none;
    min-width: 26px;
}

.nav-links .mobile-only .btn-book {
    display: inline-block;
    margin-top: 10px;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: url("/homepage/Group 106.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 155px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    min-height: 300px;
}

.hero-text {
    background: var(--gradient-purple);
    border-radius: 18px;
    padding: 35px 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
    max-width: 600px;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 320px;
}

.btn-hero {
    display: inline-block;
    background-color: var(--white);
    color: var(--brand-purple);
    padding: 11px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-image {
    position: absolute;
    right: 2%;
    bottom: 0%;
    z-index: 3;
    pointer-events: none;
}

.hero-image img {
    height: 390px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.hero-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 25px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-purple);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(95, 31, 146, 0.2), transparent);
    flex-shrink: 0;
}


/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */

.contact-booking {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-booking-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-purple);
    line-height: 1.25;
    margin-bottom: 18px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-call {
    background: var(--gradient-purple);
}

.btn-whatsapp i,
.btn-call i {
    font-size: 22px;
}

.btn-whatsapp:hover,
.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp span,
.btn-call span {
    line-height: 1.3;
}

.btn-whatsapp strong,
.btn-call strong {
    font-size: 17px;
}


/* ============================================
   POPULAR CHECKUPS SECTION
   ============================================ */

.popular-checkups {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('homepage/checkups-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popular-checkups::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(210, 195, 230, 0.92) 0%,
            rgba(175, 145, 210, 0.85) 40%,
            rgba(155, 120, 200, 0.8) 100%);
    z-index: 1;
}

.checkups-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.popular-checkups h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 6px;
}

.section-subtitle {
    text-align: left;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.checkup-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.checkup-card {
    background: linear-gradient(145deg,
            rgba(120, 70, 180, 0.55) 0%,
            rgba(95, 31, 146, 0.45) 50%,
            rgba(75, 20, 130, 0.4) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px 24px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkup-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(95, 31, 146, 0.25);
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.checkup-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    flex: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.checkup-card p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.8;
}


/* ============================================
   TRUST & PRECISION SECTION
   ============================================ */

.trust-section {
    padding: 100px 0;
    background-color: var(--white);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--brand-purple);
    color: var(--brand-purple);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--brand-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 31, 146, 0.25);
}

.trust-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}


/* ============================================
   CTA BANNER SECTION
   ============================================ */

.cta-banner {
    background-color: #5f1f92;
    overflow: hidden;
}

.cta-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.cta-text {
    flex: 1;
    padding: 60px 50px;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--light-bg);
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--brand-purple);
    padding: 16px 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* ============================================
   HOME SAMPLE COLLECTION SECTION
   ============================================ */

.home-collection {
    padding: 100px 0;
    background-color: var(--white);
}

.collection-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.collection-text {
    flex: 1;
    padding-top: 20px;
}

.collection-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.collection-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.collection-text .btn-outline {
    margin-top: 10px;
}

.collection-form {
    flex: 1;
}

.form-card {
    background: #5f1f92;
    border: 2px solid #d4c4e6;
    border-radius: var(--radius-lg);
    padding: 40px 35px;
}

.form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 8px;
    text-align: center;
}

.form-card>p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    border-color: var(--brand-purple);
}

.form-group input::placeholder {
    color: #aaa;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--brand-purple);
    color: var(--white);
    border: 2px solid var(--brand-purple);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--brand-purple);
}


/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background-color: #ffffff;
    padding: 80px 0 40px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 50px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    text-decoration: none;
    font-size: 24px;
    color: #5f1f92;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    color: #FFF100;
    transform: translateY(-5px);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

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

.link-column h4 {
    color: #2d0a47;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.link-column a {
    text-decoration: none;
    color: #5f1f92;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #2d0a47;
}

.footer-bottom {
    max-width: 1250px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    font-style: italic;
    font-size: 18px;
    color: #2d0a47;
    opacity: 0.8;
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */

#wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: transform 0.3s ease;
}

#wa-float:hover {
    transform: scale(1.1);
}

#wa-float a {
    text-decoration: none;
    color: white;
    display: flex;
}


/* ============================================================
   TABLET — max-width: 992px
   ============================================================ */

@media (max-width: 992px) {

    /* ---- NAVBAR ---- */
    .hamburger {
        display: flex !important;
    }

    .nav-actions {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hamburger span {
        max-width: none !important;
        min-width: 26px !important;
        width: 26px !important;
        height: 3px !important;
        display: block !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 115px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 1250px;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 26px 24px 30px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
        z-index: 9997;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        font-weight: 500;
        color: #2d0a47;
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: var(--brand-purple);
    }

    .nav-links a.active {
        font-weight: 700;
    }

    .nav-links .mobile-only {
        display: block;
    }

    .nav-links .mobile-only .btn-book {
        display: inline-block;
        margin-top: 4px;
        padding: 13px 32px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* ---- HERO ---- */
    .hero {
        padding-top: 150px;
        padding-bottom: 28px;
        overflow: hidden;
    }

    .hero-content {
        min-height: auto;
        padding: 0 20px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        padding: 28px 24px 32px;
        text-align: center;
        align-items: center;
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 26px;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 14px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        padding: 24px 20px 0;
        background: rgba(95, 31, 146, 0.08);
        border-radius: 14px;
        margin: 20px 20px 0;
        overflow: hidden;
    }

    .stat-item {
        background: var(--white);
        padding: 18px 10px;
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
        line-height: 1.4;
    }

    /* ---- CONTACT BOOKING ---- */
    .contact-booking {
        padding: 60px 0;
    }

    .contact-booking-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .contact-image {
        width: 100%;
    }

    .contact-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .contact-info p {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
    }

    /* ---- CHECKUPS ---- */
    .popular-checkups {
        padding: 56px 0;
    }

    .popular-checkups h2 {
        font-size: 26px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .checkup-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* ---- TRUST ---- */
    .trust-section {
        padding: 60px 0;
    }

    .trust-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 26px;
    }

    .trust-image {
        width: 100%;
    }

    .trust-image img {
        height: 250px;
        width: 100%;
        border-radius: var(--radius-md);
    }

    /* ---- CTA BANNER ---- */
    .cta-inner {
        flex-direction: column;
    }

    .cta-image {
        display: none;
    }

    .cta-text {
        text-align: center;
        padding: 50px 28px 54px;
        width: 100%;
    }

    .cta-text h2 {
        font-size: 26px;
    }

    .cta-text p {
        font-size: 15px;
    }

    /* ---- HOME COLLECTION ---- */
    .home-collection {
        padding: 60px 0;
    }

    .collection-inner {
        flex-direction: column;
        gap: 28px;
    }

    .collection-text {
        text-align: center;
        padding-top: 0;
    }

    .collection-text h2 {
        font-size: 26px;
    }

    /* ---- FOOTER ---- */
    .main-footer {
        padding: 52px 0 30px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
    }

    .link-column {
        min-width: 110px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 36px;
    }

    /* ---- WA FLOAT ---- */
    #wa-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}


/* ============================================================
   MOBILE — max-width: 600px
   ============================================================ */

@media (max-width: 600px) {

    .reveal-left,
    .reveal-right {
        transform: translateY(20px) !important;
    }

    .reveal-up {
        transform: translateY(20px);
    }

    section,
    .container,
    .hero-content,
    .checkups-container,
    .cta-inner,
    .collection-inner,
    .contact-booking-inner,
    .trust-inner,
    .footer-container {
        max-width: 100% !important;
        overflow-x: clip !important;
    }

    /* ---- NAVBAR ---- */
    .hamburger {
        display: flex !important;
    }

    .hamburger span {
        max-width: none !important;
        min-width: 26px !important;
        width: 26px !important;
        height: 3px !important;
        display: block !important;
        background: var(--brand-purple) !important;
    }

    .purple-strip {
        height: 48px;
    }

    .island-nav {
        height: 66px;
        width: 90%;
        padding: 0 12px 0 14px;
        border-radius: 14px;
        top: 10px;
    }

    .logo img {
        height: 48px;
    }

    .nav-links {
        width: 92%;
        padding: 20px 18px 24px;
        gap: 16px;
        border-radius: 0 0 16px 16px;
        top: 90px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-links .mobile-only .btn-book {
        padding: 12px 28px;
        font-size: 13px;
        color: var(--light-bg) !important;
    }

    /* ---- HERO ---- */
    .hero {
        padding-top: 112px;
        padding-bottom: 0;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 14px;
    }

    .hero-text {
        padding: 22px 16px 26px;
        border-radius: 14px;
        margin-top: 0;
        text-align: center;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 20px;
        line-height: 1.35;
        max-width: 100%;
        margin-bottom: 9px;
    }

    .hero-text p {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .btn-hero {
        padding: 11px 24px;
        font-size: 12px;
    }

    .hero-image {
        display: none !important;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        padding: 18px 14px 0;
        background: rgba(95, 31, 146, 0.09);
        border-radius: 14px;
        margin: 14px 14px 0;
        overflow: hidden;
    }

    .stat-item {
        background: var(--white);
        padding: 15px 8px;
        text-align: center;
    }

    .stat-number {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 10px;
        font-weight: 600;
        line-height: 1.3;
    }

    /* ---- CONTACT BOOKING ---- */
    .contact-booking {
        padding: 44px 0;
    }

    .contact-booking-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-image {
        display: none;
    }

    .contact-info h2 {
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        border-radius: 12px;
        font-size: 14px;
        gap: 10px;
    }

    .btn-whatsapp i,
    .btn-call i {
        font-size: 20px;
        flex-shrink: 0;
    }

    .btn-whatsapp strong,
    .btn-call strong {
        font-size: 15px;
    }

    /* ---- CHECKUPS ---- */
    .popular-checkups {
        padding: 44px 0;
    }

    .popular-checkups h2 {
        font-size: 21px;
        text-align: center;
        margin-bottom: 5px;
    }

    .section-subtitle {
        text-align: center;
        font-size: 13px;
        margin-bottom: 22px;
    }

    .checkup-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkup-card {
        padding: 18px 16px 16px;
        border-radius: 13px;
    }

    .checkup-card h3 {
        font-size: 15px;
    }

    .checkup-card p {
        font-size: 13px;
    }

    .card-top {
        margin-bottom: 10px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
    }

    .card-icon img {
        width: 26px;
        height: 26px;
    }

    /* ---- TRUST ---- */
    .trust-section {
        padding: 44px 0;
    }

    .trust-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .trust-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .trust-image {
        display: none;
    }

    .btn-outline {
        padding: 12px 26px;
        font-size: 13px;
    }

    /* ---- CTA BANNER ---- */
    .cta-image {
        display: none;
    }

    .cta-text {
        padding: 38px 18px 42px;
        text-align: center;
        width: 100%;
    }

    .cta-text h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .cta-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .btn-cta {
        padding: 13px 30px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* ---- HOME COLLECTION ---- */
    .home-collection {
        padding: 44px 0;
    }

    .collection-inner {
        flex-direction: column;
        gap: 22px;
    }

    .collection-text {
        text-align: center;
        padding-top: 0;
    }

    .collection-text h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .collection-text p {
        font-size: 13px;
    }

    .form-card {
        padding: 22px 14px 18px;
        border-radius: 13px;
    }

    .form-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .form-card>p {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .form-group {
        margin-bottom: 13px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .form-group input {
        padding: 12px 13px;
        font-size: 14px;
        border-radius: 9px;
    }

    .btn-submit {
        padding: 13px;
        font-size: 14px;
        border-radius: 9px;
    }

    /* ---- FOOTER ---- */
    .main-footer {
        padding: 40px 0 22px;
    }

    .footer-container {
        gap: 22px;
        padding: 0 14px;
    }

    .footer-logo {
        height: 48px;
    }

    .footer-socials {
        gap: 14px;
        justify-content: center;
        margin-top: 14px;
    }

    .footer-socials a {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
    }

    .link-column {
        flex: 1;
        min-width: unset;
        gap: 10px;
    }

    .link-column h4 {
        font-size: 14px;
    }

    .link-column a {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 26px;
        text-align: center;
        padding: 0 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    /* ---- WA FLOAT ---- */
    #wa-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 14px;
        right: 14px;
    }
}


/* ============================================
   PROMO POPUP
   ============================================ */

#nanmaPopup {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 20, 0.75);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: popupFadeIn 0.35s ease;
}

#nanmaPopup.popup-closing {
    animation: popupFadeOut 0.3s ease forwards;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.popup-box {
    background: #fff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(95, 31, 146, 0.35);
    animation: popupSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes popupSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(95, 31, 146, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand-purple);
    z-index: 10;
    transition: background 0.2s ease;
}

.popup-close-btn:hover {
    background: rgba(95, 31, 146, 0.18);
}

.popup-offer-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.popup-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-offer-body {
    padding: 28px 32px 32px;
    text-align: center;
}

.popup-tag {
    display: inline-block;
    background: rgba(95, 31, 146, 0.08);
    color: var(--brand-purple);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.popup-offer-body h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 10px;
}

.popup-offer-body h2 span {
    color: var(--brand-purple);
}

.popup-offer-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-purple);
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(95, 31, 146, 0.35);
}

#popupStageForm {
    flex-direction: column;
    padding: 36px 32px 32px;
}

.popup-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.popup-form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 8px 0 6px;
}

.popup-form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.popup-form {
    width: 100%;
}

.popup-form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.popup-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup-form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.popup-form-group input,
.popup-form-group select {
    padding: 11px 14px;
    border: 2px solid #d4c4e6;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background: #f7f3fb;
    transition: border-color 0.3s ease;
    width: 100%;
}

.popup-form-group input:focus,
.popup-form-group select:focus {
    border-color: var(--brand-purple);
}

.popup-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f1f92' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.popup-submit-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: var(--brand-purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
}

.popup-submit-btn:hover:not(:disabled) {
    background: #6d2aa6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 31, 146, 0.3);
}

.popup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.popup-form-note {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
    font-style: italic;
}

.popup-confirm-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 55px 40px;
    text-align: center;
}

.popup-confirm-icon {
    font-size: 64px;
    color: #25D366;
    margin-bottom: 20px;
    animation: confirmPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes confirmPop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-confirm-box h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.popup-confirm-box p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 360px;
}

.popup-redirect-note {
    font-size: 13px !important;
    color: #bbb !important;
    margin-top: 18px;
    font-style: italic;
}

/* Popup — Mobile */
@media (max-width: 600px) {
    #nanmaPopup {
        padding: 14px;
    }

    .popup-box {
        border-radius: 16px;
    }

    .popup-offer-img {
        height: 170px;
    }

    .popup-offer-body {
        padding: 18px 16px 22px;
    }

    .popup-offer-body h2 {
        font-size: 19px;
    }

    #popupStageForm {
        padding: 22px 14px 18px;
    }

    .popup-form-row {
        flex-direction: column;
        gap: 10px;
    }

    .popup-form-header h2 {
        font-size: 19px;
    }

    .popup-confirm-box {
        padding: 36px 18px;
    }

    .popup-confirm-icon {
        font-size: 50px;
    }

    .popup-confirm-box h2 {
        font-size: 20px;
    }
}

.popup-image-only {
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.popup-image-only .popup-close-btn {
    background: rgba(255, 255, 255, 0.9);
    top: 10px;
    right: 10px;
}


/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background-image: url('/about/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 165px;
    padding-bottom: 65px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(95, 31, 146, 0.78) 0%,
            rgba(75, 20, 120, 0.65) 45%,
            rgba(160, 120, 200, 0.35) 100%);
    z-index: 1;
}

.about-hero-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    flex: 1;
}

.about-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-yellow);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 241, 0, 0.35);
}

.about-hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
}

.about-hero-text>p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 400px;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 5px;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-features {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
    align-items: flex-end;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.027);
    border: 1px solid rgb(255, 255, 255);
    padding: 12px 26px;
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 380px;
}

.feature-pill:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.pill-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
}

.who-we-are {
    padding: 90px 0;
    background-color: var(--white);
}

.who-inner {
    display: flex;
    align-items: center;
    gap: 55px;
}

.who-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
}

.who-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(95, 31, 146, 0.1);
}

.who-text {
    flex: 1;
}

.who-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.who-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.btn-purple {
    display: inline-block;
    background-color: var(--brand-purple);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(95, 31, 146, 0.3);
}

.mission-vision {
    padding: 70px 0;
    background-image: url('main/about-hero-bg.png');
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(95, 31, 146, 0.82) 0%, rgba(109, 42, 166, 0.72) 50%, rgba(160, 120, 200, 0.45) 100%);
    z-index: 1;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mv-cards {
    display: flex;
    gap: 35px;
}

.mv-card {
    flex: 1;
    padding: 42px 38px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mission-card {
    background: rgba(95, 31, 146, 0.5);
}

.vision-card {
    background: rgba(75, 20, 120, 0.55);
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.core-values {
    padding: 80px 0 70px;
    background-color: var(--white);
}

.values-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.values-curve {
    position: absolute;
    top: 3;
    left: 15%;
    width: 70%;
    z-index: 0;
    pointer-events: none;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--white);
}

.value-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 8px;
    font-style: italic;
}

.value-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.about-cta {
    padding: 60px 0;
    background: transparent;
}

.about-cta .container {
    background: linear-gradient(135deg, #7a35b5 0%, #5f1f92 40%, #4a1773 100%);
    border-radius: 25px;
    padding: 55px 50px;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-cta-text {
    flex: 1;
}

.about-cta-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

.about-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.about-cta-form {
    flex: 1;
}

.about-cta-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.cta-input-row {
    display: flex;
    gap: 0;
}

.cta-input-row input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-input-row input:focus {
    border-color: var(--brand-yellow);
}

.btn-cta-submit {
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--brand-purple);
    border: 2px solid var(--white);
    border-radius: 0 10px 10px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-submit:hover {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-purple);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-style: italic;
}

/* About — Tablet */
@media (max-width: 992px) {
    .about-hero {
        padding-top: 158px;
        padding-bottom: 48px;
    }

    .about-hero-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-hero-text>p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-hero-features {
        width: 100%;
        align-items: center;
    }

    .feature-pill {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .who-inner {
        flex-direction: column;
        text-align: center;
    }

    .who-image img {
        height: 260px;
    }

    .mv-cards {
        flex-direction: column;
        gap: 20px;
    }

    .values-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .values-curve {
        display: none;
    }

    .about-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-cta .container {
        padding: 40px 28px;
    }
}

/* About — Mobile */
@media (max-width: 600px) {
    .about-hero {
        padding-top: 132px;
        padding-bottom: 38px;
    }

    .about-hero-text h1 {
        font-size: 23px;
    }

    .about-hero-text>p {
        font-size: 13px;
        max-width: 100%;
    }

    .about-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .about-hero-buttons .btn-whatsapp,
    .about-hero-buttons .btn-call {
        width: 100%;
        justify-content: center;
    }

    .feature-pill {
        font-size: 13px;
        padding: 10px 14px;
        min-width: unset;
        width: 100%;
    }

    .who-we-are {
        padding: 44px 0;
    }

    .who-text h2 {
        font-size: 21px;
    }

    .who-image img {
        height: 200px;
    }

    .mission-vision {
        padding: 40px 0;
    }

    .mv-card {
        padding: 24px 18px;
    }

    .mv-card h3 {
        font-size: 19px;
    }

    .mv-card p {
        font-size: 13px;
    }

    .core-values {
        padding: 40px 0;
    }

    .value-item {
        padding: 0 8px;
    }

    .value-item h4 {
        font-size: 16px;
    }

    .about-cta {
        padding: 28px 0;
    }

    .about-cta .container {
        padding: 26px 14px;
        border-radius: 14px;
    }

    .about-cta-text h2 {
        font-size: 19px;
    }

    .about-cta-text p {
        font-size: 13px;
    }

    .cta-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .cta-input-row input {
        border-right: 2px solid rgba(255, 255, 255, 0.25);
        border-radius: 10px;
    }

    .btn-cta-submit {
        border-radius: 10px;
        width: 100%;
    }
}