@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&family=Quicksand:wght@300..700&display=swap');

:root {
    --teal: #3aada9;
    --orange: #f47c20;
    --yellow: #f9c31f;
    --blue: #3b6cb7;
    --dark: #2c3e50;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Quicksand", sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Love Ya Like A Sister", cursive;
    letter-spacing: 2px;
}

/* ── TOP BAR ── */
.topbar {
    background: #0A75BC;
    color: #fff;
    font-size: 14px;
    padding: 12px 1rem;
    min-height: 50px;
    font-weight: 700;
}

.topbar a {
    color: #fff;
    transition: color 0.2s;
}

.topbar a:hover {
    color: var(--yellow);
}

.topbar-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.topbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
}

.topbar-left a {}

.topbar-right {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    width: 40%;
}

.topbar-right .links {
    display: flex;
    gap: 20px;
}

/* ── MAIN NAV ── */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
    position: sticky;
    top: 0;
    z-index: 200;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo-badge {
    width: 46px;
    height: 46px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    /*  */
    font-size: 1rem;
}

.logo-text-top {
    /*  */
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--teal);
    line-height: 1.1;
}

.logo-text-sub {
    /*  */
    font-size: 0.68rem;

    color: var(--orange);
    line-height: 1.1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-family: "Love Ya Like A Sister", cursive;
    font-size: 18px;
    color: #333;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s;
}

.nav-link:hover {
    color: var(--yellow);
}

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

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #444;
    border-radius: 2px;
}

/* Mobile menu */
.mob-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 0.75rem 1rem 1.25rem;
    font-family: "Love Ya Like A Sister", cursive;
}

.mob-menu.open {
    display: block;
}

.mob-link {
    display: block;


    font-size: 0.93rem;
    color: #333;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.mob-link:hover {
    color: var(--yellow);
}

.mob-ctas {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

/* Dropdown in topbar */
.ddwrap {
    position: relative;
}

.ddwrap span {
    width: 58px !important;
    text-wrap-mode: nowrap;
}

.ddwrap .ddmenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 205px;
    background: #fff;
    border-top: 3px solid var(--teal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    z-index: 300;
    border-radius: 0 0 8px 8px;
}

.ddwrap:hover .ddmenu {
    display: block;
}

.ddmenu a {
    display: block;
    padding: 9px 16px;
    font-size: 0.83rem;
    color: #444;

    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.ddmenu a:last-child {
    border-bottom: none;
}

.ddmenu a:hover {
    background: #f0fafa;
    color: var(--teal);
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;


    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    padding: 0.55rem 1.35rem;
    font-size: 0.88rem;
}

.btn-teal:hover {
    background: #2e9490;
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 0.55rem 1.35rem;
    font-size: 0.88rem;
}

.btn-orange:hover {
    background: #d86c15;
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow);
    color: #333;
    padding: 0.55rem 1.35rem;
    font-size: 0.88rem;
}

.btn-yellow:hover {
    background: #e0ad10;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.5rem 1.3rem;
    font-size: 0.88rem;
    border-radius: 9999px;


    transition: background 0.2s;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, rgba(30, 50, 70, 0.72) 0%, rgba(58, 173, 169, 0.6) 100%),
        url('../img/compound4.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: auto;
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.93;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ── SECTION LABELS ── */
.eyebrow {

    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal);
    display: block;
    margin-bottom: 0.4rem;
}

/* ── 3 INFO CARDS ── */
.cards-section {
    background: #fff;
    padding: 4rem 1rem 3.5rem;
}

.cards-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}

.info-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.info-card:nth-child(1) {
    background: var(--yellow);
}

.info-card:nth-child(2) {
    background: var(--teal);
}

.info-card:nth-child(3) {
    background: var(--orange);
}

.card-icon {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h4 {
    font-size: 25px;
    font-family: "Love Ya Like A Sister", cursive;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: white;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

/* ── ABOUT SECTION ── */
.about-section {
    background: #fdf8f0;
    padding: 5rem 1rem;
}

.about-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-text p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-text a {
    margin-top: 1rem;
    display: inline-block;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.about-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* ── CURIOUS MINDS ── */
.minds-section {
    background: #fff;
    padding: 5rem 1rem;
}

.minds-inner {
    max-width: 1100px;
    margin: auto;
}

.minds-text {
    margin-bottom: 3rem;
}

.minds-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.minds-text p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 0.85rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feat-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}

.feat-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 1rem;
}

.feat-card h4 {
    font-size: 0.97rem;
    margin-bottom: 0.6rem;
}

.feat-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.72;
}

/* ── TOUR BANNER ── */
.tour-banner {
    background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
}

.tour-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.tour-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ── TESTIMONIALS ── */
.testi-section {
    background: #fdf8f0;
    padding: 5rem 1rem;
}

.testi-inner {
    max-width: 1000px;
    margin: auto;
}

.testi-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.testi-header h2 {
    font-size: 2.2rem;

}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.testi-card {
    background: #fff;
    border-left: 5px solid var(--teal);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: relative;
}

.big-q {
    font-size: 5rem;
    line-height: 0.7;
    color: var(--teal);
    opacity: 0.18;
    position: absolute;
    top: 14px;
    right: 20px;
}

.testi-card p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author strong {
    font-size: 0.93rem;

}

/* ── GALLERY ── */
.gallery-section {
    background: #fff;
    padding: 5rem 1rem;
}

.gallery-inner {
    max-width: 1100px;
    margin: auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-size: 2.2rem;

    margin-bottom: 1rem;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f0f0f0;
    color: #555;
    border: none;
    border-radius: 9999px;
    padding: 0.38rem 1.1rem;

    font-size: 0.85rem;

    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--teal);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.gal-item {
    border-radius: 12px;
    overflow: hidden;
    height: 195px;
    position: relative;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s, filter 0.4s;
}

.gal-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

.gal-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
    padding: 0.6rem 0.9rem;
    color: #fff;
    font-size: 0.82rem;


}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 173, 169, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    color: #fff;
}

.gal-overlay h4 {
    font-size: 1.05rem;

    margin-bottom: 0.4rem;
}

.gal-overlay p {
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
    opacity: 0.92;

}

/* ── TIMETABLE ── */
.time-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    padding: 5rem 1rem;
    color: #fff;
}

.time-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.time-text h2 {
    font-size: 2.2rem;

    margin-bottom: 1.2rem;
}

.time-text p {
    line-height: 1.85;
    font-size: 0.96rem;
    opacity: 0.93;
    margin-bottom: 1rem;
}

.hours-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.hours-box .box-title {


    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.h-row {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;

}

.h-row:last-child {
    border-bottom: none;
}

.h-row strong {}

.time-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.time-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ── CONTACT ── */
.contact-section {
    background: #fff;
    padding: 5rem 1rem;
}

.contact-inner {
    max-width: 1100px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.2rem;

    margin-bottom: 0.65rem;
}

.contact-header p {
    color: #666;
    font-size: 0.96rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-block {
    background: #f7f9fb;
    border-radius: 14px;
    padding: 1.4rem;
    margin-bottom: 1.1rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h5 {


    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.info-block p,
.info-block a {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;

    display: block;
}

.info-block a:hover {
    color: var(--teal);
}

.form-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
    padding: 2.5rem;
    border: 1px solid #efefef;
}

.form-box h4 {
    font-size: 1.5rem;

    margin-bottom: 1.5rem;
}

.form-field {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;

    font-size: 0.93rem;
    outline: none;
    transition: border-color 0.2s;
    display: block;
    margin-bottom: 1rem;
}

.form-field:focus {
    border-color: var(--teal);
}

.form-label {
    display: block;

    font-size: 0.86rem;
    color: #555;
    margin-bottom: 0.3rem;

}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.84rem;


    transition: opacity 0.2s;
}

.ig-btn:hover {
    opacity: 0.88;
}

.ig-btn svg {
    width: 15px;
    height: 15px;
}

/* ── FOOTER ── */
.footer {
    background: #1a2535;
    color: #9aa5b4;
    padding: 4rem 1rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer h5 {

    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer a {
    color: #9aa5b4;
    font-size: 0.87rem;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.35rem;

}

.footer a:hover {
    color: var(--yellow);
}

.footer p,
.footer span {
    font-size: 0.87rem;
    line-height: 1.7;

}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.footer-badge {
    width: 42px;
    height: 42px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;

    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-brand-name {

    font-weight: 900;
    color: #fff;
    font-size: 0.98rem;
}

.footer-sep {
    margin: 0 0.3rem;
    opacity: 0.3;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.81rem;
    opacity: 0.4;

}

.foot-input {
    width: 100%;
    background: #253547;
    border: 1.5px solid #3a4f65;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;

    font-size: 0.87rem;
    color: #ccc;
    outline: none;
    display: block;
    margin-bottom: 0.65rem;
    transition: border-color 0.2s;
}

.foot-input:focus {
    border-color: var(--teal);
}

.foot-input::placeholder {
    color: #6a7f92;
}

/* ── REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}


.nav-links a:hover,
.nav-links a.active {
    border-bottom: 4px solid var(--yellow);
}

/* For Other Pages */
/* ── PAGES ── */
.page {
    display: none;
    animation: fadeIn .4s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HERO BANNER ── */
.hero-banner {
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 50, 70, 0.72) 0%, rgba(58, 173, 169, 0.6) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 60px 60px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/compound2.jpg') center/cover;
    opacity: .12;
}

.hero-dots {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    opacity: .25;
}

.hero-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    display: block;
}

.hero-content {
    position: relative;
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.hero-banner h1 {
    font-size: 80px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-banner p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 196, 106, .4);
}




/* ── SECTION STYLES ── */
.section {
    padding: 80px 60px;
}

.section-alt {
    background: var(--green-pale);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

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

.section-sub {
    color: var(--mid);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 48px;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, .7);
}

.label {
    display: inline-block;
    color: var(--green);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-dark .label {
    color: var(--gold);
}

/* ── CARDS ── */
.cards {
    display: grid;
    gap: 28px;
}

.cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(45, 106, 79, .07);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(45, 106, 79, .16);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--green);
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card p {
    color: var(--mid);
    line-height: 1.7;
    font-size: .94rem;
}

.card-dark {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.card-dark h3,
.card-dark p {
    color: rgba(255, 255, 255, .9);
}

.card-dark p {
    color: rgba(255, 255, 255, .65);
}

.card-dark .card-icon {
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
}

/* ── TWO COL ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.two-col img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 420px;
    box-shadow: var(--shadow);
}

.two-col-text {}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 2.8rem;
    color: var(--green);
    font-weight: 700;
}

.stat-label {
    color: var(--mid);
    font-size: .88rem;
    margin-top: 4px;
}

/* ── ACCORDION ── */
.accordion {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(45, 106, 79, .15);
}

.accordion-item {
    border-bottom: 1px solid rgba(45, 106, 79, .1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: .98rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: background .2s;
}

.accordion-header:hover {
    background: var(--green-pale);
}

.accordion-header.open {
    background: var(--green);
    color: #fff;
}

.accordion-header.open .acc-icon {
    transform: rotate(45deg);
}

.acc-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.accordion-header.open .acc-icon {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

.accordion-body {
    display: none;
    padding: 20px 28px 24px;
    background: #fafff9;
    color: var(--mid);
    line-height: 1.75;
    font-size: .94rem;
}

.accordion-body.open {
    display: block;
}

/* ── TABLE ── */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.info-table th {
    background: var(--green);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: .88rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.info-table th:first-child {
    border-radius: 10px 0 0 0;
}

.info-table th:last-child {
    border-radius: 0 10px 0 0;
}

.info-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(45, 106, 79, .08);
    font-size: .94rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) td {
    background: var(--green-pale);
}

.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

.badge-green {
    background: var(--green-pale);
    color: var(--green);
}

.badge-gold {
    background: #fef9e7;
    color: #b7860b;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 36px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--green-pale));
    border-radius: 2px;
}

.tl-item {
    position: relative;
    margin-bottom: 36px;
}

.tl-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}

.tl-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.tl-item p {
    color: var(--mid);
    font-size: .93rem;
    line-height: 1.65;
}

/* ── FORM ── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
}

input,
select,
textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(45, 106, 79, .2);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .94rem;
    background: #fff;
    color: var(--text);
    transition: border .2s, box-shadow .2s;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, .12);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(45, 106, 79, .35);
}

/* ── MEAL CARD ── */
.meal-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s;
}

.meal-card:hover {
    transform: translateY(-5px);
}

.meal-header {
    background: var(--green);
    padding: 20px 24px;
    color: #fff;
}

.meal-header h3 {
    font-size: 1.15rem;
}

.meal-header .day {
    font-size: .8rem;
    opacity: .7;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.meal-body {
    padding: 22px 24px;
}

.meal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .92rem;
    color: var(--mid);
}

.meal-item i {
    color: var(--green);
    flex-shrink: 0;
    width: 16px;
}

/* ── BANNER CTA ── */
.cta-strip {
    background: var(--green);
    padding: 56px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-strip h2 {
    font-size: 2rem;
    color: #fff;
    max-width: 500px;
}

.cta-strip a {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-strip a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}



/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .section {
        padding: 56px 24px;
    }

    .hero-banner {
        padding: 48px 24px;
        min-height: 340px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .two-col img {
        height: 280px;
    }

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

    nav {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .cta-strip {
        padding: 40px 24px;
    }

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 1076px) {
    .hero h1 {
        font-size: 80px;
    }

    .hero-banner h1 {
        font-size: 80px;
    }
}

@media (max-width: 1076px) {

    .nav-links,
    .nav-ctas {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

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

    .about-inner,
    .time-inner,
    .contact-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .minds-text h2,
    .testi-header h2,
    .gallery-header h2,
    .time-text h2,
    .contact-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .topbar-right {
        gap: 0.75rem;
    }
}
