/* ============================================
   GLOBAL RESET & VARIABLES
=============================================== */
:root {
    --color-text: #000;
    --color-bg: #fff;

    /* Gold accent gradient */
    --color-gold: #d4a44a;
    --gradient-gold: linear-gradient(90deg, #df9733, #150f03);

    --font-primary: "Lato", sans-serif;
}

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

html,
body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* ============================================
   HEADINGS
=============================================== */
h1,
h2 {
    font-weight: 900;
    color: #000; /* fallback default */
    background: none;
}


h1 {
    font-size: 65px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 35px;
    font-weight: 700;
}

/* ============================================
   BUTTONS
=============================================== */
.elementor-button,
.btn-gold {
    display: inline-block;
    padding: 15px 22px;
    background: var(--gradient-gold);
    color: #fff;
    border: 2px solid #c9963f;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
}

.elementor-button:hover,
.btn-gold:hover {
    background: transparent;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: #000;
}

/* ============================================
   GENERAL LAYOUT
=============================================== */
section {
    padding: 6% 6%;
}

.e-con-inner {
    max-width: 1200px;
    margin: auto;
}

.elementor-section {
    display: flex;
    justify-content: center;
}



/* Inner container - adds padding from screen edge */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;           /* <- stops logo touching edge */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* LOGO + TAGLINE */
.logo a {
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.tagline {
    margin-top: 2px;
    font-size: 14px;
    color: #fff;
}

/* DESKTOP NAV */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Style last menu item as Contact button */
.main-nav li:last-child a {
    background: #f19e38;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}

/* HAMBURGER ICON (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #fff;
}

/* SCROLL STATES */
.site-header.scrolled {
    background: rgba(101, 96, 41, 0.65); /* goldy tint once you scroll */
}

.site-header.shrink {
    padding: 10px 0;
}


/* Hidden header (fades + slides away) */
.site-header.hide-header {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* ============================================
   MOBILE HEADER / MENU
=============================================== */
@media (max-width: 768px) {

    .tagline {
        display: none; /* saves height on small screens */
    }

    .header-inner {
        padding: 0 12px;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
    }

    /* Turn nav into off-canvas drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 70px 20px 20px;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        z-index: 9999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .main-nav a {
        font-size: 18px;
        padding: 10px 0;
    }

    /* Contact button still looks like a button in the drawer */
    .main-nav li:last-child a {
        background: #f19e38;
        color: #000;
        padding: 10px 16px;
        text-align: center;
        display: inline-block;
    }
}


/* ============================================
   HERO CAROUSEL
=============================================== */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 0;
}

.hero-carousel .swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 500;
}


     /* ----------------------------------------
       SKILLS CARDS FIX
    ---------------------------------------- */
    .elementor-element-58683cc {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .elementor-element-58683cc > div {
        width: 100% !important;
        padding: 18px !important;
    }

    .elementor-element-58683cc img {
        width: 100% !important;
        height: auto !important;
        margin-top: 10px !important;
    }


.skills-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* ============================================
   SKILLS CARDS – CLEAN FIXED VERSION
=============================================== */

.skills-section {
    position: relative;
    margin-bottom: -200px; /* overlap testimonials */
    z-index: 5;
}

.skills-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.skill-card {
    width: 23%;
    background: linear-gradient(to bottom, #000000, #636029);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 22px;
    padding-bottom: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Text container */
.skill-text {
    color: #fff;
    text-align: center;
}

.skill-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #df9733, #150f03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skill-card p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #fff;
    text-align: center;
}

/* Full-width image */
.skill-card img {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: 0;
    border-radius: 0;
}

/* Full-width Learn More button */
.learn-more-btn {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
    background: #f19d3a;
    color: #000;
    padding: 14px 0;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0 !important;
}

.learn-more-btn:hover {
    opacity: 0.85;
}

/* Tablet */
@media (max-width: 1024px) {
    .skill-card {
        width: 48%;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .skills-section {
        margin-bottom: -200px; /* softer overlap on mobile */
    }

    .skill-card {
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
    }

    .skill-card img,
    .learn-more-btn {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
    }
}

/* ============================================
   SKILLS SECTION – TITLE + SUBTEXT CENTRED
=============================================== */

.skills-heading {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.skills-heading h2 {
    margin-bottom: 10px;
}

.skills-subtext {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.skills-subtext p {
    font-size: 18px;
    line-height: 1.6;
}


/* ============================================
   TESTIMONIALS – SOLID BACKGROUND + IMAGE TEXTURE
=============================================== */

.testimonials-bg {
    position: relative;
    padding: 8% 6%;
    background: #ede7d9 !important; /* base color */
    overflow: hidden;
}

/* Replace grain with your deco-background.webp */
.testimonials-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background: 
        url('/assets/images/deco-background.webp')
        center/cover
        no-repeat;

    opacity: 0.45; /* Adjust strength of texture */
    pointer-events: none;
    z-index: 1;
}

/* Ensure all content sits above image layer */
.testimonials-bg .e-con-inner {
    position: relative;
    z-index: 2;
}

/* Gradient heading */
.testimonials-bg h2 {
    background: linear-gradient(90deg, #f19e36, #fbebd2) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

/* Testimonial paragraph text */
.testimonial-swiper p {
    color: #3a3a3a !important;
}

/* ============================================
   TESTIMONIALS – CENTRED HEADING + TEXT
=============================================== */

.testimonials-bg .elementor-element-52759f7 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-bg h2 {
    text-align: centre !important;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.testimonial-swiper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-swiper p {
    text-align: centre !important;
    font-size: 20px;
    line-height: 1.6;
}

/* ============================================
   MOBILE FIX – PUSH TESTIMONIAL TITLE DOWN
=============================================== */
@media (max-width: 767px) {

    .testimonials-bg .elementor-element-52759f7 {
        margin-top: 160px !important;
    }

    .testimonials-bg {
        padding-top: 220px !important;
    }
}



/* ================================
   ACTIVITIES – FIXED & WORKING
================================ */

.activities-section {
    position: relative;
    padding: 10% 6%;
}

/* Top-left decorative image */
.activities-deco {
    position: absolute;
    top: -80px;
    left: 200;
    width: 350px;
    z-index: 10;
}

.activities-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Left text column */
.activities-text {
    width: 32%;
}

.activities-text h2,
.activities-text p {
    text-align: left;
}

/* Card container */
.activities-card {
    width: 28%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 540px;      /* IMPORTANT – ensures space for text */
}

/* Top image */
.activities-card .card-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Texture background */
.activities-card .card-bottom {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    height: calc(80% - 180px);
    object-fit: cover;
    z-index: 1;
}

/* Text on top of the texture */
.card-text {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.card-text h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}

.card-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

/* ================================
   ACTIVITIES SECTION BUTTONS
================================ */

.activities-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.activities-buttons .elementor-button.act-btn-outline {
    background: transparent;
    border: 2px solid #b78a2c; /* darker gold outline */
    color: #3a3a3a;           /* dark text */
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.25s ease;
}

.activities-buttons .elementor-button.act-btn-outline:hover {
    background: #b78a2c;  /* fills with darker gold */
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .activities-buttons {
        justify-content: centre;
        flex-direction: column;
        gap: 15px;
    }

    .activities-buttons .elementor-button.act-btn-outline {
        text-align: centre;
        width: 100%;
    }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 767px) {

    .activities-row {
        flex-direction: column;
    }

    .activities-text,
    .activities-card {
        width: 100%;
    }

    .activities-card {
        min-height: 500px;
    }

    .activities-deco {
        width: 90px;
        top: -40px;
    }
}

/* ============================================
   CORE PRINCIPLES – CLEAN + MATCHES OLD SITE
=============================================== */

.act-core-principles {
    background: linear-gradient(to right, #000000, #656029);
    padding: 4% 6%; /* removed bottom padding */
    position: relative;
    overflow: visible; /* lets image sit naturally */
}


/* Two-column wrapper */
.core-wrapper {
    display: flex;
    align-items: stretch;     /* RIGHT COLUMN defines the height */
    justify-content: space-between;
    gap: 50px;
}

.core-left {
    flex: 1;
    display: flex;
    align-items: flex-end;     /* pushes image to the bottom */
}


/* LEFT COLUMN – controls the image in Core Principles */
.core-left img {
    width: 100%;
    max-width: 550px;
    height: auto;
}


/* RIGHT COLUMN */
.core-right {
    flex: 1;
    color: #fff;
}

/* Titles */
.core-right .core-subtitle {
    font-size: 40px;
    font-weight: 900;
    color: #f19e38 !important; /* solid orange */
    margin-bottom: 10px;
    background: none !important;
    -webkit-text-fill-color: #f19e38 !important;
}

.core-right .core-title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 35px;
}

/* List */
.core-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.core-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.core-item h4 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.core-item p {
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {

    .core-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .core-left img {
        max-width: 80%;
        margin: 0 auto -40px;
    }

    .core-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ================================
   MOBILE
=================================== */
@media (max-width: 900px) {

    .act-core-principles {
        flex-direction: column;
        text-align: centre;
        padding: 60px 5%;
    }

    .core-left-image {
        width: 70%;
        margin: 0 auto 30px;
    }

    .core-content {
        width: 100%;
    }

    .core-item {
        flex-direction: column;
        align-items: centre;
        text-align: centre;
    }

    .core-item img {
        margin-bottom: 10px;
    }
}

/* FORCE ACT APPROACH IMAGE TO SIT ON BOTTOM */
.core-left {
    flex: 1;
    position: relative;
}

.core-left img {
    width: 100%;
    max-width: 550px;
    height: auto;

    position: relative;
    display: block;

    /* THIS is the anchor logic you wanted */
    margin-bottom: -69px !important; /* adjust this number */

    z-index: 5;
}

/* ============================================
   MOBILE FIX – STOP IMAGE OVERLAPPING TITLES
=============================================== */
@media (max-width: 768px) {

    /* Remove desktop negative offset */
    .core-left img {
        margin-bottom: 0 !important;
        max-width: 85% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    /* Add spacing under the image so it sits neatly */
    .core-left {
        margin-bottom: 20px !important;
    }
}

/* ============================================
   ABOUT PAGE HERO
=============================================== */
.about-hero {
    min-height: 70vh;
    padding: 6%;
    padding-top: 120px;
    display: flex;
    align-items: centre;
    position: relative;
    background: url('/assets/images/hero4.jpg') centre/cover no-repeat;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.about-hero .e-con-inner {
    z-index: 2;
}


/* ============================================
   FAQ HERO
=============================================== */
.faq-hero {
    padding: 120px 6%;
    text-align: centre;
    background: url('/assets/images/hero3.jpg') centre/cover no-repeat;
    position: relative;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.faq-hero .e-con-inner {
    z-index: 2;
    position: relative;
}

/* ============================================
   FAQ ACCORDION
=============================================== */
.faq-accordion details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
}

.faq-accordion summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    background: #f8f8f8;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #ddd;
}

/* ============================================
   CONTACT PAGE
=============================================== */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-left,
.contact-right {
    width: 48%;
}


/* ============================================
   RESPONSIVE
=============================================== */
@media (max-width: 1024px) {
    .elementor-element-58683cc > div,
    .elementor-element-7c4961b > div {
        width: 100%;
    }
}

@media (max-width: 767px) {
    section {
        padding: 12% 8%;
    }

    .core-wrapper {
        flex-direction: column;
        text-align: centre;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .testimonial-swiper {
        width: 100%;
    }
}
/* ============================================
   PAGE HERO IMAGES (REINSTATED)
=============================================== */

/* About Page Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    padding-top: 140px; /* prevents text under header */
    padding-left: 6%;
    padding-right: 6%;
    display: flex;
    align-items: center;
    background: url('/assets/images/hero4.jpg') center/cover no-repeat;
    color: #fff;
    isolation: isolate;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.about-hero .e-con-inner {
    position: relative;
    z-index: 2;
}

/* FAQ Page Hero */
.faq-hero {
    position: relative;
    padding: 160px 6% 100px;
    text-align: center;
    color: #fff;
    background: url('/assets/images/hero3.jpg') center/cover no-repeat;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.faq-hero .e-con-inner {
    position: relative;
    z-index: 2;
}

/* Contact Page Hero */
.contact-hero {
    background: url('/assets/images/hero2.jpg') center/cover no-repeat;
    padding: 160px 6% 100px;
    text-align: center;
    color: #fff;
}



/* ============================================
   INSTRUCTOR TEAM GRID (RESTORED)
=============================================== */

.instructors-section {
    padding: 6% 6%;
}

.instructor-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: nowrap; /* 4 across on desktop */
    margin-top: 40px;
}

.instructor-card {
    width: 23%; /* 4 per row */
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.instructor-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.instructor-card h3 {
    font-weight: 900;
    margin-bottom: 10px;
}

.instructor-card p {
    margin-bottom: 10px;
}

/* Tablet (2 per row) */
@media (max-width: 1024px) {
    .instructor-grid {
        flex-wrap: wrap;
    }

    .instructor-card {
        width: 48%;
    }
}

/* Mobile (1 per row) */
@media (max-width: 767px) {
    .instructor-card {
        width: 100%;
    }
}

/* Ensure section heading stays centred */
.instructors-section h2,
.instructors-section p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* ============================================
   HEADER (CLEAN + FIXED)
=============================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 26px 0;
    background: rgba(101, 96, 41, 0); /* invisible at top */

    transition:
        background 0.35s ease,
        padding 0.35s ease,
        opacity 0.4s ease;
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0 !important;
    }

    .header-inner {
        padding: 0 10px !important;
        gap: 10px !important;
    }
}


/* When user scrolls a little */
.site-header.scrolled {
    background: rgba(101, 96, 41, 0.55); /* 50% goldy tint */
}

/* When header shrinks */
.site-header.shrink {
    padding: 10px 0;
}


/* Fully hidden */
.site-header.hide-header {
    opacity: 0;
    pointer-events: none;
}

/* NAV colorS */
.site-header .logo a,
.site-header .tagline,
.site-header .main-nav a {
    color: #fff;
}

/* === MOBILE HAMBURGER FIX === */
@media (max-width: 768px) {

    /* Show hamburger */
    .nav-toggle {
        display: flex !important;
        z-index: 10001;
    }

    /* Make bars white and visible */
    .nav-toggle span {
        background: #fff !important;
    }


}



/* ============================================
   MOBILE FIXES – HOME PAGE
   Add at the VERY bottom of the CSS
=============================================== */

@media (max-width: 767px) {

    /* ----------------------------------------
       GLOBAL SPACING
    ---------------------------------------- */
    section {
        padding: 14% 6% !important;
    }

    .e-con-inner {
        width: 100% !important;
        padding: 0 !important;
    }

    /* ----------------------------------------
       HERO SECTION FIXES
    ---------------------------------------- */

    .hero-carousel {
        height: 85vh !important;
        padding-top: 0 !important;
    }

    .hero-overlay {
        padding-top: 50px !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .hero-overlay h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-overlay p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-top: 10px !important;
    }



    /* ----------------------------------------
       TESTIMONIALS
    ---------------------------------------- */
    .testimonials-bg {
        padding: 20% 6% !important;
    }

    .testimonial-swiper {
        width: 100% !important;
    }

    .testimonial-swiper p {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    /* ----------------------------------------
       ACTIVITIES SECTION
    ---------------------------------------- */
    .elementor-element-7c4961b {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .elementor-element-78bddda,
    .elementor-element-69b2dcb {
        width: 100% !important;
    }



    /* ----------------------------------------
       FORCE ALL TEXT TO SCALE
    ---------------------------------------- */

    h1 { font-size: 34px !important; }
    h2 { font-size: 32px !important; }
    h3 { font-size: 22px !important; }
    p   { font-size: 16px !important; }

}



/* ============================================
   MOBILE HEADER – CLEAN FINAL VERSION
=============================================== */
@media (max-width: 768px) {

    /* Hamburger always visible */
    .nav-toggle {
        display: flex !important;
        margin-left: auto;
        z-index: 10001;
    }

    .nav-toggle span {
        background: #fff !important;
    }

    /* Keep Contact button visible next to hamburger */
    .cta-btn {
        display: inline-block !important;
        background: #f19e38 !important;
        color: #000 !important;
        padding: 8px 14px;
        border-radius: 4px;
        font-weight: 700;
        margin-left: 10px;
        white-space: nowrap;
        z-index: 10001;
    }

    /* Hide full menu row on mobile */
    .main-nav ul {
        display: none;
        flex-direction: column;
    }

    /* OFF-CANVAS DRAWER */
    .main-nav {
        position: fixed !important;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 80px 20px 20px;
        flex-direction: column;
        transition: right 0.3s ease;
        z-index: 9999;
    }

    /* Drawer slide-in */
    .main-nav.open {
        right: 0 !important;
    }

    /* Drawer menu items */
    .main-nav.open ul {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .main-nav.open ul li {
        display: block;
    }

    .main-nav.open a {
        font-size: 20px;
        color: #fff !important;
        padding: 10px 0;
    }

    /* Remove Contact from inside drawer */
    .main-nav.open .cta-btn {
        display: none !important;
    }
}



/* ============================================
   ALWAYS-VISIBLE CONTACT BUTTON (MOBILE + DESKTOP)
=============================================== */

.mobile-cta-btn {
    background: #f19e38;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    z-index: 10002;
}

/* Make it look normal on desktop */
@media (min-width: 769px) {
    .mobile-cta-btn {
        display: none;
    }
}

/* On mobile it shows */
@media (max-width: 768px) {
    .mobile-cta-btn {
        display: inline-flex !important;
    }
}




/* ============================================
   CONTACT BUTTON FIX — MOBILE + DESKTOP CLEAN
=============================================== */

/* Desktop Contact Button (from menu) */
.cta-btn {
    background: #f19e38;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}

/* Mobile Contact Button (separate) */
.mobile-cta-btn {
    display: none; /* desktop hidden */
    background: #f19e38;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 12px;
    white-space: nowrap;
    text-decoration: none;
}

/* MOBILE BEHAVIOUR */
@media (max-width: 768px) {

    /* Show mobile button */
    .mobile-cta-btn {
        display: inline-flex !important;
        align-items: center;
    }

    /* Hide desktop (nav) button */
    .main-nav .cta-btn {
        display: none !important;
    }

    /* Ensure drawer menu shows only the regular links */
    .main-nav ul li {
        display: block;
    }
}

/* ============================================
   MOBILE HEADER ORDER FIX
   Logo → Contact Button → Hamburger
=============================================== */
@media (max-width: 768px) {

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    .mobile-cta-btn {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
    }

    .nav-toggle {
        order: 3;
        margin-left: 0;
    }
}


/* ============================================
   MOBILE HERO TEXT POSITION FIX
   Ensures H1/p/buttons sit BELOW the header
=============================================== */
@media (max-width: 768px) {

    .hero-overlay {
        margin-top: 110px !important; /* moves text down below the header */
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

    .hero-overlay h1 {
        margin-top: 0 !important;
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-overlay p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-top: 10px !important;
    }

    .hero-carousel {
        height: 88vh !important; /* keeps overall look proportional */
    }
}

/* Remove carousel arrows */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
/* STATIC HERO SECTION */
.hero-static {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-static img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-static::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-static .hero-overlay {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    max-width: 1000px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-static {
        height: 85vh;
    }

    .hero-static .hero-overlay {
        padding-top: 140px;
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
    }
}



/* Keep paragraphs white */
.hero-static .hero-overlay p {
    color: #fff !important;
}



/* Keep hero text left-aligned on mobile */
@media (max-width: 767px) {
    .hero-overlay {
        text-align: left !important;
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

    .hero-overlay h1,
    .hero-overlay p {
        text-align: left !important;
    }
}


/* MOBILE FIX – KEEP HERO BUTTONS VISIBLE */
@media (max-width: 767px) {

    /* Make hero section tall enough for text + buttons */
    .hero-carousel,
    .hero-static {
        height: auto !important;
        min-height: 95vh !important;
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    /* Ensure overlay stays inside the hero area */
    .hero-overlay {
        margin-top: 20px !important;
        padding-bottom: 40px !important;
    }

    
}

/* MOBILE FIX – FORCE HERO BUTTONS SIDE BY SIDE */
@media (max-width: 767px) {

    /* Make hero tall enough */
    .hero-carousel,
    .hero-static {
        min-height: 100vh !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important;
    }

    /* Force wrapper of the two buttons into a row */
    .elementor-element-26ccf65 {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        width: auto !important;
    }

    /* Force the two button containers to behave */
    .elementor-element-26ccf65 > div,
    .elementor-element-26ccf65 a {
        display: inline-flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* Style the actual buttons */
    .elementor-button,
    .btn-outline {
        padding: 10px 18px !important;
        white-space: nowrap !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }
}


/* MOBILE FIX – TRUE SIDE-BY-SIDE HERO BUTTONS */
@media (max-width: 767px) {

    /* Make the wrapper behave as a row */
    .elementor-element-26ccf65 {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        width: auto !important;
    }

    /* Remove Elementor full-width behaviour */
    .elementor-element-26ccf65 > div {
        width: auto !important;
        flex: 0 0 auto !important;
        display: inline-flex !important;
    }

    /* Actual buttons */
    .elementor-element-26ccf65 a.elementor-button {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 10px 18px !important;
        white-space: nowrap !important;
    }
}
/* ============================================
   MOBILE FIX – HERO BUTTONS SIDE BY SIDE
=============================================== */
@media (max-width: 767px) {

    /* Make the buttons sit next to each other */
    .hero-overlay {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Put the two buttons into a horizontal row */
    .hero-overlay .hero-buttons-wrapper {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: 18px;
        width: 100%;
    }

    /* Force buttons to behave */
    .hero-overlay .hero-buttons-wrapper a {
        flex: 0 0 auto;
        width: auto !important;
        padding: 10px 18px !important;
        white-space: nowrap !important;
    }
}
/* ============================================
   MOBILE FIX – SHRINK HERO BUTTONS SO THEY FIT
=============================================== */
@media (max-width: 767px) {

    /* Ensure 2 buttons fit side-by-side */
    .hero-buttons-wrapper a {
        flex: 1 1 auto;              /* allow them to scale */
        font-size: 14px !important;  /* smaller text */
        padding: 8px 12px !important;/* smaller padding */
        min-width: 0 !important;     /* stops overflow */
        text-align: centre;
    }

    /* Add a tiny gap so they breathe */
    .hero-buttons-wrapper {
        gap: 10px !important;
        width: 100% !important;
    }
}


/* ============================================
   MOBILE FIX – ABOUT / COURSES HERO
   (push text down + keep left aligned)
=============================================== */
@media (max-width: 768px) {

    /* Move hero content below header */
    .about-hero .e-con-inner {
        margin-top: 120px !important;
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

    .about-hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .about-hero p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
    }
}


/* ============================================
   MOBILE FIX – ABOUT / COURSES BUTTONS
   (side-by-side like homepage)
=============================================== */
@media (max-width: 768px) {

    /* Turn the two buttons into a row */
    .about-hero .elementor-element-26ccf65 {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
    }

    /* Make both buttons shrink to fit */
    .about-hero .elementor-button,
    .about-hero .btn-outline {
        flex: 1 1 auto !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
        min-width: 0 !important; /* stops overflow */
    }
}



/* HERO TEXT GRADIENT ONLY – CLEAN VERSION */
.hero-overlay h1,
.hero-static h1,
.hero-carousel h1 {
    background: linear-gradient(90deg, #f19e36, #fbebd2) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* TESTIMONIALS – GRADIENT HEADING */
.testimonials-bg h2 {
    background: linear-gradient(90deg, #df9733, #150f03) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
/* SKILL CARDS – FORCE H3 HEADINGS TO WHITE */
.skill-card h3 {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}


/* === FINAL HEADER OVERRIDES (keep at very bottom of CSS) === */

.site-header.hide-header {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* ============================================
   GLOBAL DEFAULT GRADIENT FOR ALL H1 + H2
=============================================== */

h1,
h2 {
    background: linear-gradient(90deg, #df9733, #150f03) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
/* ============================================
   OPTIONAL LIGHT GRADIENT FOR SPECIFIC TITLES
   Usage: <h1 class="light-gradient">Title</h1>
=============================================== */

.light-gradient {
    background: linear-gradient(90deg, #f19e36, #fbebd2) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}


/* ============================================
   ABOUT CTA / READY TO GET STARTED SECTION
=============================================== */

.about-cta {
    text-align: center;
    padding: 6% 6%;
}

.about-cta h2 {
    font-size: 45px;
    font-weight: 900;
    color: #f19e38 !important;   /* solid orange */
    background: none !important;
    -webkit-text-fill-color: #f19e38 !important;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #000;
}

/* BUTTON WRAPPER */
.about-cta a {
    display: inline-block;
    padding: 14px 26px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    margin: 10px;
    transition: 0.25s ease;
}

/* LEFT BUTTON – Solid Orange */
.about-cta .elementor-button:first-of-type {
    background: #f19e38 !important;
    color: #000 !important;
    border: 2px solid #f19e38 !important;
}

.about-cta .elementor-button:first-of-type:hover {
    background: #656029 !important; /* dark green gold */
    border-color: #656029 !important;
    color: #fff !important;
}

/* RIGHT BUTTON – Orange Outline */
.about-cta .btn-outline {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #f19e38 !important;
}

.about-cta .btn-outline:hover {
    background: #656029 !important;
    border-color: #656029 !important;
    color: #fff !important;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .about-cta h2 { font-size: 34px; }
    .about-cta p { font-size: 16px; }
    .about-cta a { width: 100%; }
}

/* ============================================
   FOOTER — A.C.T. CUSTOM
=============================================== */

.act-footer {
    background: #1a1803;
    padding: 60px 6% 40px;
    color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: #f19e38;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: 0.25s ease;
}

.footer-col ul li a:hover {
    color: #f19e38;
}

/* LOGO COLUMN */
.footer-logo {
    flex: 1;
    min-width: 220px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo img {
    width: 140px;
    height: auto;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 15px;
}

.footer-bottom .credit {
    opacity: 0.75;
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-top: 20px;
    }
}

/* ============================================
   ABOUT – VAWG SECTION (CARD + IMAGE STRIP)
=============================================== */

.about-vawg {
    position: relative;
    padding: 6% 6%;
    background: #ffffff;
    overflow: hidden;
}

/* Beige strip behind card + image */
.about-vawg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: #e7dfcf;
    z-index: 0;
}

/* MAIN FLEX WRAPPER */
.vawg-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE */
.vawg-text {
    flex: 1;
    max-width: 52%;
}

.vawg-text h2 {
    margin-bottom: 8px;
}

.vawg-text .subhead {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
}

/* CARD */
.vawg-card {
    background: #656029;
    padding: 40px;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    position: relative;
}

.vawg-card p:last-of-type {
    margin-bottom: 22px;
}

/* BUTTON */
.vawg-btn {
    display: inline-block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid #f19e38;
    background: transparent;
    color: #f19e38;
    transition: 0.25s ease;
}

.vawg-btn:hover {
    background: #f19e38;
    color: #000;
}

/* RIGHT SIDE – IMAGE */
.vawg-image {
    flex: 1;
    display: flex;
}

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

/* ============================================
   RESPONSIVE
=============================================== */
@media (max-width: 1024px) {
    .vawg-wrapper {
        gap: 30px;
    }
}

@media (max-width: 767px) {

    .about-vawg {
        padding: 14% 6%;
    }

    .about-vawg::after {
        height: 60%;
    }

    .vawg-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .vawg-text {
        max-width: 100%;
    }

    .vawg-text .subhead {
        text-align: left;
        font-size: 18px;
    }

    .vawg-card {
        padding: 24px 22px;
        min-height: 460px;
    }

    .vawg-image {
        width: 100%;
        min-height: 260px;
    }
}

/* ============================================
   COURSES PAGE - GLOBAL SECTION LAYOUT
=============================================== */

.courses-hero .hero-overlay {
    padding-top: 200px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}


.courses-hero .hero-overlay p {
    font-size: 20px;
    margin-top: 12px;
}

.courses-hero .hero-buttons-wrapper {
    margin-top: 24px;
}

/* Shared section base */
.courses-section {
    padding: 6% 6%;
    position: relative;
}

/* Two-column row */
.courses-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

.courses-col {
    flex: 1;
}

/* Left text column */
.courses-text h2 {
    margin-bottom: 18px;
}

.courses-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Small orange subhead, like original site */
.grad-2-heading,
.small-heading {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;

    color: #f19e38 !important;
    background: none !important;
    -webkit-text-fill-color: #f19e38 !important;
}

/* Right image column */
.courses-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bullet lists */
.courses-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 18px 0;
}

.courses-bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 17px;
}

.courses-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f19e38;
}

/* Quote cards with deco lines */
.courses-quote-card {
    position: relative;
    margin-top: 24px;
    padding: 22px 24px;
    background: #f7f0dd;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.courses-quote-card p {
    margin-bottom: 0;
    font-size: 17px;
}

.courses-deco-lines {
    position: absolute;
    right: 12px;
    bottom: -18px;
    width: 150px;
}

.courses-deco-lines img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons tweaks */
.courses-section .elementor-button {
    margin-top: 10px;
}

.courses-section .btn-outline.light-outline {
    border-color: #f7f0dd !important;
    color: #f7f0dd !important;
}

.courses-section .btn-outline.light-outline:hover {
    background: #f7f0dd !important;
    color: #000 !important;
}

/* ============================================
   SECTION SPECIFICS
=============================================== */

/* Section 1 - Empowerment Seminars */
.courses-empower {
    background: #ffffff;
}

/* Section 2 - Empower Them Project */
.courses-empower-them {
    background: linear-gradient(to right, #000000, #656029);
    color: #fff;
}

.courses-empower-them .courses-text p,
.courses-empower-them .courses-list p,
.courses-empower-them .courses-bullet-list li {
    color: #fff;
}

/* Quote card sits lighter on dark background */
.courses-empower-them .courses-quote-card {
    background: #f7f0dd;
}


/* Section 3 - College Programmes
   Uses the same textured deco background image */
.courses-college {
    background: #e7dfcf;
    overflow: hidden;
}

.courses-college::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/deco-background.webp') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.courses-college .e-con-inner {
    position: relative;
    z-index: 1;
}

/* ============================================
   COURSES - RESPONSIVE
=============================================== */

@media (max-width: 1024px) {
    .courses-row {
        gap: 30px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .courses-hero .hero-overlay {
        padding-top: 140px;
        text-align: center;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 767px) {

    .courses-section {
        padding: 14% 6%;
    }

    .courses-row {
        flex-direction: column;
    }

    .courses-image {
        order: -1; /* image above text on mobile, if you prefer swap to 0 */
    }

    .courses-deco-lines {
        width: 120px;
        right: 10px;
        bottom: -16px;
    }

    .grad-2-heading,
    .small-heading {
        font-size: 22px;
    }

    .courses-text h2 {
        font-size: 26px;
    }

    .courses-text p {
        font-size: 16px;
    }
}

.courses-quote-card p,
.courses-quote-card p em {
    color: #000 !important;
}


.light-text {
    color: #f7f7f7 !important;
    font-weight: 300;
}

/* FORCE light gradient on specific titles */
.gradient-light {
    background: linear-gradient(90deg, #f19e36, #fbebd2) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* OVERRIDE FOR DARK QUOTE CARD */
.quote-dark {
    background: #656029 !important;
}

.quote-dark p,
.quote-dark p em {
    color: #f7f7f7 !important;
}

/* ============================
   CONTACT SECTION – ICON ROW
============================= */
.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.contact-details .icon {
    font-size: 22px;
    color: #f19e36;
}


/* ============================
   CONTACT FORM – FIELD colorS
============================= */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    background: #656029 !important;
    border: none !important;
    color: #f7f7f7 !important;
    font-size: 17px;
    border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d9d9d9 !important;
}

/* Dropdown arrow fix */
.contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' width='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,12'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}


/* ============================
   CONTACT FORM – SEND BUTTON
============================= */
.contact-form button,
.contact-form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: #f19e36 !important;
    color: #000 !important;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
    opacity: 0.85;
}


/* ============================
   CONTACT FORM – CONSENT ROW
============================= */
.contact-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin: 14px 0;
    color: #000;
}

.contact-form .consent input {
    margin-top: 4px;
}

/* Add proper spacing between fields */
.contact-form input,
.contact-form textarea,
.contact-form select {
    margin-bottom: 18px !important;
}
/* Improve visual separation inside fields */
.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 16px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}


/* FIX CONTACT CONSENT CHECKBOX */
.contact-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
}

/* Reset checkbox so it doesn't inherit input styles */
.contact-form .consent input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 4px 0 0 0 !important; /* small top align tweak */
    box-shadow: none !important;
    border: 1px solid #fff !important;
}
.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f19e38;
}

.form-success {
    background: #d9f9d9;
    border-left: 4px solid #3ca23c;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #2b6e2b;
    font-weight: 600;
}

.form-error {
    background: #ffe4e4;
    border-left: 4px solid #c63a3a;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #7d1c1c;
    font-weight: 600;
}

/* ============================================
   MEMBER DASHBOARD
=============================================== */

.dashboard-container {
    background: #2a2a2a;
    min-height: 100vh;
    padding: 160px 6% 60px;
    color: #f1f1f1;
}

/* inner content spacing */
.dashboard-container > * {
    margin-bottom: 18px;
}

/* Headings override global gradient */
.dashboard-container h1,
.dashboard-container h2 {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

/* Buttons */
.dashboard-container .elementor-button {
    background: #f19e38 !important;
    color: #000 !important;
    border: none !important;
}

.dashboard-container .btn-outline {
    background: transparent !important;
    border: 2px solid #f19e38 !important;
    color: #f19e38 !important;
}

.dashboard-container .btn-outline:hover {
    background: #f19e38 !important;
    color: #000 !important;
}

/* table text fix */
.dashboard-container table,
.dashboard-container td,
.dashboard-container th {
    color: #eee !important;
}




@media (max-width: 768px) {
    .nav-toggle {
        background: #f19e38 !important;
        padding: 8px !important;
        border-radius: 4px !important;
        width: auto !important;
        height: auto !important;
    }

    .nav-toggle span {
        background: #000 !important;
        width: 24px;
        height: 3px;
        margin: 3px 0 !important; /* adds spacing between bars */
        border-radius: 2px;
    }

}
/* -------------------------------------------------
   LOGO HEIGHT - DESKTOP, TABLET, MOBILE
   (Place this NEAR THE BOTTOM of your CSS)
-------------------------------------------------- */

/* Desktop default */
.site-header .logo img {
    height: 135px;
    transition: height 0.35s ease;
}

/* Shrink on scroll - DESKTOP ONLY */
@media (min-width: 769px) {
    .site-header.shrink .logo img {
        height: 45px;
    }
}

/* Tablet tweak (optional, you can remove if you like) */
@media (max-width: 1024px) {
    .site-header .logo img {
        height: 90px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-header .logo img {
        height: 75px !important;
        max-height: 75px !important;
    }
}
@media (max-width: 768px) {
    .member-header {
        padding: 8px 0 !important;
    }

    .page-wrapper {
        padding-top: 55px !important;
    }

    h1 {
        margin-top: 0 !important;
    }
}

.admin-button-outline {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #f19e36;
    border-radius: 6px;
    background: transparent;
    color: #f19e36;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.admin-button-outline:hover {
    background: #f19e36;
    color: #000;
    box-shadow: 0 0 12px rgba(241,158,54,0.7);
    transform: translateY(-2px);
}
/* ============================================
   UPCOMING SESSIONS SECTION
=============================================== */
.upcoming-sessions {
    padding: 10% 6%;
    background: #ffffff;
}

.upcoming-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
}

.upcoming-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    color: #333;
}

.upcoming-grid {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.up-card {
    width: 23%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    color: #fff;
}

/* top image */
.up-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* text */
.up-info {
    padding: 20px;
}

.up-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f19e36;
}

.up-date {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 6px;
}

.up-location {
    font-size: 15px;
    margin-bottom: 18px;
    color: #bbb;
}

/* button override */
.up-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .up-card { width: 48%; }
}

/* Mobile */
@media (max-width: 767px) {
    .upcoming-title { font-size: 32px; }
    .upcoming-sub { font-size: 16px; }

    .up-card {
        width: 100%;
    }
}
/* Reduce gap between Activities and Upcoming Sessions */
.activities-section {
    padding-bottom: 4% !important;
}

/* RESET ALL OLD UPCOMING SESSIONS RULES */
.upcoming-sessions,
.upcoming-grid,
.up-card,
.up-img img,
.up-info,
.up-btn {
    all: unset;
}
.upcoming-sessions,
.upcoming-grid,
.up-card,
.up-img img,
.up-info,
.up-btn {
    box-sizing: border-box;
}

/* ============================================
   UPCOMING SESSIONS – FINAL WORKING VERSION
=============================================== */

.upcoming-sessions {
    padding: 4% 6%;
    background: #ffffff;
}

.upcoming-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.upcoming-sub {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #333;
}

/* GRID – 4 equal cards */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* CARD */
.up-card {
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.up-card:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.up-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* TEXT AREA */
.up-info {
    padding: 20px;
    text-align: center;
}

.up-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.up-date,
.up-location {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

/* BUTTON */
.up-btn {
    margin-top: auto;
    width: 100%;
    display: block;
    text-align: center;
}

/* Tablet – 2 per row */
@media (max-width: 1024px) {
    .upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – 1 per row */
@media (max-width: 600px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   HOME FEATURED SESSIONS
====================================== */
.home-featured-sessions {
    padding: 60px 0 30px;
}

.featured-title-home {
    font-size: 42px;
    font-weight: 900;
    color: #d4a44a;
    text-align: center;
    margin-bottom: 10px;
}

.featured-sub-home {
    text-align: center;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.featured-grid-home {
    display: grid;
    gap: 24px;
}

.featured-grid-home.cols-1 {
    grid-template-columns: 1fr;
}

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

.featured-grid-home.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.featured-grid-home.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .featured-grid-home {
        grid-template-columns: 1fr !important;
    }
}

.feat-card-home {
    background: linear-gradient(145deg, #2e2e2e, #1f1f1f);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #3b3b3b;
    transition: 0.2s ease;
}

.feat-card-home:hover {
    transform: translateY(-4px);
    border-color: #d4a44a;
}

.feat-img-home {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.feat-img-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-info-home {
    padding: 18px;
    text-align: left;
}

.feat-info-home h3 {
    margin-top: 0;
    font-size: 20px;
}

.feat-date-home {
    font-weight: 700;
    color: #d4a44a;
}

.feat-type-home {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.feat-btn-home {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
}



.view-all-sessions-wrap {
    width: 100%;
    text-align: center;
    margin-top: 35px;   /* spacing above */
    margin-bottom: 10px;
    display: flex;
    justify-content: center; /* forces centre alignment */
}

.view-all-sessions-btn {
    padding: 14px 28px !important;
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto; /* belts and braces */
}
/* Member Login button in main nav */
.menu-login-btn {
    padding: 10px 18px;
    background: #d4a44a;
    colour: #000;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.menu-login-btn:hover {
    background: #e1b35e;
    colour: #000;
}
