* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.page-landing {
    margin: 0;
    background: #fff;
    color: #1f2937;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    font-size: 18px;
}
/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1100;
}

#home,
#about,
#faq,
#facilities,
#research {
    scroll-margin-top: 90px;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #0D9B00;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9B00;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-signup {
    background-color: #0D9B00;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-signup:hover {
    background-color: #0D9B00;
}

.btn-get-started {
    background-color: #0D9B00;
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #4a8d0c;
}

/* ── Mobile hamburger button ── */
.landing-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.landing-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #1f2937;
    transition: all 0.2s ease;
}

/* ── Mobile drop-down menu panel ── */
.landing-mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    padding: 1rem 2rem 1.25rem;
}

.landing-mobile-menu.is-open {
    display: block;
}

.landing-mobile-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.landing-mobile-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s;
}

.landing-mobile-nav a:hover {
    color: #0D9B00;
}

.landing-mobile-auth {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.75rem;
}

.landing-mobile-auth .btn-signup {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .header-nav,
    .header-auth {
        display: none;
    }

    .landing-hamburger {
        display: flex;
    }

    .header-inner {
        padding: 0.75rem 1.25rem;
    }
}

/* Responsive overhaul: public landing page */
body.page-landing {
    overflow-x: hidden;
}

body.page-landing img,
body.page-landing iframe,
body.page-landing video,
body.page-landing embed {
    max-width: 100%;
}

.header-inner,
.description-section,
.offers-section,
.about-section-new,
.facilities-section-new,
.faq-section-new,
.social-section-new,
.footer-content {
    width: 100%;
}

.hero-image-container {
    height: clamp(28rem, 52vw, 32rem);
}

.hero-content {
    width: min(32rem, calc(100vw - 3rem));
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.hero-description,
.description-text,
.about-paragraph {
    overflow-wrap: anywhere;
}

.offers-grid-new,
.about-content-new,
.mission-cards,
.facilities-grid-new,
.research-preview-grid {
    max-width: min(1200px, calc(100vw - 2rem));
}

.page-landing .facilities-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 280px));
}

.page-landing .facility-card-new.facility-feature-card {
    min-width: 0;
}

.contact-section-new {
    max-width: min(820px, calc(100vw - 2rem));
}

.landing-mobile-auth .btn-login,
.landing-mobile-auth .btn-signup {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .header-nav {
        gap: clamp(1rem, 3vw, 2rem);
    }

    .about-logo-img {
        max-width: min(420px, 100%);
    }
}

@media (max-width: 640px) {
    .landing-mobile-menu {
        padding-inline: 1.25rem;
    }

    .hero-image-container {
        height: auto;
        min-height: 30rem;
    }

    .hero-gradient {
        background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 50%, rgba(255,255,255,0.32) 100%);
    }

    .hero-content {
        left: 1rem;
        right: 1rem;
        top: 2.2rem;
        width: auto;
        transform: none;
    }

    .landing-mobile-auth {
        flex-direction: column;
    }

    .offer-card-content,
    .page-landing .facility-feature-card .facility-info-new {
        padding-inline: 1rem;
    }

    .contact-link-value {
        font-size: 0.78rem;
    }
}

@media (max-width: 360px) {
    .header-logo img {
        height: 40px;
    }

    .hero-image-container {
        min-height: 32rem;
    }
}

/* Note: .page-loading-overlay styles moved to app.css for global use */

.hero-section {
    background: #fff;
}

.hero-image-container {
    position: relative;
    height: 32rem;
    overflow: hidden;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #0D9B00, rgb(213, 170, 0)) 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.945) 22%, rgba(255, 255, 255, .72) 47%, rgba(255, 255, 255, .08) 72%, transparent 100%);
}

.hero-content {
    position: absolute;
    left: max(2rem, calc((100vw - 1280px) / 2 + 2rem));
    top: 50%;
    z-index: 2;
    width: min(32rem, 45%);
    transform: translateY(-50%);
}

.hero-title {
    margin: 0 0 1rem 0;
    color: #111827;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-description {
    margin: 0 0 1.5rem 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: #0D9B00;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    border: 2px solid #0D9B00;
}

.btn-hero-primary:hover {
    background-color: #0D9B00;
    border-color: #0D9B00;
}

.btn-hero-secondary {
    background-color: transparent;
    color: #0D9B00 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    border: 2px solid #0D9B00;
}

.btn-hero-secondary:hover {
    background-color: #0D9B00;
    color: white !important;
}

.description-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: .5rem 1.5rem 2.1rem;
}

.description-content {
    max-width: 43rem;
    margin: 0 auto;
    text-align: center;
}

.description-text {
    margin: 0 0 .95rem;
    color: #111827;
    font-size: 1.1rem;
    line-height: 1.45;
}

.offers-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.offers-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.offers-title {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.offers-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.offers-grid-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    grid-template-areas:
        "facility research research"
        "facility mentoring leaderboard";
}

/* Large card - spans 2 rows */
.offer-card-large {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.offer-card-large.offer-facility {
    grid-area: facility;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%),
                url('/uploads/Facility.jpeg') center/cover;
}

.offer-card-large.offer-research {
    grid-area: research;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%),
                url('/uploads/innovation%20hub.jpg') center/cover;
}

/* Medium cards */
.offer-card-medium {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
}

.offer-card-medium.offer-mentoring {
    grid-area: mentoring;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%),
                url('/uploads/mentoring.jpg') center/cover;
}

.offer-card-medium.offer-leaderboard {
    grid-area: leaderboard;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%),
                url('/uploads/mentor%20leaderboard.jpg') center/cover;
}

.offer-card-content {
    padding: 1.5rem;
    width: 100%;
}

.offer-card-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.offer-card-title-white {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.offer-card-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.offer-card-desc-white {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.offer-card-link {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.offer-card-link:hover {
    text-decoration: underline;
}

.offer-card-link-white {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.offer-card-link-white:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .offers-grid-new {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "facility"
            "research"
            "mentoring"
            "leaderboard";
    }

    .offer-card-large,
    .offer-card-medium {
        min-height: 220px;
    }
}


/* ============= ABOUT SECTION NEW DESIGN ============= */
.about-section-new {
    padding: 4rem 2rem;
    background: #f9fafb;
}

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

.about-title {
    color: #111827;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.about-subtitle {
    color: #6b7280;
    font-size: 1.25rem;
    margin: 0;
}

.about-content-new {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    max-width: 500px;
    height: auto;
}

.about-text-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-paragraph {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Mission Section */
.mission-section {
    max-width: 900px;
    margin: 0 auto;
}

.mission-section-title {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card-new {
    text-align: center;
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: #f4b437;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.mission-icon svg {
    width: 24px;
    height: 24px;
}

.mission-card-title {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.mission-card-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============= OLD ABOUT SECTION (KEEPING FOR REFERENCE) ============= */
.facilities-section,
.faq-section {
    padding: 4rem 0;
    background: #fff;
}

.facilities-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.facility-card {
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(109, 200, 10, .1);
}

.facility-image {
    height: 8rem;
    background: #d1d5db;
}

.facility-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.facility-info {
    padding: 1rem;
    text-align: center;
}

.facility-name,
.facility-capacity {
    margin: 0;
    font-size: 1rem;
}

.facility-name {
    font-weight: 600;
}


.research-section {
    padding: 4rem 0;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #0D9B00, #d5a900) 1;
}

.research-preview-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.research-preview-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 155, 0, 0.12);
}

.research-preview-media {
    height: 11rem;
    background: #d1d5db;
}

.research-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.research-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D9B00, #0D9B00);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.research-preview-content {
    padding: 1rem 1rem 1.1rem;
}

.research-preview-badge {
    display: inline-block;
    margin-bottom: .65rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    background: rgba(13, 155, 0, .12);
    color: #0D9B00;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.research-preview-content h3 {
    margin: 0 0 .55rem;
    font-size: 1.05rem;
    color: #111827;
}

.research-preview-content p {
    margin: 0;
    color: #4b5563;
    font-size: .92rem;
    line-height: 1.5;
}

.research-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: #6b7280;
    background: rgba(13, 155, 0, .07);
    border-radius: 1rem;
}

.about-section {
    padding: 4.5rem 0 1rem;
    background: linear-gradient(to bottom, rgba(234, 239, 206, .3), #fff);
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #0D9B00, #d5a900) 1;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto 1rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    padding-top: .25rem;
}


.about-inline-logo {
    float: left;
    width: auto;
    height: 2rem;
    margin: .05rem .45rem 0 0;
    object-fit: contain;
}

.about-text {
    margin: 0;
    color: #313130a8;
    text-align: justify;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 700;
}


.about-text-lead {
    max-width: 34rem;
}

.about-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.about-image {
    width: min(24rem, 92%);
    height: auto;
}

.mission-container {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 1.5rem 5.5rem 0;
}

.mission-card {
    padding: 1.6rem 1.1rem 1.8rem;
    border: 2px solid #d5a900;
    border-radius: 1.75rem;
    box-shadow: none;
}

.mission-title {
    margin: 0 0 1.5rem;
    text-align: center;
    color:  #d5a900;
    font-size: 1.75rem;
    font-weight: 600;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: .95rem;
    text-align: justify;
    padding-left: 5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.mission-checkbox {
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    margin-top: .25rem;
    border: 2px solid #d5a900;
    border-radius: .1rem;
    background: transparent;
    color: #d5a900;
}

.mission-text {
    margin: 0;
    color: #1f2937;
    font-size: .98rem;
    line-height: 1.55;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    padding: 0 1.5rem;
    border: 1px solid rgba(92, 161, 16, .35);
    border-radius: .5rem;
}

.accordion-item summary {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:  #d5a900;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    list-style: none;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: "▼";
    color: #0D9B00;
    font-size: .875rem;
    font-weight: 500;
    transition: transform .2s ease;
}

.accordion-item[open] summary::after {
    transform: rotate(180deg);
}

.accordion-item p {
    margin: 0;
    padding: 0 0 1rem;
    color: #374151;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
}

.site-footer {
    padding: 1.5rem 0;
    border-top: 2px solid #a4e48625;
    color: #ffffff;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: left;
}

.footer-content p {
    justify-content: left;
    margin: 0;
    color: #010202;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
        padding: .75rem 1.5rem;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .hero-image-container {
        height: 24rem;
    }

    .hero-content {
        left: 1.5rem;
        width: calc(100% - 3rem);
        max-width: none;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        justify-content: center;
    }

    .about-image {
        width: min(22rem, 82%);
    }

    .mission-container {
        max-width: 100%;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-title {
        font-size: 1.5rem;
    }

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

    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 560px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        left: 1.25rem;
        max-width: 15rem;
    }

    .description-section,
    .offers-section,
    .facilities-section,
    .carousel-section,
    .faq-section,
    .about-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-text {
        font-size: .95rem;
    }

    .mission-card {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    .mission-title {
        font-size: 1.35rem;
    }
}

/* ============= FACILITIES SECTION NEW DESIGN ============= */
.facilities-section-new {
    padding: 4rem 2rem;
    background: #fff;
}

.facilities-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.facilities-title {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.facilities-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.facilities-grid-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.facility-card-new {
    display: grid;
    grid-template-columns: 140px 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.facility-image-new {
    width: 140px;
    height: 140px;
    overflow: hidden;
}

.facility-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
    font-weight: 600;
}

.facility-info-new {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.facility-name-new {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.facility-capacity-new {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0 0 0.5rem 0;
}

.facility-capacity-new strong {
    color: #374151;
    font-weight: 600;
}

.facility-desc-new {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.btn-book-now {
    background: #0D9B00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: background 0.2s;
}

.btn-book-now:hover {
    background: #0D9B00;
}

.page-landing .facilities-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
    justify-content: center;
    gap: 1.5rem;
}

.page-landing .facility-card-new.facility-feature-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #273019;
    box-shadow: 0 18px 34px rgba(20, 28, 16, 0.2);
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-landing .facility-card-new.facility-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(20, 28, 16, 0.28);
}

.page-landing .facility-card-new.facility-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(16, 25, 13, 0) 26%,
        rgba(42, 47, 22, 0.72) 62%,
        rgba(31, 38, 21, 0.98) 100%
    );
    pointer-events: none;
}

.page-landing .facility-feature-card .facility-image-new {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: #d5d8cd;
}

.page-landing .facility-feature-card .facility-image-new img,
.page-landing .facility-feature-card .facility-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-landing .facility-feature-card .facility-placeholder {
    display: flex;
    border-radius: inherit;
    background: linear-gradient(135deg, #31542b, #1f2816);
    color: #ffffff;
}

.page-landing .facility-feature-card .facility-info-new {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0 20px 24px;
}

.page-landing .facility-feature-card .facility-name-new {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.page-landing .facility-feature-card .facility-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-landing .facility-feature-card .facility-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.page-landing .facility-feature-card .facility-capacity-new {
    display: none;
}

.page-landing .facility-feature-card .facility-desc-new {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.28;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.page-landing .facility-feature-card .btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    margin-top: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #22251b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}

.page-landing .facility-feature-card .btn-book-now:hover {
    background: #f5f5f0;
    color: #0f1a0e;
}

.facilities-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .facilities-grid-new {
        grid-template-columns: 1fr;
    }
    
    .facility-card-new {
        grid-template-columns: 120px 1fr;
    }
    
    .facility-image-new {
        width: 120px;
        height: 120px;
    }
}

/* ============= FAQ SECTION NEW DESIGN ============= */
.faq-section-new {
    padding: 4rem 2rem;
    background: #fff;
}

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

.faq-title {
    color: #111827;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.faq-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.faq-container-new {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item-new {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-item-new[open] {
    border-color: #d1d5db;
}

.faq-question-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111827;
    list-style: none;
    background: #fff;
}

.faq-question-new::-webkit-details-marker {
    display: none;
}

.faq-question-new:hover {
    background: #f9fafb;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item-new[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer-new {
    padding: 0 1.25rem 1rem;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-answer-new p {
    margin: 0;
}

/* ============= SOCIAL LINKS SECTION ============= */
.social-section-new {
    padding: 4rem 2rem 4.5rem;
    background:
        radial-gradient(circle at top left, rgba(13, 155, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4faf2 100%);
    border-top: 1px solid rgba(13, 155, 0, 0.08);
}

.social-header {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.social-title {
    margin: 0 0 0.45rem;
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.social-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.55;
}

.social-links-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0;
    line-height: 0;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 16px;
    text-decoration: none;
    text-decoration-line: none;
    text-decoration-color: transparent;
    -webkit-text-decoration-line: none;
    -webkit-text-decoration-color: transparent;
    text-decoration-skip-ink: none;
    line-height: 1;
    font-size: 0;
    overflow: hidden;
    border: 0 !important;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px 28px;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon-link:hover {
    transform: translateY(-1px);
    box-shadow: none;
    border-color: transparent;
}

.social-icon-link::after,
.social-icon-link::before {
    content: none !important;
}

.social-icon-link--facebook {
    background-image: url('/images/facebook.png');
    background-color: rgba(24, 119, 242, 0.08);
}

.social-icon-link--instagram {
    background-image: url('/images/instagram.png');
    background-color: rgba(225, 48, 108, 0.08);
}

.social-icon-link--tiktok {
    background-image: url('/images/tiktok.png');
    background-color: rgba(0, 0, 0, 0.08);
}

.social-icon-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.social-icon-link--youtube {
    background-color: rgba(255, 0, 0, 0.08);
}

.social-icon-link--yt {
    background-color: rgba(255, 0, 0, 0.08);
}

.contact-section-new {
    max-width: 820px;
    margin: 2rem auto 0;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(13, 155, 0, 0.12);
    box-shadow: 0 14px 30px rgba(13, 155, 0, 0.06);
    backdrop-filter: blur(10px);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.contact-title {
    margin: 0 0 0.35rem;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.contact-link-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 220px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(13, 155, 0, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fbfef9 100%);
    box-shadow: 0 10px 24px rgba(13, 155, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 155, 0, 0.22);
    box-shadow: 0 16px 30px rgba(13, 155, 0, 0.1);
}

.contact-link-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(13, 155, 0, 0.1);
    color: #0D9B00;
    font-size: 0.85rem;
    font-weight: 800;
}

.contact-link-icon--email {
    background-image: url('/images/icons8-microsoft-outlook-2025-48.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 22px;
    color: transparent;
    font-size: 0;
}

.contact-link-label {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-link-value {
    display: block;
    color: #0D9B00;
    font-size: 0.82rem;
    line-height: 1.25;
    margin-top: 0.1rem;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section-new {
        padding: 3rem 1rem;
    }
    
    .faq-question-new {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
    
    .faq-answer-new {
        padding: 0 1rem 0.875rem;
        font-size: 0.8rem;
    }

    .social-section-new {
        padding: 3rem 1rem 3.5rem;
    }

    .social-links-grid {
        gap: 0.75rem;
    }

    .social-icon-link {
        width: 64px;
        height: 64px;
        min-height: 64px;
    }

    .social-icon-fallback {
        font-size: 0.75rem;
    }

    .contact-links-grid {
        width: 100%;
    }

    .contact-section-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .contact-copy {
        width: 100%;
        text-align: center;
    }

    .contact-link-card {
        width: 100%;
        min-width: 0;
    }
}
