:root {
    --purple: #6B21A8;
    --purple-mid: #7C3AED;
    --purple-light: #EDE9FE;
    --red: #DC2626;
    --red-light: #FEE2E2;
    --off-white: #FAF9FF;
    --white: #FFFFFF;
    --text-dark: #1C1028;
    --text-mid: #4B4060;
    --text-soft: #7B6E8D;
    --border: #E8E2F4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
    background: var(--white);
    border-bottom: 3px solid var(--purple);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(107, 33, 168, 0.08);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--purple) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--red);
}

.nav-link {
    color: var(--text-mid) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.4rem 0.85rem !important;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: var(--purple) !important;
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    border-radius: 6px;
    padding: 0.4rem 1.1rem !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: #b91c1c;
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: var(--purple);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236B21A8' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── BADGE STRIP ────────────────────────────── */
.top-strip {
    background: var(--purple);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.top-strip i {
    color: #F0ABFC;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #F5F0FF 0%, #FFF0F0 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 1.1rem;
}

.hero h1 span {
    color: var(--purple);
}

.hero p.lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: var(--purple-mid);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 0.78rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: var(--red);
    color: var(--white);
}

.hero-phone-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.10);
}

.hero-phone-card .phone-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.5px;
    display: block;
}

.hero-phone-card .avail {
    background: var(--purple-light);
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 320px;
    border: 3px solid var(--border);
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.10);
}

/* ─── SECTION SHARED ─────────────────────────── */
section {
    padding: 4.5rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--purple);
}

.section-sub {
    font-size: 1.02rem;
    color: var(--text-soft);
    font-weight: 300;
    max-width: 560px;
}

.divider-line {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--red));
    border-radius: 4px;
    margin: 1rem 0 1.5rem;
}

/* ─── ABOUT ──────────────────────────────────── */
#about {
    background: var(--white);
}

.about-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.12);
    border: 3px solid var(--border);
}

.about-stat {
    background: var(--purple-light);
    border-left: 4px solid var(--purple);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.about-stat h4 {
    font-size: 1.6rem;
    color: var(--purple);
    font-weight: 900;
    margin-bottom: 0.1rem;
}

.about-stat p {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin: 0;
}

.about-stat-red {
    border-left-color: var(--red);
    background: var(--red-light);
}

.about-stat-red h4 {
    color: var(--red);
}

/* ─── SERVICES ───────────────────────────────── */
#services {
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--purple), var(--red));
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 1.1rem;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0;
}

/* ─── SERVICE AREA ───────────────────────────── */
#area {
    background: linear-gradient(135deg, var(--purple) 0%, #4C1D95 100%);
}

#area .section-label {
    color: #F0ABFC;
}

#area .section-label::before {
    background: #F0ABFC;
}

#area .section-title {
    color: var(--white);
}

#area .section-title span {
    color: #F9A8D4;
}

#area .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.area-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
}

.area-card i {
    font-size: 2.2rem;
    color: #F0ABFC;
    margin-bottom: 0.75rem;
    display: block;
}

.area-card h5 {
    color: var(--white);
    font-family: 'DM Sans';
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.area-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin: 0;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
}

.location-pill i {
    color: #F9A8D4;
}

/* ─── WHY CHOOSE US ──────────────────────────── */
#why {
    background: var(--white);
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    margin-bottom: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--red-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--red);
}

.why-item h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 0;
}

/* ─── CONTACT ────────────────────────────────── */
#contact {
    background: var(--off-white);
}

.contact-big-phone {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
    display: block;
    line-height: 1.1;
}

.contact-email {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--purple);
    font-weight: 600;
    word-break: break-all;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(107, 33, 168, 0.07);
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--purple-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--purple);
}

.contact-info-row h6 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-soft);
    margin: 0 0 0.15rem;
}

.contact-info-row p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.97rem;
}

.avail-badge {
    background: #DCFCE7;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.avail-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

footer .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}

footer .brand span {
    color: #F472B6;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--white);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.45rem;
}

footer h6 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.25rem;
}

.footer-bottom {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-right: 0.4rem;
}

.footer-social a:hover {
    background: var(--purple);
    color: var(--white);
}

.purple-dot {
    color: var(--red);
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-phone-card .phone-num {
        font-size: 1.5rem;
    }
}