html,
body {
    overflow-x: hidden;
    font-family: "Barlow Regular";
    margin: 0;
    padding: 0;
}

/* ============================================================
   NAV PILL
   ============================================================ */
/* ================================
   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: 75px 10px !important;
        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/1a078dc3-8b18-4131-aa92-83d8455a11d1');
    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.6), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 8%;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 105px;
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 20px;
}

.light-text {
    color: #F3EFEA;
    font-weight: 600;
}

.orange-text {
    color: #FD5F00;
    font-weight: 900;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 460px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        padding: 100px 30px;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .mobile-hide {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 45px;
    }

    .hero-desc {
        font-size: 14px;
    }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-us-section {
    background: #ffffff;
    padding: 80px 40px 90px;
    max-width: 960px;
    margin: 0 auto;
}

/* --- Title --- */
.about-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #636363;
    letter-spacing: -0.5px;
    margin: 0;
}

/* --- Description --- */
.about-desc-wrap {
    text-align: center;
    margin-bottom: 70px;
}

.about-desc {
    font-family: 'Barlow-Regular';
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: #636363;
    line-height: 1.75;
    max-width: 880px;
    margin: 0 auto;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* --- Individual Stat --- */
.stat-item {
    flex: 1 1 220px;
    text-align: center;
}

.stat-badge {
    display: inline-block;
    background: #636363;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
    font-family: 'Barlow-Regular';
}

.stat-number {
    font-family: 'Riddim-UltraBlack';
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    color: #FD5F00;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-desc {
    font-family: 'Barlow-Regular';
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: #666;
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto;
}

/* --- Team Photo --- */
.about-photo-wrap {
    width: 100%;
}

.about-photo {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

/* ============================================================
   SCROLL FADE-UP ANIMATION (initial hidden state)
   ============================================================ */
/* .fade-up {
    opacity: 0;
    transform: translateY(50px);
} */
/* ============================================================
   SCROLL FADE-UP ANIMATION
============================================================ */

/* Initial hidden state */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
}

/* When animation triggers */
.fade-up.animate {
    animation: fadeUp 0.9s ease both;
}

/* Keyframe animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay utility classes for staggering */
/* .delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; } */

/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ TABLET (Ã¢â€°Â¤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 24px 70px;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin-bottom: 60px;
    }

    .stat-item {
        flex: none;
        width: 100%;
        max-width: 340px;
    }

    .about-desc-wrap {
        margin-bottom: 55px;
    }

    .about-photo {
        border-radius: 14px;
        max-height: 380px;
    }
}

/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ MOBILE (Ã¢â€°Â¤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .about-us-section {
        padding: 48px 18px 60px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .about-desc-wrap {
        margin-bottom: 44px;
    }

    .about-photo {
        border-radius: 12px;
        max-height: 280px;
    }
}

/* ============================================================
   ANIMATION DELAY CLASSES (for staggered .fade-up.animate)
   ============================================================ */
/* .delay-1.animate { animation-delay: 0.08s; }
.delay-2.animate { animation-delay: 0.18s; }
.delay-3.animate { animation-delay: 0.3s; }
.delay-4.animate { animation-delay: 0.44s; }
.delay-5.animate { animation-delay: 0.58s; } */

/* ============================================================
   PROMISE CARDS SECTION
   ============================================================ */
.promise-section {
    background: #F9FBFD;
    padding: 80px 40px 90px;
}

/* --- Cards Row --- */
.promise-cards-row {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 64px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Individual Card --- */
.promise-card {
    background: #FD5F00;
    border-radius: 16px;
    padding: 32px 28px 36px;
    flex: 1 1 280px;
    max-width: 310px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(239, 102, 35, 0.35);
}

/* --- Icon --- */
.promise-icon-wrap {
    margin-bottom: 24px;
}

.promise-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

/* --- Card Title --- */
.promise-card-title {
    font-family: Riddim-UltraBlack;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
}

/* --- Card Description --- */
.promise-card-desc {
    font-family: 'Barlow-Regular';
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* --- Bottom Description --- */
.promise-bottom-desc {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.promise-bottom-desc p {
    font-family: 'Barlow-Regular';
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.arrow-circle {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: #FD5F00;
    font-size: 18px;
    font-weight: bold;
}

.arrow-circle,
.arrow-icon {
    transition: all 0.35s ease;
}


/* --- CTA Button --- */
.promise-cta-wrap {
    display: flex;
    justify-content: center;
}

.promise-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #FD5F00;
    padding: 10px 18px;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
    font-family: 'Barlow-Regular';
}

.promise-cta-btn:hover {
    background: #FD5F00;
    color: #ffffff;
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 28px rgba(239, 102, 35, 0.35);
    /* transform: translateY(-4px); */
}

/* .promise-cta-btn:hover .arrow-icon {
    transform: translateX(4px);
} */

.promise-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #FD5F00;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.promise-cta-btn:hover .promise-cta-arrow {
    background: #ffffff;
    color: #FD5F00;
}

/* ============================================================
   PROMISE SECTION Ã¢â‚¬â€ RESPONSIVE TABLET (Ã¢â€°Â¤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .promise-section {
        padding: 60px 24px 70px;
    }

    .promise-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 48px;
    }

    .promise-card {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .promise-bottom-desc {
        margin-bottom: 40px;
    }
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* .arrow-circle:hover .arrow-icon {
    transform: translateX(6px);
} */

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* .arrow-circle:hover {
    transform: translateX(6px);
} */

/* ============================================================
   PROMISE SECTION Ã¢â‚¬â€ RESPONSIVE MOBILE (Ã¢â€°Â¤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .promise-section {
        padding: 48px 18px 60px;
    }

    .promise-card {
        padding: 26px 22px 30px;
        border-radius: 14px;
    }

    .promise-icon {
        width: 52px;
        height: 52px;
    }

    .promise-card-title {
        font-size: 1.05rem;
    }

    .promise-cta-btn {
        font-size: 0.88rem;
        padding: 12px 22px;
    }
}

p {
    font-family: Barlow-Regular;
}

hero-content h1 {
    font-family: Riddim-UltraBlack;
}

@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: 900;
}


.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;
    }
}

/* ================================
   MAIN WRAPPER Form panel
================================ */
.contact-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 5% 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* ================================
   LEFT SIDE TEXT
================================ */
.contact-left {
    flex: 1 1 45%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s, transform 0.3s;
}

.contact-left.animate {
    animation: fadeUpSection 0.9s ease both;
}

.contact-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: Riddim-UltraBlack;
    color: #636363;
}

.orange {
    color: #FD5F00;
}

.contact-text {
    margin-bottom: 25px;
    font-size: 17px;
    color: #26272c;
    line-height: 1.6;
}

.contact-bottom {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
}

.open-roles {
    color: #FD5F00;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Barlow-Regular';
}

.open-roles:hover {
    text-decoration: underline;
}

/* ================================
   RIGHT CONTACT FORM
================================ */
.contact-form-container {
    flex: 1 1 45%;
    background: #636363;
    padding: 40px;
    border-radius: 18px;
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s, transform 0.3s;
}

.contact-form-container.animate {
    animation: fadeUpSection 0.9s ease both;
    animation-delay: 0.18s;
}

.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;
}

/* FORM FIELDS */
.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: #FFFF;
    font-family: 'Barlow-Regular';
}

textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #FFF;
    /* your desired color */
    opacity: 1;
    /* important - removes faded look */
}

/* BUTTON Ã¢â‚¬â€ matches promise section pill style */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #FD5F00;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #FD5F00;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
    background: #FD5F00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(239, 102, 35, 0.35);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #FD5F00;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.contact-btn:hover .btn-arrow {
    background: #ffffff;
    color: #FD5F00;
}

/* ================================
   SCROLL ANIMATION
================================ */
@keyframes fadeUpSection {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate.animate {
    animation: fadeUpSection 0.9s ease both;
}

/* ================================
   RESPONSIVE DESIGN Ã¢â‚¬â€ Contact
================================ */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        text-align: left;
    }

    .contact-left,
    .contact-form-container {
        width: 100%;
    }
}

/* Stack form rows on narrow phones */
@media (max-width: 520px) {
    .contact-section {
        padding: 50px 5% 70px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 24px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* ================================
   SECTION BASE
================================ */
.why-choose-us {
    width: 100%;
    padding: 80px 5%;
    text-align: center;
    background: #F4F4F4;

}

.why-choose-us {
    position: relative;
    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;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.why-choose-us {
    opacity: 0;
    animation: fadeBg 1s ease forwards;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 12px 22px;
    border-radius: 40px;
    color: #FD5F00;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: 'Barlow-Regular';
}

.contact-btn:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}

button:not(:disabled) {
    cursor: pointer;
}