:root {
    --forest: #0c6d3d;
    --forest-dark: #0a5732;
    --fern: #55b971;
    --sun: #f6c452;
    --mist: #f6f8f2;
    --ink: #0e1a16;
    --slate: #38473f;
    --card: #ffffff;
    --accent: #1c8dd3;
    --shadow: 0 18px 38px rgba(12, 109, 61, 0.18);
    font-family: "Nunito", "Trebuchet MS", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: var(--mist);
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--mist);
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
            circle at 18px 18px,
            rgba(12, 109, 61, 0.08) 1.5px,
            transparent 0
        ),
        linear-gradient(
            135deg,
            rgba(28, 141, 211, 0.08),
            rgba(246, 196, 82, 0.08)
        );
    background-size: 120px 120px, 100% 100%;
    z-index: 0;
    mix-blend-mode: multiply;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px 32px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.brand {
    display: grid;
    grid-template-columns: 52px auto;
    gap: 10px;
    align-items: center;
}
.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--forest), var(--accent));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.brand-name {
    font-weight: 800;
    letter-spacing: 0.2px;
}
.brand-tag {
    font-size: 13px;
    color: var(--slate);
}

.nav {
    display: flex;
    gap: 18px;
    justify-content: center;
    font-weight: 600;
}
.nav a {
    padding: 8px 10px;
    border-radius: 10px;
}
.nav a:hover {
    background: rgba(12, 109, 61, 0.08);
}
.nav-cta {
    display: flex;
    gap: 10px;
}

.btn {
    cursor: pointer;
    border: none;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 700;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s;
}
.btn.primary {
    background: linear-gradient(135deg, var(--forest), var(--fern));
    color: #fff;
    box-shadow: var(--shadow);
}
.btn.primary:hover {
    transform: translateY(-1px);
}
.btn.ghost {
    background: rgba(12, 109, 61, 0.08);
    color: var(--forest-dark);
    border: 1px solid rgba(12, 109, 61, 0.22);
}
.btn.subtle {
    background: #fff;
    color: var(--slate);
    border: 1px solid #e3e8e1;
}
.btn.wide {
    width: 100%;
}

main {
    position: relative;
    z-index: 1;
}
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 64px 32px 32px;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}
.hero-copy h1 {
    margin: 10px 0;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
}
.hero-points {
    padding: 0;
    margin: 12px 0 20px;
    list-style: none;
}
.hero-points li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}
.hero-points li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--sun);
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--forest-dark);
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 6px 18px rgba(12, 109, 61, 0.12);
    font-weight: 700;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}
.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--slate);
    font-weight: 700;
}
.meta {
    background: rgba(28, 141, 211, 0.08);
    padding: 6px 10px;
    border-radius: 10px;
}

.hero-visual {
    position: relative;
}
.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 28px 60px rgba(12, 109, 61, 0.18);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.slide.active {
    opacity: 1;
}
.slide-layer {
    position: absolute;
    inset: 0;
}
.gradient-a {
    background: linear-gradient(135deg, #0c6d3d, #1c8dd3);
}
.gradient-b {
    background: linear-gradient(135deg, #d97706, #0c6d3d);
}
.gradient-c {
    background: linear-gradient(135deg, #1c8dd3, #334155);
}
.pattern {
    background-image: radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.4) 0,
            rgba(255, 255, 255, 0) 40%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(255, 255, 255, 0.35) 0,
            rgba(255, 255, 255, 0) 36%
        );
    mix-blend-mode: screen;
}
.slide-copy {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 0;
}
.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(12, 109, 61, 0.3);
    cursor: pointer;
}
.hero-dots button.active {
    background: var(--sun);
    box-shadow: 0 0 0 6px rgba(246, 196, 82, 0.22);
}

.quick-actions {
    max-width: 1200px;
    margin: 10px auto 20px;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.chip {
    border: 1px solid #e2eadf;
    border-radius: 12px;
    background: #fdfdfb;
    padding: 10px 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.enquiry {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    max-width: 1200px;
    padding: 10px 32px 40px;
    margin: 0 auto;
    align-items: start;
}
.enquiry-form,
.enquiry-side .card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}
.enquiry-form h2 {
    margin: 0 0 6px;
}
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    color: var(--slate);
}
input,
select,
textarea {
    border-radius: 12px;
    border: 1px solid #d9e4d7;
    padding: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #fdfdfb;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(12, 109, 61, 0.12);
}
textarea {
    resize: vertical;
}
.consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin: 6px 0;
}
.form-note {
    min-height: 18px;
    color: var(--forest-dark);
    font-weight: 700;
}
.enquiry-side {
    display: grid;
    gap: 14px;
}
.card h3 {
    margin: 6px 0;
}
.card ul {
    padding-left: 20px;
    margin: 6px 0 0;
    color: var(--slate);
}
.card.subtle {
    background: #f9fbf7;
    border: 1px solid #d9e4d7;
}
.card.highlight {
    border-left: 5px solid var(--sun);
}

.floating-chat {
    position: fixed;
    right: 22px;
    bottom: 8px;
    background: linear-gradient(135deg, #73aee4, #3672b2);
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    font-weight: 800;
    text-decoration: none;
    z-index: 9;
}
.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    font-weight: 800;
    text-decoration: none;
    z-index: 9;
}

.social-strip {
    margin: 14px auto;
    max-width: 1200px;
    padding: 12px 16px;
    background: #122317;
    color: #eaf3ea;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.social-icons a {
    color: #eaf3ea;
    font-weight: 700;
}

.achievements {
    max-width: 1200px;
    margin: 24px auto;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
}
.ach-label {
    font-weight: 800;
    color: var(--forest-dark);
    letter-spacing: 0.4px;
}
.ach-marquee {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e3e8e1;
}
.ach-track {
    display: inline-flex;
    gap: 24px;
    padding: 12px 16px;
    animation: marquee 16s linear infinite;
    font-weight: 700;
    color: var(--slate);
}
.ach-track span {
    padding: 8px 10px;
    background: rgba(12, 109, 61, 0.08);
    border-radius: 10px;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-head {
    max-width: 1200px;
    margin: 28px auto 12px;
    padding: 0 32px;
}
.section-head h2 {
    margin: 0 0 6px;
    font-size: 30px;
}
.section-head p {
    margin: 0;
    color: var(--slate);
}

.facilities {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0 32px;
}
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.facility-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5ebdf;
}
.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(12, 109, 61, 0.08);
    display: inline-grid;
    place-items: center;
    font-size: 22px;
}
.facility-card h3 {
    margin: 10px 0 6px;
}
.facility-card p {
    margin: 0;
    color: var(--slate);
}

.testimonials {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 32px;
}
.carousel {
    position: relative;
    background: #0f1f16;
    color: #e9f4e8;
    border-radius: 16px;
    padding: 24px 26px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 18px;
}
.testimonial-card {
    min-width: calc(100% - 90px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 18px;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.testimonial-role {
    color: #bcd6c2;
    font-size: 14px;
}
.stars {
    color: var(--sun);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--forest-dark);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.carousel-arrow.prev {
    left: 10px;
}
.carousel-arrow.next {
    right: 10px;
}

.faq {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 32px;
}
.accordion {
    display: grid;
    gap: 12px;
}
.accordion-item {
    background: #fff;
    border: 1px solid #e3e8e1;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.accordion-item header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
}
.accordion-item p {
    margin: 10px 0 0;
    color: var(--slate);
    display: none;
}
.accordion-item.open p {
    display: block;
}

.footer {
    background: #0c6d3d;
    color: #e9f4ea;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 26px 32px 32px;
}
.footer h3 {
    margin: 0 0 6px;
}
.mini-map {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}
.newsletter {
    display: flex;
    gap: 8px;
}
.newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.accreditation {
    margin-top: 10px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .topbar {
        grid-template-columns: 1fr;
    }
    .nav {
        flex-wrap: wrap;
    }
    .nav-cta {
        justify-content: flex-start;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 32px;
    }
    .enquiry {
        grid-template-columns: 1fr;
    }
    .floating-chat {
        position: static;
        margin-top: 10px;
    }
}

@media (max-width: 640px) {
    .topbar {
        position: sticky;
        padding: 12px 16px;
    }
    .hero {
        padding: 26px 16px;
    }
    .section-head,
    .facilities,
    .testimonials,
    .faq {
        padding: 0 18px;
    }
    .carousel-arrow {
        display: none;
    }
    .testimonial-card {
        min-width: 100%;
    }
    .quick-actions {
        margin: 0 16px 16px;
    }
    .floating-wa {
        right: 12px;
        bottom: 18px;
    }
}
