/* ======================================
   BLOSSOM WITH ERA — DESIGN SYSTEM
   ====================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Color Palette — Cherry Blossom, serene counselling */
    --clr-primary: hsl(345, 35%, 60%);
    /* Warm cherry blossom rose */
    --clr-primary-dark: hsl(345, 35%, 48%);
    --clr-primary-light: hsl(345, 40%, 93%);
    --clr-accent: hsl(30, 45%, 72%);
    /* Warm golden branch */
    --clr-accent-dark: hsl(30, 40%, 58%);
    --clr-lavender: hsl(330, 25%, 88%);
    --clr-sage: hsl(140, 18%, 82%);

    --clr-bg: hsl(20, 30%, 97%);
    --clr-bg-alt: hsl(340, 20%, 96%);
    --clr-surface: #ffffff;
    --clr-text: hsl(340, 15%, 22%);
    --clr-text-muted: hsl(340, 8%, 48%);
    --clr-text-light: hsl(340, 6%, 65%);

    --clr-hero-grad-start: hsl(340, 28%, 35%);
    --clr-hero-grad-end: hsl(320, 22%, 42%);

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', -apple-system, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fs-hero: clamp(2.8rem, 6vw, 5rem);

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 0.75rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 6rem;
    --sp-section: clamp(4rem, 8vw, 7rem);

    /* Misc */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px hsla(340, 15%, 20%, 0.06);
    --shadow-md: 0 4px 20px hsla(340, 15%, 20%, 0.08);
    --shadow-lg: 0 8px 40px hsla(340, 15%, 20%, 0.12);
    --shadow-glow: 0 0 30px hsla(345, 35%, 60%, 0.15);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    line-height: 1.2;
    color: var(--clr-text);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- NAVIGATION ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
    padding: var(--sp-md) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--clr-text);
}

.logo-icon {
    font-size: 1.5em;
}

.logo-text em {
    font-style: italic;
    font-weight: 400;
    color: var(--clr-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    list-style: none;
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
    padding: var(--sp-xs) 0;
}

.navbar.scrolled .nav-link {
    color: var(--clr-text-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-link:hover {
    color: #fff;
}

.navbar.scrolled .nav-link:hover {
    color: var(--clr-primary);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    padding: var(--sp-xs) var(--sp-lg) !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    transition: var(--transition);
}

.navbar.scrolled .nav-cta {
    background: var(--clr-primary) !important;
    border-color: var(--clr-primary) !important;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--clr-primary-dark) !important;
    border-color: var(--clr-primary-dark) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--clr-text);
}


/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(150deg,
        hsl(340, 28%, 35%) 0%,
        hsl(330, 22%, 40%) 40%,
        hsl(320, 22%, 42%) 70%,
        hsl(345, 25%, 38%) 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    mix-blend-mode: luminosity;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg,
            hsla(340, 28%, 35%, 0.75) 0%,
            hsla(330, 22%, 40%, 0.65) 40%,
            hsla(320, 22%, 42%, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--sp-4xl) var(--sp-xl);
    max-width: 800px;
}

.hero-greeting {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--sp-sm);
}

.hero-name {
    font-size: var(--fs-hero);
    color: #fff;
    font-weight: 700;
    margin-bottom: var(--sp-md);
    background: linear-gradient(135deg, #fff 30%, hsl(345, 55%, 82%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: var(--fs-xl);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: var(--sp-2xl);
    font-style: italic;
    font-family: var(--ff-heading);
}

.hero-qualifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-2xl);
}

.badge {
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--sp-xs) var(--sp-md);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(345, 35%, 60%, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    font-size: var(--fs-base);
    padding: 16px 36px;
}

.btn-whatsapp:hover {
    background: #1EBB56;
    border-color: #1EBB56;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(142, 63%, 42%, 0.3);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}


/* ---------- SECTIONS ---------- */
.section {
    padding: var(--sp-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-3xl);
}

.section-label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-primary);
    margin-bottom: var(--sp-sm);
    padding: var(--sp-xs) var(--sp-md);
    background: var(--clr-primary-light);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
    color: var(--clr-text);
}

.section-title em {
    color: var(--clr-primary);
    font-style: italic;
}


/* ---------- ABOUT ---------- */
.about {
    background: var(--clr-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--sp-3xl);
    align-items: start;
}

.about-text p {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-lg);
    line-height: 1.8;
}

.about-lead {
    font-size: var(--fs-lg) !important;
    color: var(--clr-text) !important;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
}

.stat-card {
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    padding: var(--sp-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid hsla(173, 30%, 80%, 0.3);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--clr-primary);
    display: block;
}

.stat-plus {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    color: var(--clr-primary);
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-top: var(--sp-xs);
    display: block;
}


/* ---------- SERVICES ---------- */
.services {
    background: var(--clr-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-xl);
}

.service-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary-light);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--sp-lg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-sm);
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}


/* ---------- SPECIALIZATIONS ---------- */
.specializations {
    background: var(--clr-bg);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-xl);
}

.spec-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl) var(--sp-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.spec-card[data-spec="anxiety"]:hover {
    border-color: hsl(270, 40%, 82%);
}

.spec-card[data-spec="depression"]:hover {
    border-color: hsl(200, 50%, 78%);
}

.spec-card[data-spec="stress"]:hover {
    border-color: hsl(140, 35%, 72%);
}

.spec-card[data-spec="relationships"]:hover {
    border-color: hsl(340, 50%, 78%);
}

.spec-card[data-spec="confidence"]:hover {
    border-color: hsl(40, 60%, 72%);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: var(--sp-md);
    display: block;
}

.spec-card h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--sp-xs);
}

.spec-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
}


/* ---------- APPROACH ---------- */
.approach {
    background: linear-gradient(150deg,
        hsl(340, 25%, 34%) 0%,
        hsl(330, 20%, 38%) 50%,
        hsl(320, 22%, 40%) 100%);
    color: #fff;
}

.approach .section-label {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.approach .section-title {
    color: #fff;
}

.approach .section-title em {
    color: hsl(345, 55%, 82%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-xl);
}

.approach-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.approach-number {
    position: absolute;
    top: var(--sp-md);
    right: var(--sp-md);
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: var(--sp-md);
}

.approach-card h3 {
    color: #fff;
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-sm);
}

.approach-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    line-height: 1.7;
}


/* ---------- WHY CHOOSE ME ---------- */
.why-me {
    background: var(--clr-bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-xl);
}

.why-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--clr-primary);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: var(--sp-md);
    display: block;
}

.why-card h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--sp-sm);
}

.why-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.7;
}


/* ---------- CONTACT ---------- */
.contact {
    background: var(--clr-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.contact .section-title {
    text-align: left;
}

.contact .section-label {
    display: inline-block;
}

.contact-lead {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    margin: var(--sp-lg) 0;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: var(--sp-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-lg);
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--clr-primary-light);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-value {
    display: block;
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-primary);
    font-family: var(--ff-heading);
}

.contact-cta {
    margin-top: var(--sp-lg);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--sp-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-flower {
    font-size: 3rem;
    margin-bottom: var(--sp-md);
    display: block;
    position: relative;
    z-index: 1;
}

.cta-card h3 {
    font-size: var(--fs-xl);
    color: #fff;
    margin-bottom: var(--sp-sm);
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--sp-xl);
    font-size: var(--fs-sm);
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--clr-primary);
    border-color: #fff;
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* ---------- FOOTER ---------- */
.footer {
    background: var(--clr-text);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--sp-3xl) 0 var(--sp-xl);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.footer-brand .logo-icon {
    font-size: 1.8rem;
}

.footer-brand .logo-text {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    color: #fff;
}

.footer-tagline {
    font-size: var(--fs-sm);
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: var(--sp-lg);
    flex-wrap: wrap;
    justify-content: center;
    margin: var(--sp-md) 0;
}

.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.footer-copy {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.3);
    margin-top: var(--sp-md);
}


/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

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

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


/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--clr-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--sp-xl) var(--sp-xl);
        gap: var(--sp-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--clr-text);
        font-size: var(--fs-base);
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        padding: var(--sp-3xl) var(--sp-md);
    }

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

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

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

@media (max-width: 480px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}