/* ============================================================
   CSS STRUCTURE INDEX
   ============================================================

   1. ROOT VARIABLES
   2. RESET
   3. TYPOGRAPHY
   4. LAYOUT (CONTAINER / SECTIONS / GRID)
   5. BUTTONS
   6. HEADER / NAVIGATION
   7. HERO SECTION
   8. CONTENT SECTIONS
   9. PROGRAM BLOCKS
   10. TESTIMONIALS
   11. FORMS / MODALS
   12. COMPONENTS
       - Video
       - Chat Buttons (WhatsApp / Messenger)
       - Back To Top
   13. FOOTER
   14. UTILITIES
   15. RESPONSIVE / MOBILE
   16. MODAL INQUIRY
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */

:root {
    --color-white: #ffffff;
    --color-black: #040202;
    --color-grey: #3b3331;
    --color-light: #f6f4f2;

    --color-primary: #ff6400;
    --color-primary-dark: #ad452e;

    --color-olive:#687525;
    --color-brown:#502511;
    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.75rem;
    --fs-xxl: 2.6rem;

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;

    --radius: 8px;
    --max-width: 1600px;
}

/* ============================================================
   2. RESET
   ============================================================ */

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

html { scroll-behavior: smooth;  }

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

body {
    font-family: var(--font-main);
    color: #1a1a1a;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
    margin-bottom: 9px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
}
.accent-font {
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.5px;
}
a{text-decoration: none !important;}
a:hover{text-decoration: none !important;}

ul{
    margin-bottom:9px;
}
ul, ul li{
    margin-left:10px;
}
/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: 65px 0;
}

.section-light {
    background: var(--color-light);
}

.section-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.nopadding{
    padding:0px !important;
    margin: 0px !important;
    
}

.white{color:#FFF !important;}

/* ============================================================
   BREADCRUMB SECTION (FULL WIDTH CLEAN)
============================================================ */

.breadcrumb-section {
    background: #fff;   /* FULL WIDTH WHITE */
    padding: 12px 0;
}

/* Remove container background hacks */
.breadcrumb-section .container {
    background: transparent;
}

/* ============================================================
   BREADCRUMB
============================================================ */

.breadcrumb {
    font-family: var(--font-main);
    opacity: 0.9;
}

/* Center pill */
.breadcrumb ol {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    list-style: none;
    padding: 6px 16px;
    margin: 0 auto;

    background: rgba(0,0,0,0.04);
    border-radius: 30px;
}

/* Items */
.breadcrumb li {
    display: flex;
    align-items: center;

    font-size: 0.85rem;
    color: rgba(0,0,0,0.6);
}

/* Separator */
.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    color: rgba(0,0,0,0.3);
}

/* Links */
.breadcrumb a {
    color: var(--olive-green, #6b7d2d);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--ember-orange);
}

/* Current */
.breadcrumb .current {
    font-weight: 600;
    color: rgba(0,0,0,0.85);
}

/* GRID */

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-lg); }

/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    background: #BC3400 !important;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


.btn-third {
    background: var(--color-primary);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.btn-third:hover {
    background: #BC3400 !important;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
/* ============================================================
   6. HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    background: var(--color-black);
    z-index: 9999;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   7. HERO
   ============================================================ */

.hero-section {
    background: linear-gradient(180deg, #f5f9f8 0%, #ffffff 100%);
    padding-top: 120px; /* offset for fixed header */
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-cta {
    margin-top: var(--space-md);
}

/* ============================================================
   8. CONTENT SECTIONS
   ============================================================ */

.section-content {
    max-width: 700px;
}

.section-cta {
    margin-top: var(--space-md);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: var(--space-xs);
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ============================================================
   9. PROGRAM BLOCKS
   ============================================================ */

.program-block {
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    border: 1px solid #e6e6e6;
    border-radius: var(--radius);
}

.featured-program {
    border: 2px solid var(--color-primary);
    background: #fdf4ef;
}

/* ============================================================
   10. TESTIMONIALS
   ============================================================ */

.testimonial-block {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--color-primary);
}

/* ============================================================
   11. FORMS / MODAL
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #0e0e0e;
    color: #fff;
    max-width: 480px;
    padding: var(--space-lg);
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: var(--radius);
}

/* ============================================================
   12. COMPONENTS
   ============================================================ */

/*Back to top*/
#backToTop {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: var(--color-grey);
    color: #fff !important;

    font-size: 1.4rem;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);

    transition: all 0.4s ease;
    z-index: 1000;

    box-shadow:
        0 0 12px rgba(239,108,60,0.45),
        0 0 28px rgba(173,69,46,0.25);
}

/* visible state */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* hover */
#backToTop:hover {
    background: var(--color-black);
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {
    #backToTop {
        width: 44px;
        height: 44px;
        bottom: 25px;
        right: 20px;
        font-size: 1.2rem;
    }
}
.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 20px; /* optional, looks nice */
}

.video-wrap iframe {
    position: absolute;
    top: 0;          /* 🔥 missing piece */
    left: 0;         /* 🔥 missing piece */
    width: 100%;
    height: 100%;
    border: 0;
}

.chat-buttons {
    position: fixed;
    bottom: 100px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-btn img {
    width: 28px;
    height: 28px;
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

/* WhatsApp */
.chat-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

/* Messenger */
.chat-btn.messenger {
    background: #0084FF;
    color: #fff;
}

/* ============================================================
   13. FOOTER
   ============================================================ */

 
/* ============================================================
   FOOTER WITH MOVING TEXTURE
============================================================ */

.footer {
    position: relative;

    padding: 50px 0 10px;
    margin: 0 !important;

    background: linear-gradient(
    120deg,
    #2b3824 0%,
    #3e5233 30%,
    #5a7a4a 50%,
    #3e5233 70%,
    #2b3824 100%
);

    background-size: 300% 300%;
    animation: footerFlow 28s ease infinite; /* slower than header */
}

/* ANIMATION */

@keyframes footerFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-lg);
    max-width: 1600px;
}

.footer h3 , .footer h4 {
    color: var(--color-primary);
    font-size: 1.2em;
    margin-bottom: 8px;
}
.footer h4,
.footer h3 {
    color: #d97a2b; /* muted orange */
    color: #c8a46b;
    color: #a6b97a;
}

.footer h4 {
    letter-spacing: 0.5px;
    font-weight: 600;
}


.footer p{
    color: #fff;
    font-size: 0.8em;
}

.footer ul, .footer ul li{
    list-style: none;
    margin-left:0px;
}


.footer .copyright {
    font-size: 0.8em;
    opacity: 0.8;
}

.footer a {
    color: rgba(255,255,255,0.85);
    font-size: 0.8em;
}

.footer a:hover {
    color: #d97a2b; /* muted orange */
}
.footer a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* underline (hidden initially) */
.footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 0;
    height: 2px;

    background: #d97a2b;

    transition: width 0.25s ease;
}

/* hover */
.footer a:hover {
    color: #d97a2b;
}

.footer a:hover::after {
    width: 100%;
}
/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    background-color: #162213;
}
 
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0 !important;
}

/* Optional: links inside footer bottom */

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* ============================================================
   14. UTILITIES
   ============================================================ */

.textcenter { text-align: center; }
.bold { font-weight: bold; }
.white { color: #fff; }

/* ============================================================
   15. MOBILE
   ============================================================ */

@media (max-width: 768px) {

    h1 { font-size: 30px; }
    h2 { font-size: 24px; }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--space-lg) 0;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .chat-buttons {
        bottom: 25px;
        left: 18px;
        right: auto;
        gap: 8px;
    }

    .chat-btn {
        width: 46px;
        height: 46px;
    }

    .chat-btn img {
        width: 24px;
        height: 24px;
    }
}

/* ============================================================
   16. MODAL OVERLAY
============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);

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

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 99999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   MODAL BOX (NBAM STYLE)
============================================================ */

.modal-box {
    position: relative;

    background: #fff;
    border: 3px solid #6f7f2f;

    width: 90%;
    max-width: 520px;

    padding: 32px 28px;

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.3);

    transform: translateY(30px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}


/* ============================================================
   CLOSE BUTTON
============================================================ */

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;

    background: none;
    border: none;

    font-size: 24px;
    cursor: pointer;

    color: #5f6d2b;
}


/* ============================================================
   HEADINGS
============================================================ */

.modal-box h2 {
    font-family: var(--font-accent);
    font-size: 2.1em;
    text-align: center;

    color: #5f6d2b;
    margin-bottom: 20px;
}


/* ============================================================
   FORM GROUP
============================================================ */

.modal-box .form-group {
    margin-bottom: 14px;
    position: relative;
}


/* ============================================================
   INPUT / TEXTAREA / SELECT (UNIFIED STYLE)
============================================================ */

.modal-box input,
.modal-box textarea,
.modal-box select {
    width: 100%;

    padding: 14px 16px;

    border: 2px solid #6f7f2f;
    border-radius: 12px;

    background: #e5e1d6;
    color: #333;

    font-family: var(--font-main);
    font-size: 0.95rem;

    transition: all 0.2s ease;
}

.modal-box textarea {
    resize: vertical;
}

.modal-box select {
    padding-right: 40px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* ============================================================
   FOCUS STATE
============================================================ */

.modal-box input:focus,
.modal-box textarea:focus,
.modal-box select:focus {
    outline: none;

    border-color: #4f5e1f;
    background: #fff;

    box-shadow: 0 0 0 2px rgba(111,127,47,0.2);
}


/* ============================================================
   SELECT ARROW (CLEAN VERSION ONLY ON SELECT)
============================================================ */

.modal-box .select-wrap {
    position: relative;
}

.modal-box .select-wrap::after {
    content: "▾";

    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 14px;
    color: #5f6d2b;

    pointer-events: none;
}


/* ============================================================
   BUTTON
============================================================ */

.modal-box .btn-primary {
    width: 100%;
    margin-top: 10px;

    padding: 14px;

    background: #6f7f2f;
    color: #fff;

    border-radius: 10px;

    font-family: var(--font-heading);
    font-size: 1rem;

    transition: all 0.25s ease;
}

.modal-box .btn-primary:hover {
    background-color: #414a13;
    color: #fff;
}


/* ============================================================
   SUCCESS MESSAGE
============================================================ */

.form-success {
    display: none;
    margin-top: 16px;

    background: #eef2e4;
    border: 1px solid #cfd9b7;

    padding: 14px;
    border-radius: 10px;

    font-size: 0.9rem;
    text-align: center;
    color: #265521 !important;
}

.form-success.active {
    display: block;
}


/* ============================================================
   CONTACT SECTION
============================================================ */

.contact {
    margin-top: 14px;
}

.contact-line {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-line i {
    margin-right: 6px;
    color: #6f7f2f;
}

.contact-line a {
    color: #333;
    text-decoration: none;
}

.contact-line a:hover {
    text-decoration: underline;
}
