/* =========================================================
   GLOBAL
========================================================= */

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

html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", Arial, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   COLOUR VARIABLES
========================================================= */

:root {

    --dark-blue: #063b70;
    --deep-blue: #003b6f;
    --navy: #062f58;

    --teal: #087f82;
    --light-teal: #eaf8f7;

    --text-dark: #111827;
    --text-gray: #4b5563;

    --white: #ffffff;

    --border: #dce8e9;

    --light-background: #f7fbfb;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: relative;

    z-index: 1;
}


.header-container {

    width: min(94%, 1450px);

    margin: auto;

    min-height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.logo-area {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo-area img {

    width: 450px;

    height: 100px;

    object-fit: contain;
}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;
}


.logo-text strong {

    font-size: 20px;

    color: #06376b;

    letter-spacing: .2px;
}


.logo-text span {

    font-size: 12px;

    color: #1b5084;

    margin-top: 2px;
}


/* NAVIGATION */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;
}


.main-navigation a {

    font-size: 14px;

    font-weight: 500;

    padding: 26px 0;

    position: relative;

    color: #111111;

    transition: .25s ease;
}


.main-navigation a:hover {

    color: var(--teal);
}


.main-navigation a.active {

    color: #063b70;
}


.main-navigation a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 14px;

    height: 3px;

    background: var(--teal);

    border-radius: 5px;
}


/* BOOK BUTTON */

.header-book-btn {

    background: var(--teal);

    color: white;

    padding: 10px 16px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;

    transition: .25s ease;
}


.header-book-btn:hover {

    background: #06696c;

    transform: translateY(-1px);
}

/* =========================================================
   HERO
========================================================= */

.hero {

    background: #ffffff;

    overflow: hidden;
}


.hero-container {
    width: 100%;
    min-height: 420px;
    display: grid;
    grid-template-columns: 30% 68%;
}


/* HERO CONTENT */

.hero-content {

    padding:

        50px

        30px

        35px
        
        55px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 1;

    background: #ffffff;
}


.hero-content h1 {

    color: #103d6b;

    font-size: clamp(42px, 4.1vw, 64px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 12px;
}


.hero-content h2 {

    color: var(--teal);

    font-size: clamp(22px, 2vw, 29px);

    line-height: 1.3;

    margin-bottom: 12px;

    font-weight: 700;
}


.hero-content > p {

    max-width: 480px;

    font-size: 16px;

    line-height: 1.75;

    color: #202020;

    margin-bottom: 22px;
}


/* HERO IMAGE */

/* =====================================================
   HERO IMAGE CAROUSEL - OPTION B (EDGE-TO-EDGE FILL)
   Consistent aspect ratio without blank black borders
===================================================== */
.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    touch-action: pan-y;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center 12% !important;
    display: block;
}

/* Slide Navigation Arrows */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: all 0.25s ease;
    font-size: 15px;
}

.hero-nav-btn:hover {
    background: rgba(2, 132, 199, 0.95);
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.5);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev-btn { left: 12px; }
.hero-next-btn { right: 12px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 26px;
    border-radius: 6px;
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 24px;

    margin-bottom: 25px;
}


.primary-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: #063f78;

    color: white;

    padding: 12px 20px;

    border-radius: 6px;

    font-weight: 600;

    font-size: 14px;

    transition: .25s ease;
}


.primary-button:hover {

    background: #052f5a;

    transform: translateY(-2px);
}


.text-button {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #073e78;

    font-size: 14px;

    font-weight: 600;
}


.text-button:hover {

    color: var(--teal);
}


/* HERO TAGS */

.hero-tags {

    display: flex;

    width: fit-content;

    max-width: 100%;

    background: #ffffff;

    border-radius: 9px;

    box-shadow: 0 5px 20px rgba(0,0,0,.10);

    padding: 10px 13px;

    gap: 20px;
}


.hero-tags div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;
}


.hero-tags i {

    color: #063e78;

    font-size: 16px;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {

    background: #eef9f8;

    padding: 18px 0 25px;
}


.features-container {

    width: min(92%, 1350px);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);
}


.feature {

    padding: 0 28px;

    text-align: center;

    border-right: 1px solid #c7dddd;

}


.feature:last-child {

    border-right: none;
}


.feature-icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 8px;

    border: 1.5px solid #0a898b;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #087f82;

    font-size: 21px;
}


.feature h3 {

    font-size: 16px;

    line-height: 1.4;

    margin-bottom: 7px;

    color: #101010;
}


.feature p {

    font-size: 12px;

    line-height: 1.65;

    color: #202020;
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.information-section {

    padding: 28px 0;

    background: #ffffff;
}


.information-container {

    width: min(92%, 1350px);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.1fr 1fr;

    gap: 26px;
}


.info-card {

    background: linear-gradient(
        145deg,
        #f4faf9,
        #ffffff
    );

    border-radius: 14px;

    padding: 22px 20px;

    box-shadow: 0 2px 14px rgba(0,0,0,.07);

    min-height: 350px;
}
/* =====================================================
   INCLUSIVE STUDY CENTRE LOGO
===================================================== */

.ISC-logo-container {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px 0 8px;
}

.ISC-logo-image {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    margin: 0 !important;
}


.info-card h2 {

    font-size: 14px;

    font-weight: 700;

    color: #151515;
}


.card-line {

    width: 36px;

    height: 3px;

    background: var(--teal);

    margin: 6px 0 12px;
}


.large-card-icon {

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: #e2f2f2;

    color: #087f82;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    margin-bottom: 15px;
}


.info-card > p {

    font-size: 12px;

    line-height: 1.7;

    color: #111111;

    margin-bottom: 13px;
}


/* CHECK LIST */

.check-list {

    list-style: none;

    margin-bottom: 15px;
}


.check-list li {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    font-size: 11.5px;

    margin: 5px 0;
}


.check-list i {

    color: #07868a;

    font-size: 14px;

    margin-top: 2px;
}


/* SMALL BUTTON */

.small-button {

    display: inline-block;

    background: #063f78;

    color: white;

    padding: 10px 17px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 600;

    margin-top: 2px;
}


.small-button:hover {

    background: #052f5a;
}


/* =========================================================
   FACILITY LIST
========================================================= */

.facility-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;
}


.facility-icon {

    flex: 0 0 42px;

    height: 42px;

    border-radius: 8px;

    background: #eeeafa;

    color: #153d7a;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;
}


.facility-item strong {

    display: block;

    font-size: 12px;

    margin-bottom: 1px;
}


.facility-item p {

    font-size: 10.5px;

    line-height: 1.4;

    color: #222;
}


.view-link {

    color: #087f82;

    font-size: 12px;

    font-weight: 600;

    display: inline-flex;

    gap: 7px;

    margin-top: 3px;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.quick-actions {

    padding: 0 0 20px;
}


.quick-actions-container {

    width: min(92%, 1350px);

    margin: auto;

    background: #ffffff;

    border-radius: 13px;

    box-shadow: 0 2px 14px rgba(0,0,0,.09);

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 18px 10px;
}


.quick-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 20px;

    border-right: 1px solid #d1dce2;
}


.quick-item:last-child {

    border-right: none;
}


.quick-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 20px;
}


.quick-icon.purple {

    background: #8663c4;
}


.quick-icon.orange {

    background: #f18a32;
}


.quick-icon.green {

    background: #68a85e;
}


.quick-icon.blue {

    background: #2e8ed4;
}


.quick-content h3 {

    font-size: 15px;

    margin-bottom: 3px;
}


.quick-content p {

    font-size: 11.5px;
    font-weight: 500;

    line-height: 1.55;

    margin-bottom: 5px;
}


.quick-content a {

    font-size: 12.5px;

    font-weight: 700;

    color: #153d7a;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    background: #e8f7f7;

    padding: 17px 0;
}


.quote-container {

    width: min(90%, 1200px);

    margin: auto;

    display: flex;

    align-items: center;

    gap: 17px;
}


.quote-symbol {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #a8d9da;

    color: #087f82;

    font-size: 48px;

    line-height: 65px;

    text-align: center;

    font-family: Georgia, serif;

    font-weight: bold;
}


.quote-text {

    width: 260px;
}


.quote-text p {

    color: #08747a;

    font-weight: 600;

    font-size: 13px;

    line-height: 1.45;
}


.quote-text span {

    font-size: 12px;

    color: #08747a;
}


.quote-divider {

    width: 1px;

    height: 55px;

    background: #b9d8d9;

    margin-left: 10px;
}


.quote-message {

    flex: 1;

    text-align: center;

    color: #08747a;

    font-weight: 600;

    font-size: 14px;
}


.quote-illustration {

    display: flex;

    align-items: end;

    gap: 10px;

    color: #8ec5c7;

    font-size: 36px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: auto;
    background: #063b70;
    color: #ffffff;
    padding: 35px 0 10px;
    display: block;
    width: 100%;
}

.footer-container {
    width: min(95%, 1450px);
    margin: auto;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1.25fr 1fr;

    gap: 35px;
    padding-bottom: 28px;
}

.footer-container > div {
    border-right: 1px solid rgba(255,255,255,.22);

    padding-right: 30px;
}

.footer-container > div:last-child {
    border-right: none;
}


/* FOOTER BRAND */

.footer-logo {

    display: flex;

    align-items: left;

    gap: 10px;

    margin-top:13px;

    margin-bottom: 13px;
}


.footer-logo > i {

    font-size: 25px;
}


.footer-logo div {

    display: flex;

    flex-direction: column;

    line-height: 1.25;
}


.footer-logo strong {

    font-size: 11px;
}


.footer-logo span {

    font-size: 10px;
}


.footer-brand p {

    font-size: 14px;

    line-height: 1;
}
.footer-top-line {

    font-size: 20px !important;

    font-weight: 400;

    color: #ff9100;

    margin: 0 0 0 0 !important;

    /* text-align: center; */

}
.footer-sub-line {

    font-size: 12px !important;

    font-style: italic;

    font-weight: 400;

    color: #ffda33;

    margin: 8px 0 4px 0 !important;

    /* text-align: center; */

}

/* FOOTER COLUMNS */

.footer-column h3 {

    font-size: 16px;

    margin-bottom: 10px;

    letter-spacing: .3px;
}


.footer-links {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4px 20px;
}


.footer-links a {

    font-size: 14px;

    color: #f0f5f8;

    transition: .2s;
}


.footer-links a:hover {

    color: #8dd9da;
}


.footer-column p {

    font-size: 13.5px;

    line-height: 1.6;

    margin-bottom: 7px;

    color: #eef5f8;
}


.footer-column p i {

    width: 20px;

    color: #ffffff;
}


/* SOCIAL */

.social-icons {

    display: flex;

    gap: 10px;
}


.social-icons a {

    width: 28px;

    height: 28px;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    transition: .25s;
}


.social-icons a:hover {

    background: #ffffff;

    color: #063b70;
}


/* FOOTER BOTTOM */

.footer-bottom {

    width: min(92%, 1350px);

    margin: auto;

    border-top: 1px solid rgba(255,255,255,.14);

    padding: 11px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

    color: #e6eef5;
}


/* =========================================================
   RESPONSIVE NAVIGATION & LAYOUT
========================================================= */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #063b70;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    border-color: #0284c7;
    color: #0284c7;
}

.mobile-only-book-btn {
    display: none;
}

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

@media (max-width: 1100px) {
    .main-navigation {
        gap: 16px;
    }
    .main-navigation a {
        font-size: 13px;
    }
    .hero-container {
        grid-template-columns: 46% 54%;
        gap: 20px;
    }
    .hero-content {
        padding-left: 20px;
    }
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        row-gap: 20px;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 10px 18px;
        position: relative;
    }
    .logo-area img {
        max-height: 42px;
        width: auto;
    }
    .header-book-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .main-navigation {
        display: none;
    }
    .main-navigation.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 16px 20px 24px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
        border-top: 1px solid #e2e8f0;
        border-bottom: 3px solid #0284c7;
        z-index: 9999;
        gap: 8px;
        animation: slideDownMenu 0.25s ease-out;
    }
    .main-navigation a {
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        padding: 10px 14px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    .main-navigation a:hover,
    .main-navigation a.active {
        background: #f0f9ff;
        color: #0284c7;
        padding-left: 18px;
    }
    .mobile-only-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
        color: #ffffff !important;
        padding: 12px 18px;
        border-radius: 8px;
        font-weight: 700;
        margin-top: 8px;
        box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
    }
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }
    .hero-content {
        padding: 30px 0 10px;
        order: 1;
    }
    .hero-image {
        order: 2;
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: unset !important;
    }
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    .feature {
        border-right: none;
        border-bottom: 1px solid #c7dddd;
        padding: 15px;
    }
    .information-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .quick-actions-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }
    .quick-item {
        border-right: none;
        border-bottom: 1px solid #d1dce2;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .logo-area img {
        max-height: 36px;
    }
    .hero-content h1 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.15;
    }
    .hero-content h2 {
        font-size: clamp(16px, 5vw, 20px);
    }
    .hero-content > p {
        font-size: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    .hero-buttons .primary-button,
    .hero-buttons .text-button {
        width: 100%;
        justify-content: center;
    }
    .hero-tags {
        flex-wrap: wrap;
        gap: 6px;
    }
    .hero-tags div {
        font-size: 11px;
        padding: 5px 10px;
    }
    .hero-image {
        aspect-ratio: 16 / 9;
    }
    .hero-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .hero-prev-btn { left: 6px; }
    .hero-next-btn { right: 6px; }
    .hero-dots {
        padding: 4px 10px;
        bottom: 8px;
    }
    .hero-dot {
        width: 7px;
        height: 7px;
    }
    .hero-dot.active {
        width: 18px;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .quick-actions-container {
        grid-template-columns: 1fr;
    }
    .quote-illustration {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    /* Floating tools mobile positioning */
    .speaker-button {
        top: auto;
        bottom: 85px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .toggle-buttons {
        top: auto;
        bottom: 135px;
        right: 14px;
        gap: 8px;
    }
    .toggle-btn {
        width: 38px;
        height: 38px;
    }
    .toggle-btn svg, .toggle-btn img {
        width: 18px !important;
        height: 18px !important;
    }
    .up-button {
        bottom: 25px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* =====================================================
   INCLUSIVE STUDY CENTRE LOGO — TEXT WRAP
===================================================== */

.info-card .ISC-logo-container {
    width: 100% !important;
    height: 85px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 3px 0 8px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.info-card .ISC-logo-image {
    display: block !important;

    width: 100px !important;
    height: 100px !important;

    min-width: 100px !important;
    min-height: 100px !important;

    max-width: 100px !important;
    max-height: 100px !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 0 !important;
}
/* =====================================================
   GLOBAL TEXT SIZE IMPROVEMENT
===================================================== */

/* Normal paragraph text */
.info-card > p {
    font-size: 14px;
    line-height: 1.6;
}

/* Checklist text */
.check-list li {
    font-size: 14px;
    line-height: 1.6;
}

/* Facility title */
.facility-item strong {
    font-size: 14px;
}

/* Facility description */
.facility-item p {
    font-size: 13px;
    line-height: 1.5;
}

/* Facility / service links */
.view-link,
.small-button {
    font-size: 14px;
}

/* Top feature section */
.feature-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Feature headings */
.feature-item h3 {
    font-size: 16px;
}

/* Bottom action cards */
.action-card p {
    font-size: 14px;
}

.action-card h3 {
    font-size: 14px;
}
/* =====================================================
   ACTION / QUICK LINK SECTION
===================================================== */

.action-card h3 {
    font-size: 15px !important;
    line-height: 1.4;
}

.action-card p {
    font-size: 14px !important;
    line-height: 1.5;
}

.action-card a {
    font-size: 14px !important;
}


/* =====================================================
   FOOTER TEXT
===================================================== */

.footer {
    font-size: 14px !important;
}

.footer p,
.footer span,
.footer li,
.footer a {
    font-size: 14px !important;
    line-height: 2.5;
}

.footer strong {
    font-size: 15px !important;
}
/* =====================================================
   ACCESSIBILITY & TTS BUTTONS
===================================================== */
.speaker-button {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4FE0F9 0%, #1a73e8 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 115, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
  padding: 0;
}

.speaker-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(31, 115, 232, 0.6);
}

.speaker-button:active {
  transform: scale(0.95);
}

.speaker-button.active {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 107, 1); }
}

.up-button {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4FE0F9 0%, #1a73e8 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 115, 232, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}

.up-button.show {
  display: flex;
}

.up-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(31, 115, 232, 0.6);
}

.up-button:active {
  transform: scale(0.95);
}

.toggle-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 145px;
  right: 20px;
  z-index: 1050;
}

.toggle-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-btn svg {
  width: 22px;
  height: 22px;
}

/* =====================================================
   DARK MODE
===================================================== */
body.dark-mode {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

body.dark-mode .site-header {
  background: rgba(18, 18, 18, 0.95) !important;
  border-bottom: 1px solid #333 !important;
}

body.dark-mode .main-navigation a {
  color: #ccc !important;
}

body.dark-mode .main-navigation a:hover,
body.dark-mode .main-navigation a.active {
  color: #4FE0F9 !important;
}

body.dark-mode .hero {
  background: #181818 !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content h2 {
  color: #f0f0f0 !important;
}

body.dark-mode .hero-content p {
  color: #bbb !important;
}

body.dark-mode .action-card,
body.dark-mode .feature-card,
body.dark-mode .equipment-card,
body.dark-mode .guidelines-card,
body.dark-mode .stat-card {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-color: #333 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

body.dark-mode .action-card h3,
body.dark-mode .feature-card h3,
body.dark-mode .equipment-card h3 {
  color: #fff !important;
}

body.dark-mode .site-footer {
  background-color: #0d0d0d !important;
  color: #bbb !important;
}

/* =====================================================
   ACCESSIBILITY MODE (High Contrast Yellow on Black)
===================================================== */
body.accessibility-mode,
body.accessibility-mode * {
  background-color: #000 !important;
  color: #FFD700 !important;
  border-color: #FFD700 !important;
}

body.accessibility-mode .speaker-button,
body.accessibility-mode .up-button,
body.accessibility-mode .toggle-btn {
  background: #FFD700 !important;
  color: #000 !important;
  border: 2px solid #FFD700 !important;
}


/* Dark mode for mobile drawer */
body.dark-mode .mobile-menu-toggle {
    background: #1e1e1e;
    border-color: #444;
    color: #4FE0F9;
}
body.dark-mode .main-navigation.open {
    background: #181818 !important;
    border-top-color: #333 !important;
    border-bottom-color: #4FE0F9 !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6) !important;
}
body.dark-mode .main-navigation a {
    color: #e0e0e0 !important;
}
body.dark-mode .main-navigation a:hover,
body.dark-mode .main-navigation a.active {
    background: #252525 !important;
    color: #4FE0F9 !important;
}
