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

html {
    background: #111827;
}

:root {
    --purple-dark: #54176b;
    --purple-mid: #7a2299;
    --purple-light: #b86fd1;
    --purple-pale: #e8d0f0;
    --purple-faint: #f6eefa;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--purple-pale);
    z-index: 1000;
    padding: 0 3rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 82px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-dark);
    transition: width 0.2s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--purple-dark);
}

/* ── PAGE WRAPPER ── */
.page {
    padding-top: 100px;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(150deg, #ffffff 0%, #f5f3ff 45%, #ede9fe 100%);
    padding: 7rem 3rem 6rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--purple-pale);
    color: var(--purple-dark);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--purple-dark);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto 2.75rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: var(--purple-dark);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(84, 23, 107, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--purple-dark);
    color: var(--purple-dark);
}

.btn-outline:hover {
    background: var(--purple-faint);
    box-shadow: none;
}

/* ── SECTIONS ── */
section {
    padding: 5.5rem 3rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.section-alt {
    background: var(--purple-faint);
}

/* ── CARDS ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

.card {
    background: white;
    border: 1px solid var(--purple-pale);
    border-radius: 14px;
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
    box-shadow: 0 10px 36px rgba(84, 23, 107, 0.12);
    transform: translateY(-5px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--purple-faint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.68;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #54176b 0%, #7a2299 100%);
    color: white;
    text-align: center;
    padding: 3rem 3rem;
}

.cta-banner .section-label {
    color: var(--purple-light);
}

.cta-banner .section-title {
    color: white;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.cta-banner .btn {
    background: white;
    color: var(--purple-dark);
}

.cta-banner .btn:hover {
    background: var(--purple-faint);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ── ABOUT PAGE ── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-text {
    font-size: 1.03rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--purple-faint) 100%);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 1px solid var(--purple-pale);
}

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

.value-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--purple-mid);
    box-shadow: 0 2px 12px rgba(84, 23, 107, 0.06);
}

.value-item h4 {
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ── SERVICES PAGE ── */
.service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.75rem;
    background: white;
    border: 1px solid var(--purple-pale);
    border-radius: 14px;
    padding: 2.25rem;
    margin-bottom: 1.75rem;
    transition: box-shadow 0.25s, transform 0.25s;
    align-items: start;
}

.service-card:hover {
    box-shadow: 0 8px 28px rgba(84, 23, 107, 0.11);
    transform: translateY(-3px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-faint);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 1rem;
}

.service-card ul {
    padding-left: 1.1rem;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.9;
}

.service-card ul li::marker {
    color: var(--purple-mid);
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-faint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-form {
    background: var(--purple-faint);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--purple-pale);
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--purple-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple-mid);
    box-shadow: 0 0 0 3px rgba(84, 23, 107, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--purple-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 3rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.83rem;
    text-align: center;
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
}

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

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
        flex-wrap: wrap;
        height: auto;
        min-height: 80px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 1.5rem;
        padding: 1rem 1rem 1.25rem;
        border-top: 1px solid var(--purple-pale);
    }

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

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1rem;
        font-weight: 600;
        border-bottom: none;
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 5.5rem 1.5rem 4rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 52px;
        height: 52px;
    }

    footer {
        padding: 2.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 20px));
    }
}
