/* ===== Variables ===== */
:root {
    /* ===== Brand Colors ===== */
    --primary: #341539;         /* main dark purple */
    --primary-dark: #220d26;    /* deeper purple */
    --primary-light: #4a1f52;   /* lighter purple */

    --secondary: #7c6a80;       /* muted purple-gray */

    /* ===== Accent ===== */
    --accent: #22c55e;          /* keep green for CTA (very important) */
    --accent-dark: #16a34a;

    /* ===== Neutral Base ===== */
    --dark: #0f0a12;            /* very dark purple-black */

    --gray-600: #5a5560;
    --gray-500: #7c7683;
    --gray-400: #a8a2ad;
    --gray-300: #d6d2da;
    --gray-200: #ece9ef;
    --gray-100: #f5f3f7;
    --gray-50: #faf9fb;

    --white: #ffffff;

    /* ===== Semantic ===== */
    --success: #22c55e;
    --error: #ef4444;

    /* ===== UI ===== */
    --border: #e7e3ea;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 10px -2px rgb(52 21 57 / 0.15);
    --shadow-md: 0 10px 20px -5px rgb(52 21 57 / 0.2);
    --shadow-lg: 0 25px 50px -12px rgb(52 21 57 / 0.35);

    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;

    --background: #ffffff;
    --section-bg: #f9f7fb;

    --text-dark: #1a1320;
    --text-light: #6f6775;
}
/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}
section {
    padding: 80px 0;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
section[id] {
    scroll-margin-top: 120px;
}
.breadcrumbs {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--primary);
    font-weight: 600;
}
/* ===== Resource Pages ===== */
.resource-page {
    background: var(--gray-50);
}

.resource-hero {
    padding: 48px 0 20px;
    background: var(--gray-50);
}

.resource-container {
    max-width: 860px;
}

.resource-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 14px;
    line-height: 1.75;
}

.resource-content-section {
    padding: 20px 0 60px;
}

.resource-article {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px;
}

.resource-article h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.resource-article h2 {
    font-size: 1.6rem;
    margin-top: 34px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.resource-article p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.resource-article ul,
.resource-article ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.resource-article li {
    margin-bottom: 10px;
    color: var(--gray-600);
}

.resource-callout {
    margin: 32px 0;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(52,21,57,0.05), rgba(34,197,94,0.06));
    border: 1px solid var(--gray-200);
}

.resource-callout h2 {
    margin-top: 0;
}

.resource-links {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.resource-links a {
    display: block;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary);
}

.resource-links a:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .resource-hero {
        padding: 32px 0 12px;
    }

    .resource-article {
        padding: 24px;
    }

    .resource-article h2 {
        font-size: 1.35rem;
    }

    .resource-intro {
        font-size: 1rem;
    }
}
.resources-section {
    padding: 60px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.resource-card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: all 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.resource-card h3 {
    margin-bottom: 8px;
}

.resource-card p {
    color: #666;
}

@media (max-width: 700px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
.student-registration-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.student-registration-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.student-registration-form .form-row .form-group:last-child:nth-child(3) {
    grid-column: span 2;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .student-registration-form {
        padding: 24px;
    }

    .student-registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .student-registration-form .form-row .form-group:last-child:nth-child(3) {
        grid-column: span 1;
    }
}
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.28);
}

.floating-cta:hover {
    background: var(--primary-dark);

}

@media (max-width: 768px) {
    .floating-cta {
        right: 14px;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}
.contact-urgency {
    text-align: center;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 12px 16px;
    border-radius: var(--radius);
    max-width: 760px;
    margin: 0 auto 28px;
    font-weight: 600;
}
.service-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--error);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
}
.services-helper-text {
    text-align: center;
    color: var(--gray-500);
    margin: -16px 0 30px;
}
.contact-next-steps {
    margin-top: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
}

.contact-next-steps h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-next-steps p {
    margin: 6px 0;
    color: var(--gray-600);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-benefits {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}
.hero {
    padding: 0;
}

.reviews-section,
.success-section,
.services-section,
.features-section,
.contact-section,
.stats-section,
.areas-section,
.audience-section {
    padding: 40px 0;
    background: var(--gray-50);
}
.features-grid,
.stats-grid,
.areas-grid {
    margin-top: 30px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.reviews-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-slide {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 10px;
}



.review-stars {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.review-text {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 8em;
}

.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-weight: 700;
    color: #111827;
}

.review-source {
    font-size: 0.9rem;
    color: #6b7280;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.reviews-btn:hover {
    transform: scale(1.05);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
}

.reviews-dot.active {
    background: #111827;
}

@media (max-width: 991px) {
    .review-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .review-slide {
        flex: 0 0 100%;
    }

    .reviews-carousel {
        gap: 8px;
    }

    .reviews-btn {
        width: 38px;
        height: 38px;
    }

    .review-text {
        min-height: auto;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 30px auto 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #111827;
    margin: 0 0 10px;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-number {
        font-size: 2rem;
    }
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: #fff !important;

}

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

.nav-links li:last-child {
    margin-left: 14px;
}
.nav-links li {
    display: flex;
    align-items: center;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1877f2; /* Facebook blue */
    color: white;
}
.logo-img {
    height: 32px;
    width: auto;
    display: block;
    max-width: 150px;   /* fallback safety */
}
/* HEADER WRAPPER */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* TOP BAR */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.top-bar a:hover {
    text-decoration: none;
    opacity: 0.8;
}
/* Google Reviews link specific styling */
.google-reviews-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.google-reviews-link:hover {
    text-decoration: none !important;
}

.google-reviews-link span {
    font-size: 0.85rem;
}

/* Responsive adjustments for top bar */
@media (max-width: 640px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .top-left, .top-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}
/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #22c55e;
    color: white;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;

}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;

}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}


/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);

    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.logo-text {
    color: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    display: none;
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: calc(100svh - 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-position: center 25%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-bg-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.hero-bg-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-left {
    max-width: 650px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 0 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.promo-card {
    width: 100%;
    max-width: 420px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--white);
}


/* ===== Promo Slider Alternative ===== */
.promo-slider {
    position: relative;
    min-height: 180px;
}

.promo-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.promo-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.promo-slide h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.promo-slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.promo-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    transition: background 0.3s ease;
}

.promo-dot.active {
    background: var(--white);
}

.promo-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .promo-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .promo-card {
        padding: 22px;
    }

    .promo-slide h3 {
        font-size: 1.5rem;
    }
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== Success Stories Slider ===== */

.slider-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
    background: var(--gray-200);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: contain; /* Show entire image without cropping */
    object-position: center center;
    background: var(--gray-100);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.slide-content .passed-badge {
    display: inline-block;
    background: #22c55e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    height: 500px;
    background: var(--gray-200);
    color: var(--gray-500);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.no-slides {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--gray-500);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-slides p {
    margin-bottom: 16px;
}

/* ===== Services Section ===== */


.services-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.services-table thead {
    background: var(--primary);
    color: var(--white);
}

.services-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-table th:last-child {
    text-align: center;
    width: 120px;
}

.services-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.services-table tbody tr:hover {
    background: var(--gray-50);
}

.services-table tbody tr:last-child {
    border-bottom: none;
}

.services-table td {
    padding: 20px;
    vertical-align: middle;
}

.services-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.services-table td:nth-child(2) {
    color: var(--gray-600);
    max-width: 300px;
}

.services-table td:nth-child(3) {
    color: var(--gray-500);
    white-space: nowrap;
}

.services-table td:nth-child(4) {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    white-space: nowrap;
}

.services-table td:last-child {
    text-align: center;
}

.services-table .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.loading-row {
    text-align: center;
    color: var(--gray-500);
    padding: 40px !important;
}

/* Mobile Table Styles */
@media (max-width: 768px) {
    .services-table th,
    .services-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    /* Hide Description, Duration, and Book columns on mobile */
    .services-table th:nth-child(2),
    .services-table td:nth-child(2),
    .services-table th:nth-child(3),
    .services-table td:nth-child(3),
    .services-table th:nth-child(5),
    .services-table td:nth-child(5) {
        display: none;
    }
    
    /* Make service name and price columns take full width */
    .services-table th:first-child,
    .services-table td:first-child {
        width: 60%;
    }
    
    .services-table th:nth-child(4),
    .services-table td:nth-child(4) {
        width: 40%;
        text-align: right;
    }
}

/* ===== Features Section ===== */


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Areas Served Section ===== */

.areas-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.area-card {
    text-align: center;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.area-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}

/* ===== Reviews Section ===== */
.review-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 8.5em;
}

.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.review-name {
    font-weight: 600;
    color: var(--dark);
}

.review-source {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.reviews-footer {
    margin-top: 40px;
    text-align: center;
}

/* ===== Contact Section ===== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    opacity: 0.9;
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

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

.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius);
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 32px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer p {
    opacity: 0.8;
}

.admin-link {
    font-size: 0.875rem;
    opacity: 0.6;
    transition: var(--transition);
}

.admin-link:hover {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */


.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== Anti-Spam Honeypot ===== */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
