:root {
    --purple: rgba(128, 0, 128, 0.9);
    --purple-solid: #800080;
    --purple-dark: #5a005a;
    --purple-light: rgba(128, 0, 128, 0.12);
    --purple-mid: rgba(128, 0, 128, 0.45);
    --white: #ffffff;
    --off-white: #fdf8fd;
    --text: #1a0a1a;
    --text-light: #6b4a6b;
    --accent: #e8b4e8;
    --gold: #c9a84c;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(128, 0, 128, 0.15);
    --shadow-lg: 0 20px 60px rgba(128, 0, 128, 0.2);
    --primary: #800080;
    --primary-dark: #4b004b;
    --gray: #7a5a7a;
    --light: #f3e6f3;
    --secondary: #2e2b2e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 95px;
}

/* TOP BAR */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 6px 0;
}

.topbar .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    transition: color .2s;
    text-decoration: none;
}

.topbar-left a:hover {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    gap: 10px;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.75);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s;
    text-decoration: none;
}

.topbar-right a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* FIXED NAVBAR */
nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    margin: 25px auto 0;
    max-width: 88%;
    width: auto;
    overflow-x: visible;
    overflow-y: visible;
    padding: 12px 0;
    background-color: rgba(248, 250, 252, 0.95);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 45px 0px;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 24px;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s, box-shadow 0.3s, border-color 0.3s, margin 0.3s, backdrop-filter 0.3s;
    -webkit-font-smoothing: antialiased;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary-dark);
}

.logo-text span {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: .4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: 6px;
    transition: all .2s;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--light);
    color: var(--primary);
}

.btn-appt {
    background: #f0a500;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    white-space: nowrap;
    transition: background .2s, transform .15s !important;
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-appt:hover {
    background: #d4900a !important;
    transform: translateY(-1px);
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10001;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(128, 0, 128, 0.08);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #800080;
    border-radius: 4px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    margin: 0 auto;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* MOBILE RESPONSIVE NAVBAR */
@media (max-width: 768px) {
    nav {
        max-width: 94%;
        margin-top: 15px;
        padding: 10px 0;
    }

    .nav-inner {
        padding: 0 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border: 1px solid rgba(128, 0, 128, 0.2);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 16px;
        text-align: left;
        width: 100%;
        border-radius: 12px;
    }

    .btn-appt {
        justify-content: center;
        margin-top: 6px;
    }

    .dropdown {
        display: block;
        width: 100%;
    }

    .dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 24px;
        display: none;
        background: #faf5fa;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 16px 10px 30px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .logo-text strong {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.93) 0%, rgba(61, 0, 61, 0.85) 50%, rgba(42, 0, 42, 0.93) 100%), url('assets/hero pic.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 140px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23800080' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.15);
    z-index: 3;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 128, 0.35) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 2;
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 100, 200, 0.15) 0%, transparent 70%);
    bottom: 60px;
    left: -50px;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 4;
}

.hero-text {
    animation: fadeUp 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 180, 232, 0.12);
    border: 1px solid rgba(232, 180, 232, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-solid);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.45);
    transition: all 0.25s;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: white;
    color: var(--purple-solid);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s;
}

.btn-outline:hover {
    background: white;
    color: var(--purple-solid);
    border-color: white;
}

.hero-cards {
    animation: fadeUp 0.8s 0.2s ease both;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.hero-card:hover {
    background: rgba(128, 0, 128, 0.3);
    transform: translateY(-4px);
    border-color: rgba(232, 180, 232, 0.3);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-card-icon::before,
.hero-card-icon::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
}

.hero-card-icon::before {
    width: 24px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-card-icon::after {
    width: 2px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: white;
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Stats Band */
.stats-band {
    background: var(--purple);
    padding: 30px 24px;
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 10, 26, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transform: translateY(-30px);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* General Sections */
section {
    padding: 90px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-solid);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 50px;
}

/* Services Grid */
.services-bg {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 26px;
    box-shadow: 0 2px 16px rgba(128, 0, 128, 0.07);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-solid), #d070d0);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(128, 0, 128, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-light);
    border-radius: 14px;
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 18px;
    transition: background 0.3s;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    background: var(--purple-solid);
    border-radius: 2px;
    opacity: 0.8;
}

.service-icon::before {
    width: 24px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-icon::after {
    width: 2px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-card:hover .service-icon {
    background: var(--purple);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.65;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1rem;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f6f2fb;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-description {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: #555;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #3d003d, #7a007a);
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 12px;
    transition: background 0.2s;
}

.why-feature:hover {
    background: var(--purple-light);
}

.why-feature-icon {
    width: 46px;
    height: 46px;
    background: var(--purple-light);
    border-radius: 10px;
    display: grid;
    place-items: center;
    position: relative;
    flex-shrink: 0;
}

.why-feature-icon::before,
.why-feature-icon::after {
    content: "";
    position: absolute;
    background: var(--purple-solid);
    border-radius: 2px;
    opacity: 0.75;
}

.why-feature-icon::before {
    width: 18px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.why-feature-icon::after {
    width: 2px;
    height: 18px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.why-feature-text h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.why-feature-text p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* About Section */
.about-bg {
    background: linear-gradient(135deg, #1a0a1a 0%, #3d003d 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text .section-tag {
    color: var(--accent);
}

.about-text .section-title {
    color: white;
}

.about-text .section-desc {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.about-stat span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.about-stat p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-right {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.check {
    width: 22px;
    height: 22px;
    background: var(--purple);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
}

/* Insurance Carousel */
.insurance-carousel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px 45px 40px;
}

.insurance-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.insurance-carousel .swiper-slide img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.insurance-carousel .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.insurance-carousel .swiper-button-next,
.insurance-carousel .swiper-button-prev {
    color: var(--purple-solid);
}

/* Testimonials */
.testimonials-bg {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(128, 0, 128, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(128, 0, 128, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.author-loc {
    font-size: 0.76rem;
    color: var(--text-light);
}

/* Book Section */
.book-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/smile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.book-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: white;
    margin-bottom: 14px;
}

.book-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.book-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--purple-solid);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--purple-dark);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.25s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--purple-solid);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--purple-light);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--purple-solid);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.88rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.5;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(128, 0, 128, 0.08);
}

.hours-table td {
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text);
}

.contact-form {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid rgba(128, 0, 128, 0.18);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple-solid);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(128, 0, 128, 0.3);
}

.form-submit:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #1a0a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 24px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.footer-brand .logo {
    text-decoration: none;
}

.footer-brand .logo-main {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--purple);
    color: white;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--purple-solid);
    font-size: 1.1rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 10px;
}

/* Scroll Top Button */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .topbar-left {
        display: none;
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}