/* =========================
   BASIC SETTINGS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   COLORS
========================= */

:root {
    --red: #e30613;
    --dark: #050505;
    --dark2: #111111;
    --white: #ffffff;
    --light: #f5f5f5;
    --gray: #777777;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 78px;
    width: 100%;
    background: #050505;

    display: flex;
    align-items: center;

    padding: 8px 4%;

    gap: 25px;

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom: 1px solid #252525;
}


/* Logo */

.logo-area {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 250px;
}

.logo-area img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    border-radius: 50%;
}

.logo-text h2 {
    color: var(--red);

    font-size: 24px;

    line-height: 1;

    letter-spacing: 1px;
}

.logo-text span {
    display: block;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;
}

.logo-text small {
    display: block;

    color: var(--red);

    font-size: 9px;

    letter-spacing: 4px;

    font-weight: bold;
}


/* Navigation */

.navbar nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex: 1;
}

.navbar nav a {
    font-size: 11px;

    font-weight: bold;

    text-transform: uppercase;

    transition: 0.3s;
}

.navbar nav a:hover {
    color: var(--red);
}

/* WhatsApp */

.whatsapp-button {
    background: var(--red);

    padding: 11px 17px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: bold;

    white-space: nowrap;

    transition: 0.3s;
}

.whatsapp-button:hover {
    background: #b9000b;

    transform: translateY(-2px);
}


/* =========================
   HERO SECTION
========================= */

.hero {

    min-height: 680px;

    display: flex;

    align-items: center;

    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.20)
        ),
        url("assets/hero-bg.png");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


/* Red side effect */

.hero::after {

    content: "";

    position: absolute;

    right: -150px;

    bottom: -150px;

    width: 450px;

    height: 450px;

    background: var(--red);

    opacity: 0.15;

    border-radius: 50%;

    filter: blur(100px);
}


/* Hero content */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin-left: 8%;

    padding: 60px 20px;
}

.small-title {

    color: var(--red);

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.hero h1 {

    font-size: clamp(45px, 6vw, 78px);

    line-height: 0.98;

    font-weight: 900;

    margin-bottom: 25px;
}

.hero h1 span {

    color: var(--red);
}

.hero-description {

    font-size: 20px;

    font-weight: 500;

    margin-bottom: 30px;

    color: #eeeeee;
}


/* Hero Buttons */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 15px 23px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: bold;

    text-transform: uppercase;

    transition: 0.3s;
}

.red-btn {

    background: var(--red);

    color: white;
}

.red-btn:hover {

    background: #b9000b;

    transform: translateY(-3px);
}

.outline-btn {

    border: 1px solid white;

    background: rgba(0,0,0,0.3);

}

.outline-btn:hover {

    background: white;

    color: black;
}


/* =========================
   ABOUT SECTION
========================= */

.about {

    position: relative;

    background: #f5f5f5;

    color: #111;

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;

    overflow: hidden;
}


/* Red background decoration */

.about::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: var(--red);

    opacity: 0.05;

    border-radius: 50%;

    left: -180px;

    top: -150px;
}


/* =========================
   ABOUT IMAGE
========================= */

.about-image {

    position: relative;

    height: 570px;

    border-radius: 12px;

    overflow: hidden;

    background: #111;

    border: 6px solid #111;

    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* Image dark overlay */

.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,0.65)
        );

    pointer-events: none;
}


/* Since badge */

.experience-badge {

    position: absolute;

    z-index: 2;

    left: 25px;

    bottom: 25px;

    width: 110px;

    height: 110px;

    background: var(--red);

    color: white;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 5px solid white;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-badge strong {

    font-size: 30px;

    line-height: 1;
}

.experience-badge span {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-top: 5px;
}


/* =========================
   ABOUT CONTENT
========================= */

.about-content {

    position: relative;

    z-index: 2;
}

.about-content h2 {

    font-size: 45px;

    line-height: 1.05;

    margin-bottom: 22px;

    font-weight: 900;
}

.about-content h2 span {

    display: block;

    color: var(--red);
}

.about-intro {

    font-size: 18px !important;

    font-weight: 600;

    color: #222 !important;

    margin-bottom: 15px !important;
}

.about-content > p {

    color: #555;

    font-size: 15px;

    line-height: 1.8;

    max-width: 700px;
}


/* =========================
   VALUES
========================= */

.about-values {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.about-value {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 14px;

    background: white;

    border: 1px solid #e0e0e0;

    border-radius: 7px;

    transition: 0.3s;
}

.about-value:hover {

    transform: translateY(-3px);

    border-color: var(--red);

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-icon {

    width: 45px;

    height: 45px;

    min-width: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    border-radius: 6px;

    font-size: 21px;
}

.about-value h3 {

    font-size: 14px;

    text-transform: uppercase;

    margin-bottom: 2px;
}

.about-value p {

    margin: 0;

    font-size: 11px;

    color: #777;
}


/* =========================
   COACH CARDS
========================= */

.coach-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.coach-card {
    display: flex;
    align-items: center;
    gap: 14px;

    background: #111;
    color: white;

    padding: 12px;

    border-radius: 8px;

    border-left: 4px solid var(--red);

    transition: 0.3s;
}

.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}


/* Coach Photo */

.coach-photo {
    width: 72px;
    height: 72px;

    min-width: 72px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid var(--red);

    background: #222;
}


/* Coach Details */

.coach-details span {
    color: #aaa;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: bold;
}

.coach-details h3 {
    font-size: 16px;

    margin: 3px 0;
}

.coach-details p {
    color: #bbb;

    font-size: 10px;

    margin: 0;
}


/* Mobile */

@media (max-width: 800px) {

    .coach-info {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .coach-photo {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

}
/* =========================
   ABOUT BUTTON
========================= */

.about-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 25px;

    padding: 14px 20px;

    background: var(--red);

    color: white;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.3s;
}

.about-button:hover {

    background: #111;

    transform: translateY(-3px);
}


/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 800px) {

    .about {

        grid-template-columns: 1fr;

        padding: 65px 20px;

        gap: 35px;
    }

    .about-image {

        height: 400px;
    }

    .about-content h2 {

        font-size: 32px;
    }

    .about-intro {

        font-size: 16px !important;
    }

    .about-values {

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .coach-info {

        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .about-image {

        height: 350px;
    }

    .about-content h2 {

        font-size: 29px;
    }

    .about-values {

        grid-template-columns: 1fr;
    }

    .experience-badge {

        width: 90px;

        height: 90px;

        left: 18px;

        bottom: 18px;
    }

    .experience-badge strong {

        font-size: 25px;
    }

}

/* =========================
   TRAINING PROGRAMS
========================= */

.programs {
    background: #080808;
    padding: 100px 7%;
}

.programs .section-heading {
    margin-bottom: 50px;
}

.section-subtitle {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}


/* Program Grid */

.program-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Program Card */

.program-card {
    background: #151515;

    border: 1px solid #292929;

    border-radius: 10px;

    overflow: hidden;

    transition: 0.35s;

    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);

    border-color: var(--red);

    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}


/* Image */

.program-image {
    height: 220px;

    position: relative;

    overflow: hidden;

    background: #222;
}

.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.07);
}


/* Image Dark Overlay */

.program-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,0.7)
        );
}


/* Number */

.program-number {
    position: absolute;

    z-index: 2;

    right: 15px;

    bottom: 15px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red);

    color: white;

    border-radius: 50%;

    font-weight: 900;

    font-size: 12px;
}


/* Content */

.program-content {
    padding: 25px;
}

.program-label {
    color: var(--red);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.program-content h3 {
    color: white;

    font-size: 21px;

    margin-bottom: 10px;
}

.program-content p:not(.program-label) {
    color: #aaa;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.program-content a {
    color: white;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.3s;
}

.program-content a:hover {
    color: var(--red);
}


/* =========================
   PROGRAM MOBILE
========================= */

@media (max-width: 900px) {

    .program-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .programs {
        padding: 65px 20px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-image {
        height: 230px;
    }

}

/* =========================
   CLASS TIMETABLE
========================= */

.timetable {
    background: #000000;
    color: #fffdfd;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* Timetable Box */

.time-box {
    position: relative;

    background: #000000;

    padding: 35px 20px;

    min-height: 170px;

    border-radius: 10px;

    border: 1px solid #dddddd;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


/* Red top line */

.time-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--red);
}


/* Hover */

.time-box:hover {

    transform: translateY(-7px);

    border-color: var(--red);

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}


/* Heading */

.time-box h3 {

    color: var(--red);

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 10px;
}


/* Time */

.time-box p {

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;

    margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .timetable {

        grid-template-columns: 1fr 1fr;

        padding: 70px 5%;

    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .timetable {

        grid-template-columns: 1fr;

        padding: 60px 20px;

        gap: 15px;

    }

    .time-box {

        min-height: 145px;

    }

}

/* =========================
   ACHIEVEMENTS
========================= */

.achievements {

    position: relative;

    background: #080808;

    color: white;

    padding: 100px 7%;

    overflow: hidden;
}


/* Background glow */

.achievements::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: var(--red);

    opacity: 0.045;

    border-radius: 50%;

    left: -220px;

    bottom: -200px;
}


/* Heading */

.achievements .section-heading {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.achievements .section-heading h2 {

    color: white;

    font-size: 43px;

    font-weight: 900;

    margin-bottom: 15px;
}


/* =========================
   ACHIEVEMENT CARDS
========================= */

.achievement-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.achievement-card {

    position: relative;

    background: #121212;

    border: 1px solid #292929;

    border-radius: 10px;

    padding: 35px 22px;

    min-height: 285px;

    text-align: center;

    overflow: hidden;

    transition: 0.35s;
}


/* Top red line */

.achievement-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: var(--red);

    transition: 0.35s;
}


.achievement-card:hover {

    transform: translateY(-8px);

    border-color: #444;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.45);
}


.achievement-card:hover::before {

    width: 100%;
}


/* Icon */

.achievement-icon {

    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    background: #1d1d1d;

    border: 1px solid #333;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    transition: 0.35s;
}


.achievement-card:hover .achievement-icon {

    background: var(--red);

    border-color: var(--red);

    transform: scale(1.08);
}


/* Number */

.achievement-number {

    color: var(--red);

    font-size: 43px;

    font-weight: 900;

    line-height: 1;

    margin-bottom: 8px;
}


/* Title */

.achievement-card h3 {

    color: white;

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 10px;
}


/* Description */

.achievement-card p {

    color: #999;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =========================
   ACHIEVEMENT HIGHLIGHT
========================= */

.achievement-highlight {

    position: relative;

    z-index: 2;

    margin-top: 35px;

    padding: 25px 30px;

    background: var(--red);

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 20px;

    color: white;
}


.highlight-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    background: #111;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;
}


.highlight-content {

    flex: 1;
}


.highlight-content p {

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.highlight-content h3 {

    font-size: 21px;

    margin-bottom: 4px;
}


.highlight-content span {

    font-size: 12px;

    opacity: 0.9;
}


.highlight-button {

    background: #111;

    color: white;

    padding: 13px 18px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 900;

    white-space: nowrap;

    transition: 0.3s;
}


.highlight-button:hover {

    background: white;

    color: #111;
}


/* =========================
   ACHIEVEMENTS TABLET
========================= */

@media (max-width: 1000px) {

    .achievement-grid {

        grid-template-columns: 1fr 1fr;

    }

}


/* =========================
   ACHIEVEMENTS MOBILE
========================= */

@media (max-width: 650px) {

    .achievements {

        padding: 65px 20px;

    }

    .achievements .section-heading h2 {

        font-size: 32px;

    }

    .achievement-grid {

        grid-template-columns: 1fr 1fr;

        gap: 12px;

    }

    .achievement-card {

        min-height: 250px;

        padding: 25px 15px;

    }

    .achievement-number {

        font-size: 34px;

    }

    .achievement-card h3 {

        font-size: 13px;

    }

    .achievement-card p {

        font-size: 11px;

    }

    .achievement-highlight {

        flex-direction: column;

        text-align: center;

        padding: 25px 18px;

    }

    .highlight-button {

        width: 100%;

        text-align: center;

    }

}


@media (max-width: 400px) {

    .achievement-grid {

        grid-template-columns: 1fr;

    }

}

/* =========================
   EVENTS
========================= */

.events {
    background: #f5f5f5;

    color: #111;

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;
}


/* Heading */

.events-list .section-heading {
    margin-bottom: 30px;
    align-items:center;
   
}


/* Event Card */

.event-card {

    position: relative;

    background: white;

    border: 1px solid #dedede;

    border-radius: 10px;

    padding: 20px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    gap: 18px;

    transition: 0.3s;

    overflow: hidden;
}


.event-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: var(--red);

    transform: scaleY(0);

    transition: 0.3s;
}


.event-card:hover {

    transform: translateX(5px);

    border-color: #ccc;

    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}


.event-card:hover::before {

    transform: scaleY(1);
}


/* Date */

.event-date {

    width: 65px;

    min-width: 65px;

    height: 65px;

    background: #111;

    color: white;

    border-radius: 7px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.event-date span {

    color: var(--red);

    font-size: 25px;

    font-weight: 900;

    line-height: 1;
}


.event-date small {

    color: #aaa;

    font-size: 7px;

    letter-spacing: 1px;

    margin-top: 4px;
}


/* Content */

.event-content {

    flex: 1;
}


.event-tag {

    color: var(--red);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.event-content h3 {

    font-size: 17px;
    color: #fffbfb;
    margin: 4px 0 5px;
}


.event-content p {

    color: #777;

    font-size: 12px;

    line-height: 1.6;

    margin: 0;
}


/* Button */

.event-button {

    background: var(--red);

    color: white;

    padding: 11px 14px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 900;

    white-space: nowrap;

    transition: 0.3s;
}


.event-button:hover {

    background: #111;
}


/* =========================
   EVENTS MOBILE
========================= */

@media (max-width: 900px) {

    .events {

        grid-template-columns: 1fr;

        padding: 70px 20px;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .event-card {

        align-items: flex-start;

        flex-wrap: wrap;

        padding: 16px;
    }

    .event-content {

        width: calc(100% - 85px);
    }

    .event-button {

        width: 100%;

        text-align: center;

        margin-top: 5px;
    }

}

/* =========================
   GALLERY
========================= */

.gallery-section {
    width: 100%;
}

.gallery-section .section-heading {
    margin-bottom: 25px;
}

.gallery-section .section-description {
    margin: 10px 0 0;
    color: #777;
}


/* Gallery Grid */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 210px;

    gap: 12px;

    width: 100%;
}


/* Gallery Item */

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

    background: #111;

    border: 2px solid transparent;

    cursor: pointer;

    transition: 0.3s;
}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}


/* Overlay */

.gallery-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px 15px 15px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.85)
    );

    color: white;

    transform: translateY(10px);

    opacity: 0;

    transition: 0.3s;
}


.gallery-overlay span {

    color: white;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* Hover */

.gallery-item:hover {

    border-color: var(--red);

    transform: translateY(-3px);
}

.gallery-item:hover img {

    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

    transform: translateY(0);
}


/* First image large */

.gallery-item:first-child {

    grid-column: span 2;

    grid-row: span 2;
}


/* =========================
   GALLERY TABLET
========================= */

@media (max-width: 900px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 190px;

    }

    .gallery-item:first-child {

        grid-column: span 2;

        grid-row: span 1;

    }

}


/* =========================
   GALLERY MOBILE
========================= */

@media (max-width: 600px) {

    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 150px;

        gap: 8px;

    }

    .gallery-item:first-child {

        grid-column: span 2;

    }

    .gallery-overlay {

        opacity: 1;

        transform: translateY(0);

        padding: 25px 10px 8px;

    }

    .gallery-overlay span {

        font-size: 9px;

    }

}

/* =========================
   ADMISSION ENQUIRY
========================= */

.enquiry {

    position: relative;

    background: var(--red);

    color: white;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 70px;

    align-items: center;

    overflow: hidden;
}


/* Background decoration */

.enquiry::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border: 80px solid rgba(0,0,0,0.08);

    border-radius: 50%;

    right: -250px;

    top: -250px;
}


/* Content */

.enquiry-content {

    position: relative;

    z-index: 2;
}


.enquiry-content .section-label {

    color: white;

    opacity: 0.8;
}


.enquiry-content h2 {

    font-size: 48px;

    line-height: 1.05;

    font-weight: 900;

    margin: 12px 0 20px;
}


.enquiry-content h2 span {

    display: block;

    color: #111;
}


.enquiry-content > p {

    max-width: 650px;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(255,255,255,0.9);
}


/* Steps */

.enquiry-features {

    display: flex;

    gap: 30px;

    margin: 30px 0;
}


.enquiry-features div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.enquiry-features strong {

    font-size: 26px;

    color: #111;
}


.enquiry-features span {

    font-size: 16px;

    font-weight: 700;
}


/* Button */

.enquiry-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    background: #111;

    color: white;

    padding: 16px 22px;

    border-radius: 5px;

    font-size: 16px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.3s;
}


.enquiry-button:hover {

    background: white;

    color: #111;

    transform: translateY(-3px);
}


/* Right box */

.enquiry-side {

    position: relative;

    z-index: 2;
}


.enquiry-box {

    background: #111;

    padding: 40px 30px;

    border-radius: 10px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}


.enquiry-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--red);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;
}


.enquiry-box h3 {

    font-size: 24px;

    margin-bottom: 12px;
}


.enquiry-box p {

    color: #aaa;

    font-size: 13px;

    line-height: 1.7;
}


.enquiry-line {

    height: 1px;

    background: #333;

    margin: 25px 0;
}


.enquiry-box > span {

    color: var(--red);

    font-size: 20px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================
   ENQUIRY TABLET
========================= */

@media (max-width: 900px) {

    .enquiry {

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 70px 30px;
    }

}


/* =========================
   ENQUIRY MOBILE
========================= */

@media (max-width: 600px) {

    .enquiry {

        padding: 60px 20px;
    }

    .enquiry-content h2 {

        font-size: 32px;
    }

    .enquiry-features {

        flex-direction: column;

        gap: 15px;
    }

    .enquiry-button {

        width: 100%;

        justify-content: space-between;
    }

    .enquiry-box {

        padding: 30px 20px;
    }

}


/* =========================
   CONTACT
========================= */

.contact {

    background: #f5f5f5;

    color: #111;

    padding: 90px 7%;
}


.contact-heading {

    max-width: 650px;

    margin-bottom: 45px;
}


.contact-heading h2 {

    font-size: 45px;

    line-height: 1.05;

    font-weight: 900;

    margin: 10px 0 15px;
}


.contact-heading h2 span {

    color: var(--red);

    display: block;
}


.contact-heading > p {

    color: #666;

    line-height: 1.7;

    font-size: 14px;
}


/* Contact Cards */

.contact-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.contact-card {

    display: flex;

    align-items: center;

    gap: 15px;

    background: white;

    border: 1px solid #ddd;

    border-radius: 9px;

    padding: 25px;

    transition: 0.3s;
}


.contact-card:hover {

    transform: translateY(-5px);

    border-color: var(--red);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


.contact-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    border-radius: 8px;

    background: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;
}


.contact-card span {

    color: var(--red);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.contact-card h3 {

    font-size: 15px;

    margin: 4px 0;
}


.contact-card p {

    color: #777;

    font-size: 11px;

    margin: 0;
}


/* Buttons */

.contact-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;
}


.contact-button {

    padding: 14px 20px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.3s;
}


.contact-button.dark {

    background: #111;

    color: white;
}


.contact-button.whatsapp {

    background: #25D366;

    color: white;
}


.contact-button.red {

    background: var(--red);

    color: white;
}


.contact-button:hover {

    transform: translateY(-3px);

    opacity: 0.9;
}


/* =========================
   FOOTER
========================= */

.footer {

    background: #080808;

    color: white;

    padding: 60px 7% 20px;
}


.footer-main {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 45px;

    border-bottom: 1px solid #292929;
}


/* Brand */

.footer-brand img {

    width: 65px;

    height: 65px;

    object-fit: contain;

    margin-bottom: 12px;
}


.footer-brand h3 {

    font-size: 15px;

    margin-bottom: 10px;
}


.footer-brand p {

    color: #888;

    font-size: 12px;

    line-height: 1.7;

    max-width: 320px;
}


/* Footer Links */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-links h4 {

    color: var(--red);

    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.footer-links a {

    color: #999;

    font-size: 12px;

    transition: 0.3s;
}


.footer-links a:hover {

    color: white;

    padding-left: 4px;
}


/* Footer Bottom */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;
}


.footer-bottom p {

    color: #666;

    font-size: 10px;

    margin: 0;
}


/* =========================
   CONTACT + FOOTER MOBILE
========================= */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr 1fr;
    }

    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

}


@media (max-width: 600px) {

    .contact {

        padding: 65px 20px;
    }

    .contact-heading h2 {

        font-size: 32px;
    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .contact-buttons {

        flex-direction: column;

    }

    .contact-button {

        width: 100%;

        text-align: center;
    }

    .footer {

        padding: 50px 20px 20px;
    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}

/* =========================
   SOCIAL MEDIA
========================= */

.social-media {
    margin-top: 40px;
    text-align: center;
}

.social-media > p {
    color: #777;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    min-width: 110px;
    padding: 12px 18px;

    background: #111;
    color: white;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;

    transition: 0.3s;
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}


/* Mobile */

@media (max-width: 600px) {

    .social-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-links a {
        width: 100%;
    }

}






/* =========================
   FINAL MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        height: auto;
        min-height: 70px;
        padding: 8px 15px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo-area {
        min-width: 0;
        flex: 1;
        gap: 8px;
    }

    .logo-area img {
        width: 48px;
        height: 48px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .logo-text small {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .navbar nav {
        width: 100%;
        order: 3;
        flex: none;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 16px;
        padding: 8px 0;
        scrollbar-width: none;
    }

    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    .navbar nav a {
        font-size: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .whatsapp-button {
        padding: 9px 12px;
        font-size: 10px;
    }


    /* HERO */
    .hero {
        min-height: 620px;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 13px 18px;
    }


    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 30px;
    }

    .about-image {
        width: 100%;
        height: 360px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }


    /* PROGRAMS */
    .programs {
        padding: 60px 20px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }


    /* TIMETABLE */
    .timetable {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }


    /* ACHIEVEMENTS */
    .achievements {
        padding: 60px 20px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .achievement-highlight {
        flex-direction: column;
        text-align: center;
    }

    .highlight-button {
        width: 100%;
        text-align: center;
    }


    /* EVENTS */
    .events {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 35px;
    }

    .event-card {
        width: 100%;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .event-content {
        width: calc(100% - 85px);
    }

    .event-button {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }


    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 8px;
    }


    /* ENQUIRY */
    .enquiry {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 35px;
    }

    .enquiry-content h2 {
        font-size: 32px;
    }

    .enquiry-features {
        flex-direction: column;
        gap: 15px;
    }

    .enquiry-button {
        width: 100%;
        justify-content: space-between;
    }


    /* CONTACT */
    .contact {
        padding: 60px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        text-align: center;
    }


    /* FOOTER */
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }


    /* SOCIAL */
    .social-links {
        grid-template-columns: 1fr;
    }

    .social-links a {
        width: 100%;
    }
}


/* VERY SMALL PHONES */
@media (max-width: 400px) {

    .navbar {
        padding: 8px 12px;
    }

    .logo-text h2 {
        font-size: 16px;
    }

    .whatsapp-button {
        padding: 8px 10px;
        font-size: 9px;
    }

    .hero-content {
        padding: 45px 16px;
    }

    .about,
    .programs,
    .timetable,
    .achievements,
    .events,
    .enquiry,
    .contact {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gallery-grid {
        grid-auto-rows: 130px;
    }
}