@font-face {
    font-family: "Riddim-UltraBlack";
    src: url("https://www.cwc.com/fonts/Riddim-UltraBlack.woff") format("woff"),
        url("https://www.cwc.com/fonts/Riddim-UltraBlack.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "Barlow-Regular";
    src: url("https://www.cwc.com/fonts/Barlow-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Riddim";
    src: url("https://www.cwc.com/fonts/Riddim-Bold.woff") format("woff");
    font-weight: 400;
    /* treat as regular */
    font-style: normal;
}


body {
    overflow-x: hidden;
    font-family: 'Barlow-Regular', sans-serif;

    color: #3a3a3a;
    margin-top: -16px !important;

}

/* ================================
   HEADER
================================ */


/* ================================
   HEADER
================================ */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background 0.3s ease;
}




@media (max-width: 768px) {

    /* Default hidden state */
    #headerNav {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 65%;
        background: #FD5F00B2;

        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;

        transition: transform 0.4s ease, opacity 0.3s ease;
        z-index: 999;
    }

    /* When menu is open */
    #headerNav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-header {
        width: 100% !important;
    }
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.liberty-logo {
    width: 150px;
    height: auto;
}

/* ================================
   NAVIGATION
================================ */
.header-container {
    flex: 0 0 auto;
    max-width: 600px;
    border-radius: 35px;
    padding: 6px 8px;
}

.header-row {
    background: #FD5F00B2;
    border-radius: 25px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;


    background: transparent;
    color: white;
    border: none;

    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Barlow-Regular';
}

.nav-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    height: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);

    transition: opacity 0.3s ease;
}

.nav-item:last-of-type {
    border-right: none;
}

.nav-item:hover {
    background: #fff;
    color: #FD5F00;
    border-radius: 20px;
    margin-left: -5px;
}


.nav-item:hover::after {
    opacity: 0;
}

/*  Hide divider of NEXT item */
.nav-item:hover+.nav-item::after {
    opacity: 0;
}

.search-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.search-icon {
    width: 20px;
    height: 20px;
}

/* ================================
   SEARCH BAR
================================ */
.search-bar {
    background: #FD5F00B2;
    border-radius: 25px;
    padding: 8px 15px;
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.search-bar--active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    outline: none;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Barlow-Regular';
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.close-search-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.close-search-btn svg {
    width: 18px;
    height: 18px;
}

/* ================================
   HAMBURGER MENU
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FD5F00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 1px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -7px);
}

@media (max-width: 992px) {
    .header-wrapper {
        padding: 0 30px;
    }

    .nav-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-row {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 0;
    }


    .nav-item {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        font-size: 16px;
    }

    .nav-item:hover {
        background: rgba(253, 95, 0, 0.7);
        border-radius: 8px;
        color: white;
    }

    .search-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        margin-left: 0;
        border-radius: 0;
    }

    .search-btn:hover {
        background: rgba(253, 95, 0, 0.3);
        border-radius: 8px;
    }

    .search-bar {
        margin-top: 15px;
        background: rgba(253, 95, 0, 0.5);
    }

    .liberty-logo {
        width: 120px;
    }


}

@media (max-width: 480px) {
    .liberty-logo {
        width: 100px;
    }
}



/* ================================
   HERO BANNER
================================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('https://lla-cms-prod.directus.app/assets/e7d8eb7d-7d98-496f-8b86-ef7c9a00527a');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 10%;
    margin-top: 5%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 85px;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 20px;
}

.light-text {
    color: #F3EFEA;
    font-weight: 600;
    font-family: 'Riddim-UltraBlack';
}

.orange-text {
    color: #F26C23;
    font-weight: 900;
    font-family: 'Riddim-UltraBlack';
}

.hero-desc {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 660px;
    margin-top: 20px;
    font-family: 'Barlow-Regular';
}


/* ============================================================
   PAGE-LOAD FADE-IN ANIMATION
   ============================================================ */
.fade-block {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.70s ease, transform 0.70s ease;
}

.fade-block--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 992px) {
    .header-wrapper {
        padding: 0 30px;
    }

    .nav-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-container {
        position: absolute;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(253, 95, 0, 0.7) 0% 100%);
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        max-width: none;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .header-container.active {
        right: 0;
        height: 50vh;
    }

    .header-row {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        font-size: 16px;
    }

    .nav-item:hover {
        background: rgba(253, 95, 0, 0.7);
        border-radius: 8px;
        color: white;
    }

    .search-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        margin-left: 0;
        border-radius: 0;
    }

    .search-btn:hover {
        background: rgba(253, 95, 0, 0.3);
        border-radius: 8px;
    }

    .search-bar {
        margin-top: 15px;
        background: rgba(253, 95, 0, 0.5);
    }

    .liberty-logo {
        width: 120px;
    }

    .hero-banner {
        height: auto;
        padding: 120px 30px 80px;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .stories__row,
    .stories__row--reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story__image {
        height: 250px;
    }

    .stories__title {
        font-size: 30px;
    }

    .story__heading {
        font-size: 20px;
    }

    .contact-section {
        flex-direction: column;
        padding: 60px 5% 80px;
    }

    .contact-left,
    .contact-form-container {
        flex: 1 1 100%;

    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0 20px;
    }

    .liberty-logo {
        width: 100px;
    }

    .header-container {
        width: 260px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-form-heading {
        font-size: 24px;
    }
}


/* ============================================================
   1. ABOUT HEADER SECTION
   ============================================================ */
.lc-about {
    background: #ffffff;
    padding: 56px 24px 48px;
    text-align: center;
}

.lc-about__inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lc-about__logo {
    width: 180px;
    flex-shrink: 0;
}

.lc-about__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.lc-about__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #FD5F00;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-family: Riddim-UltraBlack;
}

.lc-about__desc {
    font-size: 0.93rem;
    line-height: 1.75;
    color: #555;
    max-width: 620px;
}

/* ============================================================
   2. HOW-TO / TABBED SECTION
   ============================================================ */
.lc-section {

    padding-bottom: 60px;
}

.lc-section-main {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* â”€â”€ Banner â”€â”€ */
.lc-banner {
    width: 100%;

    overflow: hidden;
}

.lc-banner__img {
    width: 100%;

    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 20px;
}

/* â”€â”€ White card (overlaps banner bottom) â”€â”€ */
.lc-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
    margin: -25% auto 0;
    max-width: 900px;
    /* contained width per screenshot */
    padding: 0 40px 48px;
    width: calc(100% - 48px);
}

/* â”€â”€ Tab navigation â”€â”€ */
.lc-tabs {
    display: flex;
    align-items: flex-end;
    padding-top: 32px;
    gap: 0;
    border: none;
    background: none;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lc-tabs::-webkit-scrollbar {
    display: none;
}

.lc-tab {
    font-family: inherit;
    font-size: 0.975rem;
    font-weight: 500;
    color: #777;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 14px;
    margin-right: 52px;
    position: relative;
    transition: color 0.22s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.lc-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #EF6623;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.lc-tab:hover {
    color: #EF6623;
}

.lc-tab--active {
    color: #FD5F00;
    font-weight: 600;
}

.lc-tab--active::after {
    transform: scaleX(1);
}

/* â”€â”€ Divider â”€â”€ */
.lc-divider {
    border: none;
    border-top: 1.5px solid #E8E8E8;
    margin: 0 0 32px;
}

/* â”€â”€ Tab panels â”€â”€ */
.lc-panel {
    display: none;
    animation: panel-fade 0.35s ease forwards;
}

.lc-panel--active {
    display: block;
}

@keyframes panel-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lc-panel__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* Text column */
.lc-panel__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lc-panel__text p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
}

.lc-highlight {
    color: #FD5F00;
    font-weight: 700;
}

/* Image column */
.lc-panel__image {
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.lc-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
}

/* ============================================================
   3. JUMP PROGRAM SECTION
   ============================================================ */
.lc-jump {
    background: #ffffff;
    padding: 0px 24px 11px;
}

.lc-jump__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lc-jump__heading {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #636363;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: Riddim-UltraBlack;
}

.lc-jump__brand {
    color: #FD5F00;
}

.lc-jump__intro {
    font-size: 0.93rem;
    line-height: 1.80;
    color: #636363;
    margin-bottom: 20px;
    text-align: center;
}

.lc-jump__list {
    list-style: disc;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.lc-jump__list li {
    font-size: 0.91rem;
    line-height: 1.80;
    color: #636363;
}

.lc-jump__closing {
    font-size: 0.93rem;
    line-height: 1.80;
    color: #636363;
    text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* â”€â”€ Large tablet â”€â”€ */
@media (max-width: 1024px) {
    .lc-card {
        padding: 0 28px 40px;
        margin-top: -44px;
    }

    .lc-panel__inner {
        gap: 28px;
    }
}

/* â”€â”€ Tablet portrait â”€â”€ */
@media (max-width: 768px) {
    .lc-about {
        padding: 40px 20px 36px;
    }

    .lc-about__logo {
        width: 150px;
    }

    .lc-about__title {
        font-size: 1.45rem;
    }

    .lc-banner {
        height: 230px;
    }

    .lc-card {
        padding: 0 20px 36px;
        margin-top: -36px;
        width: calc(100% - 32px);
        border-radius: 14px;
    }

    .lc-tab {
        margin-right: 32px;
        font-size: 0.9rem;
    }

    .lc-panel__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lc-panel__image {
        order: -1;
    }



    .lc-jump {
        padding: 48px 20px 56px;
    }
}

/* â”€â”€ Mobile â”€â”€ */
@media (max-width: 480px) {
    .lc-about {
        padding: 32px 16px 28px;
    }

    .lc-about__logo {
        width: 130px;
    }

    .lc-banner {
        height: 185px;
    }

    .lc-banner__img {
        border-radius: 0 0 14px 14px;
    }

    .lc-card {
        padding: 0 14px 28px;
        margin-top: -28px;
        width: calc(100% - 20px);
        border-radius: 12px;
    }

    .lc-tabs {
        padding-top: 20px;
    }

    .lc-tab {
        margin-right: 22px;
        font-size: 0.85rem;
        padding-bottom: 12px;
    }

    .lc-divider {
        margin-bottom: 22px;
    }

    .lc-panel__text p {
        font-size: 0.85rem;
    }

    .lc-panel__inner {
        gap: 18px;
    }

    .lc-jump {
        padding: 0px 16px 0px;
    }

    .lc-jump__list li {
        font-size: 0.875rem;
    }
}

/*contact form*/
/* ================================
   CONTACT SECTION - FIXED
================================ */
.contact-section {
    width: 100%;
    padding: 80px 5% 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-left {
    flex: 1 1 45%;
    /* REMOVED opacity: 0 and transform - this was hiding the section */
}

.contact-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Riddim-UltraBlack';
    color: #636363;
}

.orange {
    color: #FF6A2B;
}

.contact-text {
    margin-bottom: 25px;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

.contact-bottom {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
}

.open-roles {
    color: #FF6A2B;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.open-roles:hover {
    text-decoration: underline;
}

.contact-form-container {
    flex: 1 1 45%;
    background: #636363;
    padding: 40px;
    border-radius: 18px;
    color: white;
    /* REMOVED opacity: 0 and transform - this was hiding the section */
}

.contact-form-title {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Riddim-UltraBlack';
}

.contact-form-heading {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Riddim-UltraBlack';
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #FFF;
    opacity: 1;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    background: #838383;
    outline: none;
    color: #ffffff;
    font-family: 'Barlow-Regular';
}

textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 12px 22px;
    border-radius: 40px;
    color: #FF6A2B;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: 'Barlow-Regular';
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #FD5F00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(239, 102, 35, 0.35);
}

.contact-btn:hover .btn-arrow {
    background: #ffffff;
    color: #FD5F00;
}

.btn-arrow {
    background: #FF6A2B;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* footer */
.footer {
    background: #636363;
    color: white;
    padding: 40px 0 0 !important;
    /* remove bottom padding */
    position: relative;
}


/* ---------- FOOTER LAYOUT (IMPORTANT FIX) ---------- */
.footer-inner {
    display: flex;
    flex-wrap: nowrap;
    /* forces alignment in one row */
    justify-content: space-between;
    align-items: flex-start;
    /* PERFECT vertical alignment */
    gap: 0px;
    /* removes unwanted spacing */
    max-width: 1300px;
    margin: auto;
}

/* ---------- EACH COLUMN ---------- */
.footer-col {
    min-width: 200px;
    /* consistent width */
}

/* ---------- TITLES ---------- */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    /* reduced for cleaner look */
    color: white;
    font-family: 'Barlow-Regular';
}

/* ---------- LINKS ---------- */
.footer-links a {
    display: block;
    color: white;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 8px;
    /* tighter spacing */
    text-decoration: none;
    font-family: 'Barlow-Regular';
}

.footer-links a:hover {
    opacity: 1;
}

/* ---------- EMAIL (Styled as requested) ---------- */
.email {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    opacity: 1;
    display: inline-block;
    font-family: 'Barlow-Regular';
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons {
    display: flex;
    gap: 14px;

}

/* ---------- BIG BACKGROUND ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“LIBERTYÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â TEXT ---------- */
.footer-bg-text {
    position: absolute;
    bottom: 40px;
    /* perfect centered position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 800;
    opacity: 0.12;
    pointer-events: none;
    white-space: nowrap;
}

/* ---------- COPYRIGHT ---------- */
.footer-bottom {
    background: #585858;
    text-align: center;
    padding: 16px 10px;
    font-size: 14px;
    margin-top: 40px;
    font-family: 'Barlow-Regular';
    /* gives clean separation */
}

/* ---------- RESPONSIVE FIXES ---------- */
@media (max-width: 1200px) {
    .footer-inner {
        flex-wrap: wrap;
        /* allow wrapping on mid screens */
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .footer {
        padding: 40px 20px 80px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 80px;
    }

    .footer-bg-text {
        font-size: 95px;
        bottom: 120px;
    }

    .social-icons {
        display: flex;
        gap: 14px;
        justify-content: center;
    }
}

/* ============================= */
/* Related Stories Section */
/* ============================= */
.related-stories {
    margin-top: 80px;
    padding-bottom: 40px;
    margin-left: 40px;

}


/* Splide container fix */
.splide {
    width: 100%;
}

/* Ensure slides align properly */
.splide__slide {
    display: flex;
}


/* ============================= */
/* Your existing styles (unchanged) */
/* ============================= */
.carousel-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.carousel-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.learn-more {
    font-size: 14px;
    color: #f64c7e;
    text-decoration: none;
    font-weight: 500;
}

.learn-more:hover {
    text-decoration: underline;
}

@media(max-width:767px) {
    .carousel-item img {
        height: 220px !Important;
    }

    .related-stories {
        margin-left: 0px !important;
        margin-top: 0px !important;
    }

    .contact-section {
        padding-top: 0px !important;
    }

    .mobile-discover {
        text-align: center;
    }
}

/* ================================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fade-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.search-highlight {
    background-color: #FD5F00B2;
    color: #fff;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
}


/** home page **/
:root {
    --brand: #DC4926;
    --brand-dark: #b83a1e;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.88);
    --card-radius: 20px;
    --font: 'Barlow-Regular';
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: #ffffff;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   HERO BANNER Home Banner
================================ */
/* Hero container */
.hero-banner-home {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

/* 🎬 Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.overlay-home {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* adjust opacity */
    z-index: 1;
}

/* Content stays above video */
.hero-content-home {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Left side â€” headline, desc, primary btn */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;

}

.hero-content-home h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 14px 0;
}

.light-text-home {
    color: #ffffff;
    font-weight: 900;
    display: block;
    font-family: Riddim-UltraBlack;
}

.orange-text-home {
    color: #FD5F00;
    font-weight: 900;
    display: block;
    font-family: Riddim-UltraBlack;
}

.hero-desc-home {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px 0;
    max-width: 420px;
}

/* Hero Banner Buttons */
.hero-buttons-home {
    display: flex;
    align-items: center;
    gap: 0;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    gap: 14px;
    font-family: 'Barlow-Regular', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.hero-btn--primary {
    background: #FD5F00;
    color: #ffffff;
}

.hero-btn--primary:hover {
    background: #e05400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 95, 0, 0.4);
}

/* Get in touch â€” pushed to right via flex on parent */
.hero-btn--secondary {
    background: #A8A8A7B2;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn-circle {
    background: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-btn--primary .hero-btn-circle i {
    color: #FD5F00;
    font-size: 13px;
}

.hero-btn--secondary .hero-btn-circle i {
    color: #333333;
    font-size: 13px;
}

/* Tablet */
@media (max-width: 900px) {
    .hero-content-home {
        padding: 0 4% 36px 4%;
    }

    .hero-content-home h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .hero-desc-home {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .hero-btn {
        padding: 8px 8px 8px 18px;
        font-size: 13px;
        gap: 10px;
    }

    .hero-btn-circle {
        width: 28px;
        height: 28px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-banner-home {
        min-height: 500px;
    }

    .hero-content-home {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5% 32px 5%;
        gap: 16px;
        margin-bottom: 30%;
        
    }

    .hero-left {
        width: 100%;
    }

    .hero-btn--secondary {
        align-self: center
    }

    .hero-buttons-home {
       
        gap: 12px;
    }
}

/* cta button */
.who-we-are {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 40px;
    color: #FF6A2B;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: 'Barlow-Regular';
    transition: all 0.3s ease;

    /* Responsive width */
    width: fit-content;
    min-width: 180px;
    max-width: 100%;
}

.who-we-are-btn {
    background: #FF6A2B;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Hover effect */
.who-we-are:hover {
    background: #FD5F00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(239, 102, 35, 0.35);
}

.who-we-are:hover .who-we-are-btn {
    background: #ffffff;
    color: #FD5F00;
}

/* Tablet */
@media (max-width: 768px) {
    .who-we-are {
        padding: 10px 18px;
        font-size: 12px;
        min-width: 160px;
    }

    .who-we-are-btn {
        width: 24px;
        height: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .who-we-are {
        width: 45%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 1 â€” TWO FEATURE CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cards-section {
    width: 100%;
    padding: 36px 32px;
    background: #ffffff;
}

.cards-wrapper {
    display: flex;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

/* â”€â”€ Individual Card â”€â”€ */
.feature-card {
    position: relative;
    flex: 1 1 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
}

/* Background image */
.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--card-radius);
}

/* Dark overlay â€” left card gets left-heavy gradient
.card-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    background: linear-gradient(to top,
            rgba(25, 10, 5, 0.82) 0%,
            rgba(40, 15, 5, 0.65) 50%,
            rgba(50, 20, 5, 0.40) 100%);
} */

/* Right card overlay â€” slightly different tint to match design */
/* .card-overlay--right {
    background: linear-gradient(to top,
            rgba(20, 8, 2, 0.80) 0%,
            rgba(35, 12, 2, 0.60) 50%,
            rgba(55, 25, 5, 0.35) 100%);
} */

/* Content sits above overlay */
.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 200%;
    padding: 24px 24px;
    gap: 10px;
}

/* Right card content â€” same padding */
.card-content--right {
    padding: 24px 24px;
}

/* â”€â”€ Card Typography â”€â”€ */
.card-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.18;
    color: var(--white);
    letter-spacing: -0.02em;
    font-family: Riddim-UltraBlack;
}

/* Bullet list â€” left card */
.card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0px !important;
}

.card-bullets li {
    font-size: 18px;
    font-weight: 600;
    color: #FD5F00;
    padding-left: 15px !important;
    position: relative;
}

.card-bullets li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    color: #FD5F00;
    font-size: 1.1em;
    line-height: 1;
    top: 1px;
}

/* Description paragraph â€” right card */
.card-description {
    font-size: 18px;
    font-weight: 600;
    color: #FD5F00;
    line-height: 1.5;
    max-width: 420px;
}

/* â”€â”€ CTA Button â€” Cards â”€â”€ */
.card-btn {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 100px;
    width: fit-content;
    transition: background 0.25s ease, transform 0.2s ease;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.card-btn:hover,
.card-btn:focus-visible {
    background: var(--brand-dark);
    transform: translateY(-2px);
    outline: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 2 â€” ARTICLE / INGE'S SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.article-section {
    width: 100%;
    background: var(--brand);
    padding: 56px 48px;
}

.article-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

/* â”€â”€ Left: Text â”€â”€ */
.article-text {
    flex: 1.15 1 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-heading {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-family: 'Riddim';
}

.article-body {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

/* â”€â”€ CTA Button â€” Article â”€â”€ */
.article-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--white);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font);
    font-size: clamp(0.78rem, 1vw, 0.85rem);
    font-weight: 700;
    width: fit-content;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: 4px;
}

.article-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    border: 1.5px solid var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.article-btn:hover,
.article-btn:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.article-btn:hover .article-btn-arrow {
    background: var(--brand-dark);
}

/* â”€â”€ Right: Media â”€â”€ */
.article-media {
    flex: 0.85 1 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Video thumbnail wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #1a0800;
    cursor: pointer;
}

.article-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: opacity 0.3s ease;
}

/* Play button overlay */
.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

/* The SVG triangle */
.play-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.play-btn:hover .play-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

/* Caption below video */
.video-caption {
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
}

.video-caption strong {
    font-weight: 800;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 3 â€” ROOTED SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.rooted-section {
    position: relative;
    width: 100%;
    padding: 80px 32px;
    overflow: hidden;
    background-image: url(https://lla-cms-prod.directus.app/assets/b0e35dda-9f01-482a-9106-34361cf70215);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

.rooted-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    position: relative;
    z-index: 2;
}

.rooted-col {
    display: flex;
    flex-direction: column;
}

.rooted-col-two {
    display: flex;
    flex-direction: column;
    margin-top: 28%;
}

.rooted-main-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #FD5F00;
    line-height: 1.15;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
    font-family: 'Riddim';
}

.rooted-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.rooted-text-block--right {
    margin-top: 32px;
    margin-bottom: 0;
}

.rooted-sub-title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: #555555;
    line-height: 1.25;
    font-family: 'Riddim';
}

.rooted-body {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #777777;
    line-height: 1.6;
    max-width: 90%;
}

.rooted-link {
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 700;
    color: #ff4b72;
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: fit-content;
    margin-top: 4px;
}

.rooted-link:hover {
    opacity: 0.8;
}

.rooted-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TABLET  (â‰¤ 900px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {

    /* Cards section */
    .cards-section {
        padding: 28px 20px;
    }

    .cards-list-button {
        width: 50% !important;
    }

    .cards-wrapper {
        gap: 14px;
    }

    .card-content,
    .card-content--right {
        padding: 20px 18px;
        gap: 8px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    /* Rooted section */
    .rooted-section {
        padding: 64px 28px;
    }

    .rooted-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rooted-main-title {
        margin-bottom: 32px;
    }

    .rooted-text-block {
        margin-bottom: 32px;
    }

    .rooted-text-block--right {
        margin-top: 24px;
    }

    /* Article section */
    .article-section {
        padding: 44px 28px;
    }

    .article-inner {
        gap: 32px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” MOBILE  (â‰¤ 640px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 640px) {

    /* â”€â”€ Section 1: Stack cards vertically â”€â”€ */
    .cards-section {
        padding: 20px 14px;
    }

    .rooted-col-two {
        margin-top: 0px !important;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .feature-card {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .card-bg {
        border-radius: 16px;
    }

    .card-overlay,
    .card-overlay--right {
        border-radius: 16px;
    }

    .card-content,
    .card-content--right {
        padding: 20px 18px;
        gap: 10px;
    }

    .card-title {
        font-size: 1.45rem;
    }

    .card-bullets li {
        font-size: 0.82rem;
    }

    .card-description {
        font-size: 0.82rem;
    }

    .card-btn {
        font-size: 0.78rem;
        padding: 9px 20px;
    }

    /* â”€â”€ Section 3: Stack text + media vertically â”€â”€ */
    .rooted-section {
        padding: 48px 16px;
    }

    .rooted-inner {
        gap: 36px;
    }

    .rooted-main-title {
        font-size: 1.7rem;
        margin-bottom: 24px;
    }

    .rooted-sub-title {
        font-size: 1.25rem;
    }

    .rooted-body {
        font-size: 0.85rem;
        max-width: 100%;
    }

    /* â”€â”€ Section 2: Stack text + media vertically â”€â”€ */
    .article-section {
        padding: 36px 16px;
    }

    .article-inner {
        flex-direction: column;
        gap: 28px;
    }

    .article-heading {
        font-size: 1.5rem;
    }

    .article-body {
        font-size: 0.8rem;
    }

    .article-btn {
        font-size: 0.8rem;
        padding: 7px 7px 7px 18px;
        gap: 8px;
    }

    .article-btn-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .article-video {
        border-radius: 12px;
    }

    .play-icon {
        width: 48px;
        height: 48px;
    }

    .video-caption {
        font-size: 0.78rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” SMALL MOBILE  (â‰¤ 400px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 400px) {
    .card-title {
        font-size: 1.25rem;
    }

    .article-heading {
        font-size: 1.3rem;
    }

    .article-btn {
        font-size: 0.75rem;
    }
}

/* Initial hidden state */
.fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Visible state when in viewport */
.fade-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item p {
    color: #000 !important;

}


/* cta button */
.who-we-are-discover {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #FF6A2B;
    padding: 12px 20px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: 'Barlow-Regular';
    transition: all 0.3s ease;
    margin-top: 30px;
    /* Responsive width */
    width: fit-content;
    min-width: 180px;
    max-width: 100%;
}

.who-we-are-btn-discover {
    background: #ffff;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border-radius: 50%;
    color: #FF6A2B;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Hover effect */
.who-we-are-discover:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(239, 102, 35, 0.35);
}


.who-we-are-discover:hover .who-we-are-btn-discover {
    background: #ffff;
    color: #FF7A45;
}

/* Tablet */
@media (max-width: 768px) {
    .who-we-are-discover {
        padding: 10px 18px;
        font-size: 12px;
        min-width: 160px;
    }

    .who-we-are-btn-discover {
        width: 24px;
        height: 24px;
    }
	.video-modal-player{
		height:40vh !important;
	}
}

/* Mobile */
@media (max-width: 480px) {
    .who-we-are-discover {
        width: 50%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
}


/* ═══════════════════════════════════════════════
   VIDEO MODAL POPUP
════════════════════════════════════════════════ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.video-modal-inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 960px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-inner {
    transform: scale(1);
}

.video-modal-player {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
	height:120vh;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
    padding: 0;
}

.video-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}