:root {
    --magenta: #cc00aa;
    --magenta-light: #e600c0;
    --magenta-dark: #8b007a;
    --purple: #6b006b;
    --white: #ffffff;
    --off-white: #faf5fb;
    --gray: #f3eaf7;
    --text-dark: #2a002a;
    --text-mid: #5a105a;
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 24px rgba(204, 0, 170, 0.13);
    transform: translateY(-100%);
    transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(12px);
}

#navbar.visible {
    transform: translateY(0);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 12px rgba(204, 0, 170, 0.3);
}

.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--magenta-dark);
    line-height: 1.1;
}

.nav-logo-text span {
    color: var(--magenta);
    font-size: 0.72rem;
    font-weight: 600;
    display: block;
}

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

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magenta);
    border-radius: 2px;
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(204, 0, 170, 0.3);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 0, 170, 0.45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--magenta);
    border-radius: 2px;
    transition: all 0.3s;
}


/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0022 0%, #2d0040 35%, #3d0055 60%, #1a0022 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 32px 80px;
}

/* animated mesh blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobDrift 8s ease-in-out infinite;
}

.hero-blob.b1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(204, 0, 170, 0.35), transparent 70%);
    animation-delay: 0s;
}

.hero-blob.b2 {
    width: 350px;
    height: 350px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(107, 0, 180, 0.3), transparent 70%);
    animation-delay: -3s;
}

.hero-blob.b3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 38%;
    background: radial-gradient(circle, rgba(204, 0, 170, 0.15), transparent 70%);
    animation-delay: -5s;
}

@keyframes blobDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.96);
    }
}

/* grid lines decoration */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(204, 0, 170, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(204, 0, 170, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ---- LEFT TEXT ---- */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 0, 170, 0.18);
    border: 1px solid rgba(204, 0, 170, 0.4);
    color: #f0a0e8;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.76rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tag i {
    color: var(--magenta-light);
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.07;
    color: #fff;
    margin-bottom: 14px;
}

.hero-text h1 .grad {
    background: linear-gradient(135deg, #ff66ee, #cc00aa, #8800cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 0.94rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--magenta-light), var(--magenta-dark));
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 28px rgba(204, 0, 170, 0.45);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(204, 0, 170, 0.6);
}

.btn-secondary {
    border: 1.5px solid rgba(204, 0, 170, 0.5);
    color: rgba(255, 255, 255, 0.85);
    padding: 13px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(204, 0, 170, 0.2);
    border-color: var(--magenta);
    color: #fff;
    transform: translateY(-3px);
}

.hero-info {
    display: flex;
    gap: 0;
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(204, 0, 170, 0.18);
    border-radius: 16px;
    overflow: hidden;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
    border-right: 1px solid rgba(204, 0, 170, 0.15);
}

.hero-info-item:last-child {
    border-right: none;
}

.hero-info-item i {
    color: var(--magenta-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-info-item strong {
    color: #fff;
    display: block;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1px;
}

/* ---- RIGHT: MULTI-CIRCLE LAYOUT ---- */
.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* rotating ring decoration */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(204, 0, 170, 0.2);
    pointer-events: none;
}

.hero-ring.r1 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinSlow 20s linear infinite;
}

.hero-ring.r2 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinSlow 14s linear infinite reverse;
    border-style: solid;
    border-color: rgba(204, 0, 170, 0.08);
}

@keyframes spinSlow {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* floating dots */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--magenta);
    pointer-events: none;
}

.hero-dot.d1 {
    width: 10px;
    height: 10px;
    top: 80px;
    right: 60px;
    opacity: 0.5;
    animation: floatDot 4s ease-in-out infinite;
}

.hero-dot.d2 {
    width: 6px;
    height: 6px;
    bottom: 100px;
    left: 50px;
    opacity: 0.35;
    animation: floatDot 5.5s ease-in-out infinite reverse;
}

.hero-dot.d3 {
    width: 14px;
    height: 14px;
    top: 55%;
    left: 20px;
    background: rgba(204, 0, 170, 0.3);
    animation: floatDot 3.8s ease-in-out infinite 1s;
}

@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* MAIN circle — center, large */
.hc-main {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(204, 0, 170, 0.45), 0 0 0 5px rgba(204, 0, 170, 0.25), 0 0 0 12px rgba(204, 0, 170, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    animation: floatMain 6s ease-in-out infinite;
    background: #1a0022;
}

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

@keyframes floatMain {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* TOP-RIGHT circle */
.hc-tr {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    top: 30px;
    right: 40px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(204, 0, 170, 0.3);
    border: 2.5px solid rgba(255, 255, 255, 0.12);
    z-index: 9;
    animation: floatTR 7s ease-in-out infinite 1.2s;
    background: #2a0035;
}

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

@keyframes floatTR {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* BOTTOM-LEFT circle */
.hc-bl {
    position: absolute;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    overflow: hidden;
    bottom: 45px;
    left: 30px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(107, 0, 107, 0.4);
    border: 2.5px solid rgba(255, 255, 255, 0.1);
    z-index: 9;
    animation: floatBL 5.5s ease-in-out infinite 2.5s;
    background: #200030;
}

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

@keyframes floatBL {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

/* label badges on circles */
.hc-label {
    position: absolute;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(204, 0, 170, 0.4);
    white-space: nowrap;
    z-index: 20;
}

.hc-main-label {
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.hc-tr-label {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.hc-bl-label {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

/* extra floating circles (same treatment as hc-tr / hc-bl, different slots) */
.hc-float {
    position: absolute;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(204, 0, 170, 0.28);
    border: 2.5px solid rgba(255, 255, 255, 0.12);
    z-index: 11;
    background: #2a0035;
}

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

.hc-float.hc-f1 {
    top: 78px;
    left: 8px;
    animation: floatTR 7s ease-in-out infinite 0.5s;
}

.hc-float.hc-f2 {
    bottom: 78px;
    right: 5px;
    animation: floatBL 5.5s ease-in-out infinite 2s;
}

/* scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(204, 0, 170, 0.6);
    border-bottom: 2px solid rgba(204, 0, 170, 0.6);
    transform: rotate(45deg);
    animation: scrollBounce 1.4s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(7px);
    }
}

/* ===== COMMON ===== */
section {
    padding: 90px 32px;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: #6b406b;
    line-height: 1.7;
    max-width: 580px;
    font-size: 0.97rem;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 90px 32px;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: #6b406b;
    line-height: 1.7;
    max-width: 580px;
    font-size: 0.97rem;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
    background: var(--off-white);
}

.benefits-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(204, 0, 170, 0.08);
    border: 1.5px solid rgba(204, 0, 170, 0.1);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--magenta), var(--purple));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(204, 0, 170, 0.18);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe0f7, #f0c0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--magenta);
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    color: #6b406b;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===== SERVICES SECTION (fullscreen) ===== */
#services {
    min-height: 100vh;
    background: var(--white);
    padding: 90px 32px;
    display: flex;
    align-items: center;
}

.services-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    min-height: 560px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(204, 0, 170, 0.13);
}

.services-list {
    background: linear-gradient(160deg, var(--magenta-dark), var(--purple));
    padding: 0;
}

.service-tab {
    padding: 26px 32px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-tab:last-child {
    border-bottom: none;
}

.service-tab.active {
    background: rgba(255, 255, 255, 0.18);
}

.service-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
}

.service-tab-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.service-tab-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.service-tab-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.services-detail {
    background: #fff;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-panel {
    display: none;
}

.service-detail-panel.active {
    display: block;
}

.service-detail-panel h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-detail-panel p {
    color: #6b406b;
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.97rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-mid);
    font-size: 0.92rem;
}

.service-features li::before {
    content: '✓';
    color: var(--magenta);
    font-weight: 700;
    font-size: 1rem;
}

.service-price {
    display: inline-block;
    background: linear-gradient(135deg, #ffe0f7, #f3d0ff);
    color: var(--magenta-dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ===== ADDITIONAL SERVICES ===== */
#additional {
    background: linear-gradient(135deg, #1a0022 0%, #2e0040 50%, #1a0022 100%);
    padding: 90px 32px;
}

.additional-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-wrap .section-title {
    color: #fff;
}

.additional-wrap .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.add-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.add-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(204, 0, 170, 0.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s;
}

.add-card:hover {
    background: rgba(204, 0, 170, 0.15);
    border-color: var(--magenta);
    transform: translateY(-6px);
}

.add-card i {
    font-size: 2rem;
    color: var(--magenta-light);
    margin-bottom: 14px;
    display: block;
}

.add-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.92rem;
}

.add-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ===== SERVICE AREAS ===== */
#service-areas {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    align-items: center;
    padding: 90px 32px;
}

.areas-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.areas-text .section-sub {
    margin-bottom: 32px;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.area-chip {
    background: #fff;
    border: 1.5px solid rgba(204, 0, 170, 0.15);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-mid);
    transition: all 0.3s;
    cursor: default;
}

.area-chip:hover {
    border-color: var(--magenta);
    color: var(--magenta);
    background: #fff5fd;
}

.area-chip i {
    color: var(--magenta);
    font-size: 0.75rem;
}

.areas-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(204, 0, 170, 0.2);
    background: linear-gradient(135deg, #f0e0ff, #ffe0f7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 2px solid rgba(204, 0, 170, 0.15);
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--magenta);
}

.map-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--magenta-dark);
    font-size: 1.1rem;
}

.map-placeholder span {
    color: #6b406b;
    font-size: 0.85rem;
}

.map-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.map-stat {
    background: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(204, 0, 170, 0.15);
    border: 1px solid rgba(204, 0, 170, 0.12);
    min-width: 100px;
}

.map-stat strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--magenta);
    display: block;
}

.map-stat span {
    font-size: 0.75rem;
    color: var(--text-mid);
    font-weight: 600;
}

/* ===== CONTACT ===== */
#contact {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 90px 32px;
}

.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(204, 0, 170, 0.15);
    min-height: 460px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 460px;
}

.contact-info {
    background: linear-gradient(160deg, var(--magenta-dark), var(--purple));
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 4px;
}

.contact-info-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-detail-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-detail-info p,
.contact-detail-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.5;
}

.contact-detail-info a:hover {
    color: #fff;
}

.contact-cta {
    background: #fff;
    color: var(--magenta-dark);
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 8px;
    align-self: flex-start;
}

.contact-cta:hover {
    background: var(--magenta);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: #0f000f;
    padding: 60px 32px 30px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 1.1rem;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.1;
}

.footer-logo-text span {
    color: var(--magenta-light);
    font-size: 0.7rem;
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--magenta);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s;
}

.footer-col ul li a:hover {
    color: var(--magenta-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: var(--magenta-light);
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.72rem;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--magenta);
    border-bottom: 2px solid var(--magenta);
    transform: rotate(45deg);
    animation: scrollBounce 1.4s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(6px);
    }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .circle-outer {
        width: 260px;
        height: 260px;
    }

    .circle-inner {
        width: 230px;
        height: 230px;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-wrap {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 32px;
        gap: 18px;
        box-shadow: 0 8px 24px rgba(204, 0, 170, 0.12);
    }
}

@media(max-width:600px) {
    .hc-float {
        width: 88px;
        height: 88px;
    }

    .hc-float.hc-f1 {
        top: 56px;
        left: 4px;
    }

    .hc-float.hc-f2 {
        bottom: 56px;
        right: 2px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .map-stats {
        flex-direction: column;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 24px;
    }
}


/* ===== SERVICE AREAS ===== */
#service-areas {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
}

.areas-outer {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.areas-outer .areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(204, 0, 170, 0.13);
    min-height: 600px;
}

.areas-left {
    background: linear-gradient(160deg, var(--magenta-dark), var(--purple));
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
}

.areas-left h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.area-chip-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
}

.area-chip-btn.active,
.area-chip-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.area-chip-btn i.pin {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.area-chip-btn span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 0.88rem;
    flex: 1;
}

.area-chip-btn .area-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    transition: color 0.25s;
}

.area-chip-btn.active .area-arrow,
.area-chip-btn:hover .area-arrow {
    color: #fff;
}

.areas-right {
    background: #fff;
    padding: 50px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.area-panel {
    display: none;
}

.area-panel.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-panel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(204, 0, 170, 0.15);
}

.area-panel h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.area-panel h2 span {
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-panel p {
    color: #6b406b;
    line-height: 1.75;
    font-size: 0.95rem;
}

.area-panel-facts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.area-fact {
    background: #fff5fd;
    border: 1.5px solid rgba(204, 0, 170, 0.15);
    border-radius: 10px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.area-fact i {
    color: var(--magenta);
    font-size: 0.78rem;
}

/* ===== FAQ ===== */
#faq {
    background: linear-gradient(135deg, #fff5fd 0%, #ffe0f7 60%, #f3d0ff 100%);
    padding: 90px 32px;
}

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(204, 0, 170, 0.08);
    border: 1.5px solid rgba(204, 0, 170, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.open {
    box-shadow: 0 8px 32px rgba(204, 0, 170, 0.18);
    border-color: rgba(204, 0, 170, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
}

.faq-q-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe0f7, #f0c0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-q-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.4;
}

.faq-q-city {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--magenta);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    background: rgba(204, 0, 170, 0.09);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 6px;
    display: inline-block;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: transform 0.35s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 4px 26px 26px 82px;
    color: #6b406b;
    line-height: 1.8;
    font-size: 0.93rem;
}

/* ===== COMPREHENSIVE SERVICE ===== */
#comprehensive {
    background: var(--off-white);
    padding: 90px 32px;
}

.comp-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.comp-header {
    text-align: center;
    margin-bottom: 70px;
}

.comp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.comp-block:last-child {
    margin-bottom: 0;
}

.comp-block.reverse .comp-img-wrap {
    order: 2;
}

.comp-block.reverse .comp-text {
    order: 1;
}

.comp-img-wrap {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(204, 0, 170, 0.2);
}

.comp-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.comp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 0, 122, 0.35) 0%, transparent 60%);
}

.comp-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.comp-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.comp-text h3 span {
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-text p {
    color: #6b406b;
    line-height: 1.82;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.comp-list {
    list-style: none;
    margin: 16px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.91rem;
    line-height: 1.5;
}

.comp-list li i {
    color: var(--magenta);
    margin-top: 3px;
    font-size: 0.85rem;
    flex-shrink: 0;
}