/* Screen-reader-only utility — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #267669;
    --light-teal: #6DBFAE;
    --mint-bg: #D4F1E8;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--light-teal);
}

/* ── Resources dropdown ──────────────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Invisible hover bridge — fills the gap between the nav link and the
   dropdown so the mouse doesn't lose the hover state while travelling down */
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: transparent;
}

.dropdown-arrow {
    font-size: 10px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
    list-style: none;
    padding: 8px 0;
    min-width: 240px;
    z-index: 1100;
    border-top: 3px solid var(--primary-teal);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--mint-bg);
    color: var(--primary-teal);
    padding-left: 28px;
}

/* ── Nav phone call-to-action ─────────────────────────────────────────────── */
.nav-phone-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 8px;
    padding: 6px 12px;
    line-height: 1.25;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.nav-phone-cta:hover {
    background: var(--primary-teal);
    color: #fff;
}

.nav-phone-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.nav-phone-number {
    font-size: 15px;
    font-weight: 700;
}

.nav-phone-hours {
    font-size: 10px;
    opacity: 0.85;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
}

.wave-animation {
    position: absolute;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    left: 0;
}

.wave-animation.wave-bottom {
    bottom: -1px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0 140px;
    overflow: visible;
    background: linear-gradient(135deg, var(--mint-bg) 0%, var(--white) 100%);
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    z-index: 10;
}

.decorative-elements {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    font-size: 50px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.heart-icon {
    color: var(--primary-teal);
    position: absolute;
    top: 20%;
    left: 20px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.3;
}

.plus-icon {
    color: var(--light-teal);
    position: absolute;
    top: 15%;
    right: 20px;
    animation: float 3s ease-in-out infinite 0.5s;
    opacity: 0.3;
}

.star-icon {
    color: var(--primary-teal);
    position: absolute;
    bottom: 20%;
    right: 20px;
    animation: float 3s ease-in-out infinite 1s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-center {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.hero-text .subtitle {
    display: block;
    font-size: 56px;
    font-weight: 600;
    color: var(--primary-teal);
    border-top: 4px solid var(--primary-teal);
    border-bottom: 4px solid var(--primary-teal);
    padding: 10px 0;
    position: relative;
    z-index: 2;
    letter-spacing: 3px;
}

.tagline {
    font-size: 28px;
    color: var(--primary-teal);
    font-weight: 600;
    margin: 40px 0 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 22px;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--primary-teal);
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(45, 139, 124, 0.3);
}

.btn-large:hover {
    box-shadow: 0 12px 30px rgba(45, 139, 124, 0.4);
}

.hero-cta-links {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.cta-link:hover {
    background: var(--mint-bg);
    transform: translateX(5px);
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
    background: var(--light-teal);
    border-color: var(--light-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 139, 124, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.services {
    position: relative;
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint-bg) 50%, var(--white) 100%);
    overflow: visible;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.title-accent {
    display: block;
    border-top: 4px solid var(--primary-teal);
    border-bottom: 4px solid var(--primary-teal);
    padding: 5px 0;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-top: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 139, 124, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--mint-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 600;
    line-height: 1.4;
}

.service-time {
    display: inline-block;
    background: var(--mint-bg);
    color: var(--primary-teal);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    margin: 6px 0 4px;
}

.info-banner {
    position: relative;
    padding: 40px 0 160px;
    background: var(--white);
    overflow: visible;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 20px;
}

.info-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

.about {
    position: relative;
    padding: 60px 0 160px;
    background: linear-gradient(135deg, var(--mint-bg) 0%, var(--white) 100%);
    overflow: visible;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.about-intro {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-box {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box h4 {
    font-size: 16px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 20px;
}

.feature-item div {
    flex: 1;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-top: 8px;
}

.heart-bullet {
    font-size: 40px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-teal);
    font-weight: 600;
}

.why-choose {
    position: relative;
    padding: 60px 0 160px;
    background: var(--white);
    overflow: visible;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: var(--mint-bg);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 139, 124, 0.2);
}

.why-card h3 {
    font-size: 20px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-section {
    position: relative;
    padding: 60px 0 160px;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-bg) 100%);
    overflow: visible;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cta-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 139, 124, 0.2);
    border-color: var(--primary-teal);
}

.cta-card.featured {
    background: linear-gradient(135deg, var(--mint-bg) 0%, var(--white) 100%);
    border: 3px solid var(--primary-teal);
    position: relative;
}

.cta-card.featured::before {
    content: '⭐ POPULAR';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-size: 28px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-card .btn {
    margin-top: 10px;
}

.contact {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint-bg) 100%);
    overflow: visible;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.contact-item h3,
.contact-item h4 {
    font-size: 14px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-link {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 3px;
}

.contact-note {
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.7;
}

.contact-link:hover {
    color: var(--light-teal);
}

.contact-form-section {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h3 {
    font-size: 20px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--mint-bg);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.contact-form button {
    margin-top: 10px;
}

.qr-code {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
}

.qr-code p {
    font-size: 16px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 5px;
}

.qr-code span {
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.7;
}

.social-section {
    text-align: center;
    margin-top: 50px;
}

.social-section h3 {
    font-size: 24px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 10px;
}

.social-section p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--light-teal);
    transform: translateY(-5px);
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gallery {
    position: relative;
    padding: 60px 0 160px;
    background: var(--white);
    overflow: visible;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 139, 124, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item {
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.pricing {
    position: relative;
    padding: 60px 0 160px;
    background: var(--white);
    overflow: visible;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E0F2EF;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 139, 124, 0.15);
    border-color: var(--primary-teal);
}

.pricing-card.featured {
    border: 3px solid var(--primary-teal);
    position: relative;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-teal);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header {
    background: linear-gradient(135deg, var(--mint-bg) 0%, #E0F2EF 100%);
    padding: 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.pricing-body {
    padding: 30px 25px;
}

.price-item {
    padding: 20px 0;
    border-bottom: 1px solid #E0F2EF;
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-item.highlight {
    background: #F8FCFB;
    margin: 0 -25px;
    padding: 20px 25px;
    border-radius: 10px;
}

.price-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.price-detail {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.price-amount span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-note {
    background: #FFF9E6;
    border-left: 4px solid #FFD700;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 13px;
    color: var(--text-dark);
}

.payment-info {
    margin-bottom: 25px;
}

.payment-info:last-child {
    margin-bottom: 0;
}

.payment-info h4 {
    font-size: 16px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-info p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.payment-methods {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.payment-methods li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

.payment-methods li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 16px;
}

.funding-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--mint-bg) 0%, #E0F2EF 100%);
    border-radius: 20px;
}

.funding-section h3 {
    font-size: 28px;
    color: var(--primary-teal);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.funding-section > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.funding-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.funding-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 139, 124, 0.15);
}

.funding-card h4 {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.funding-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.funding-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.funding-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--mint-bg);
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.funding-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.funding-link.primary {
    background: var(--primary-teal);
    color: var(--white);
}

.funding-link.primary:hover {
    background: #2D8B7C;
}

.enrollment {
    position: relative;
    padding: 60px 0 160px;
    background: linear-gradient(135deg, var(--mint-bg) 0%, var(--white) 100%);
    overflow: visible;
}

.enrollment-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.enrollment-intro {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.enrollment-intro h3 {
    font-size: 28px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 15px;
}

.enrollment-intro p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.enrollment-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(45, 139, 124, 0.15);
}

.accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: #F8FCFB;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, var(--mint-bg) 0%, #E0F2EF 100%);
}

.accordion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-teal);
}

.accordion-toggle {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-teal);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.accordion-content p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.enrollment-list,
.enrollment-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.enrollment-list li,
.enrollment-checklist li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.enrollment-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 20px;
}

.enrollment-checklist li::before {
    content: '✓';
    position: absolute;
    left: 5px;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 18px;
}

.accordion-content .note {
    background: #F0F9F7;
    border-left: 4px solid var(--primary-teal);
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 14px;
    font-style: italic;
    color: var(--text-dark);
}

.accordion-content .highlight {
    background: #FFF9E6;
    border-left: 4px solid #FFD700;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.regulatory-links {
    margin-top: 20px;
    padding: 20px;
    background: #F8FCFB;
    border-radius: 10px;
}

.regulatory-links h4 {
    font-size: 16px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 15px;
}

.reg-link {
    display: block;
    padding: 12px 15px;
    background: var(--white);
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 2px solid #E0F2EF;
    transition: all 0.3s ease;
}

.reg-link:last-child {
    margin-bottom: 0;
}

.reg-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    transform: translateX(5px);
}

.faq {
    position: relative;
    padding: 60px 0 160px;
    background: linear-gradient(135deg, var(--mint-bg) 0%, var(--white) 100%);
    overflow: visible;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 139, 124, 0.15);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.location {
    position: relative;
    padding: 60px 0 160px;
    background: var(--white);
    overflow: visible;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.location-info {
    background: var(--mint-bg);
    padding: 30px;
    border-radius: 15px;
}

.location-info h3 {
    font-size: 24px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 20px;
}

.address {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.location-details p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-details strong {
    color: var(--primary-teal);
    font-weight: 700;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer {
    background: var(--primary-teal);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-tagline {
    margin-top: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-text {
    text-align: center;
    margin-bottom: 25px;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(45, 139, 124, 0.6);
}

.newsletter-form .btn {
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary-teal);
    border: none;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.legal-page {
    padding: 120px 0 60px;
    background: var(--white);
    min-height: 100vh;
}

.legal-title {
    font-size: 42px;
    color: var(--primary-teal);
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.legal-intro {
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mint-bg);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #2D8B7C;
    text-decoration: underline;
}

.contact-box {
    background: var(--mint-bg);
    border-left: 4px solid var(--primary-teal);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.contact-box p {
    margin: 8px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: var(--primary-teal);
    color: var(--white);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0F2EF;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-table tbody tr:hover {
    background: #F8FCFB;
}

/* ── Info-pack inline request form ───────────────────────────── */
.info-pack-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    text-align: left;
}

.info-pack-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--primary-teal);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.info-pack-form input:focus {
    border-color: var(--light-teal);
    box-shadow: 0 0 0 3px rgba(45, 139, 124, 0.12);
}

.info-pack-form input::placeholder {
    color: rgba(45, 139, 124, 0.5);
}

.info-pack-form .btn {
    width: 100%;
    margin-top: 4px;
}

/* ── Toast notifications ─────────────────────────────────────── */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(45, 139, 124, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-width: 360px;
    line-height: 1.4;
}

.toast-notification.toast-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification.toast-error {
    background: #c0392b;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-phone-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    /* Mobile dropdown */
    .nav-dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        background: var(--mint-bg);
        min-width: 0;
        padding: 4px 0;
        margin: 6px 0 0 0;
        display: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text .subtitle {
        font-size: 36px;
    }

    .decorative-elements {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: left;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .funding-grid {
        grid-template-columns: 1fr;
    }

    .enrollment-intro {
        padding: 30px 20px;
    }

    .enrollment-cta {
        flex-direction: column;
    }

    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text .subtitle {
        font-size: 28px;
    }

    .tagline {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .contact-link {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .wave-animation {
        height: 60px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .info-banner,
    .about,
    .why-choose,
    .pricing,
    .enrollment,
    .gallery,
    .faq,
    .location {
        padding-bottom: 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .funding-section {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .legal-title {
        font-size: 32px;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

/* ── Anti-spam honeypot (hidden from humans, visible to bots) ── */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Hero availability line ── */
.hero-availability {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c6e5f;
}
