/* ============================================ */
/* GLOBAL                                        */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand colors */
    --color-orange: #B35700;
    --color-orange-dark: #964800;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F7F7F7;
    --color-border: #E8EBEC;
    --color-nav-font: #797F89;
    --color-overlay: rgba(0, 0, 0, 0.6);

    /* Fonts */
    --font-primary: 'Mulish', sans-serif;
    --font-heading: 'Quicksand', sans-serif;
    --font-accent: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ------------------- Footer Section -------------------- */

/* ============================================ */
/* HEADER                                        */
/* ============================================ */
.vcmdwa-header {
    width: 100%;
    /* position: sticky;
    top: 0; */
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ============================================ */
/* TOP ORANGE BAR (Logo + Title + Socials)       */
/* ============================================ */
.header-top {
    background: var(--color-orange);
    width: 100%;
    padding: 0 10px;
}

.header-top-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo (circular) */
.header-logo {
    width: 19%;
}

.header-logo img {
    width: 50%;
    margin: 0 auto;
    border-radius: 50%;
}

/* Title */
.header-title {
    text-align: center;
    width: 60%;
}

.header-title h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 47.5px;
    letter-spacing: 0px;
    color: var(--color-white);
}

/* Social Icons */
.header-social {
    width: 20%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #DBDBDB;
    border-radius: 50%;
    font-size: 25px;
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: var(--color-orange-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================ */
/* BOTTOM WHITE NAV BAR                          */
/* ============================================ */
.header-bottom {
    background: var(--color-white);
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 10px 10px;
    /* position: relative; */
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 20px 18px;
    font-family: "Quicksand", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 28.8px;
    letter-spacing: 0px;
    color: var(--color-nav-font);
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--color-orange);
}

/* ============================================ */
/* ACTIONS (Hamburger + Search)                  */
/* ============================================ */


.hamburger-btn {
    display: none;
    background: var(--color-orange);
    border: none;
    color: var(--color-white);
    width: 42px;
    height: 42px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hamburger-btn:hover {
    background: var(--color-orange-dark);
}

.search-toggle {
    background: transparent;
    border: none;
    color: var(--color-nav-font);
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--color-orange);
}

/* ============================================ */
/* SEARCH MODAL POPUP                            */
/* ============================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 0 30px;
    z-index: 2;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-close {
    position: absolute;
    top: -60px;
    right: 30px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
    transform: rotate(90deg);
}

.search-modal-inner {
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    margin-bottom: 24px;
}

.search-modal-form {
    position: relative;
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.search-modal-input {
    flex: 1;
    border: 2px solid var(--color-border);
    border-radius: 6px 0 0 6px;
    border-right: none;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-modal-input:focus {
    border-color: var(--color-orange);
}

.search-modal-submit {
    background: var(--color-orange);
    color: var(--color-white);
    border: 2px solid var(--color-orange);
    padding: 0 24px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.search-modal-submit:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
}

.search-modal-hint {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

.search-modal-hint kbd {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: monospace;
    font-size: 12px;
    color: var(--color-text);
    margin: 0 2px;
}

/* ============================================ */
/* MOBILE DRAWER                                 */
/* ============================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--color-orange);
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: var(--color-orange);
    color: var(--color-white);
    border-radius: 4px;
}

.drawer-nav {
    flex: 1;
    padding: 0px 10px;
}

.drawer-nav ul li a {
    display: block;
    padding: 5px 20px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
    color: var(--color-nav-font);
    transition: color 0.2s ease;
}

.drawer-nav ul li a:hover,
.drawer-nav ul li a.active {
    color: var(--color-orange);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large desktop down */
@media (max-width: 1200px) {
    .nav-link {
        padding: 16px 16px;
        font-size: 15px;
    }
}

/* Tablet / Mobile breakpoint */
@media (max-width: 1024px) {
    .header-title h2 {
        line-height: 30px;
    }

    .header-logo img {
        width: 70%;
    }

    .header-social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hamburger-btn {
        display: none;
    }
}

@media (max-width: 770px) {
    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: block;
        margin-right: 20px;
    }

    .header-actions {
        position: static;
        display: flex;
        transform: none;
    }

    .header-bottom-wrapper {
        justify-content: flex-end;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-title h2 {
        font-size: 16px;
        line-height: 1.3;
    }

    .header-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .hamburger-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .search-toggle {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .search-modal-content {
        padding: 0 16px;
    }

    .search-modal-inner {
        padding: 28px 22px;
    }

    .search-modal-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .search-modal-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .search-modal-close {
        top: -54px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .header-title h2 {
        font-size: 13px;
    }

    .header-social a {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .mobile-drawer {
        max-width: 90%;
        width: 300px;
    }

    .search-modal-submit {
        padding: 10px;
    }

    .search-modal-input {
        padding: 10px;
    }
}

/* ------------------- Hearder Section -------------------- */
/* ============================================ */
/* IMAGE SLIDER                                  */
/* ============================================ */

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-black, #000);
}

/* Slider track - holds all slides */
.slider-track {
    display: flex;
    width: 100%;
    /* IMPORTANT: transition JS se control hoga - yahan mat lagao */
}

/* Each slide */
.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================ */
/* ARROWS                                        */
/* ============================================ */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-white, #fff);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--color-orange, #B35700);
    color: var(--color-white, #fff);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large desktop */
@media (max-width: 1200px) {
    .slide img {
        height: 500px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .slide img {
        height: 400px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .slide img {
        height: 280px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .slide img {
        height: 200px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/********************************************************************/
/* ------------- Conter & carousel section ----------- */

/* ==================
       COUNTER SECTION
    =================== */
.counter-section {
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
}

.counter-outer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-wrapper {
    /* overflow: hidden; */
    width: 100%;
}

.counter-track {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    /* align-items: center; */
    transition: transform 0.5s ease;
    padding: 10px;
}

.counter-card {
    /* min-width: 25%; */
    margin-right: 10px;
    flex-shrink: 0;
}

.counter-card-inner {
    border: 3px solid #B35700;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.counter-card-inner:hover {
    box-shadow: 0 6px 20px rgba(224, 123, 32, 0.2);
    transform: translateY(-4px);
}

.counter-number {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 45px;
}

.counter-label {
    font-family: "Poppins", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #B35700;
    text-transform: capitalize;
    line-height: 47.5px;
}

/* ==================
        TRUST SECTION
    =================== */
.trust-heading-cintainer {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
}

.heading-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-content {
    padding: 10px;
}

.heading-content h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    color: #B35700;
}

/* ==================
    BRAND CAROUSEL
=================== */
.trust-section {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.carousel-outer {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0 70px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.logo-item {
    min-width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.logo-item img {
    width: 70%;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #D5D5D5;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background: #E07B20;
    transform: scale(1.3);
}

.dot:hover {
    transform: scale(1.4);
}

/* ARROW BUTTONS - Brand Carousel */
.arrow-btn {
    background: #f0f0f0;
    border: none;
    color: #333333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-btn:hover {
    background: #B35700;
    color: #ffffff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ==================
       RESPONSIVE
    =================== */
@media (min-width: 300px) and (max-width: 500px) {
    .counter-track {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .counter-outer {
        width: 100%;
        padding: 0 12px;
    }

    .logo-item img {
        width: 100%;
    }

}

@media (min-width: 500px) and (max-width: 768px) {
    .counter-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .counter-card-inner {
        padding: 20px;
    }
    .logo-item img {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .counter-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .counter-card-inner {
        padding: 20px;
    }

    .trust-section {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    .logo-item {
        min-width: 33.33%;
    }

    .logo-item img {
        height: 38px;
    }

    /* .trust-section h2 {
        font-size: 20px;
    } */

    .counter-card {
        min-width: 50%;
    }

    .counter-number {
        font-size: 28px;
    }

    /* .counter-outer {
        padding: 0 50px;
    } */

    .prev-btn {
        left: 6px;
    }

    .next-btn {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .counter-card {
        min-width: 100%;
    }
}

/********************************************************************/

/* ============================================ */
/* STAY CONNECTED SECTION                        */
/* ============================================ */

.stay-connected-section {
    width: 100%;
    padding: 70px 0;
    background: var(--color-white, #ffffff);
}

.stay-connected-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ============================================ */
/* LEFT: FORM SIDE                               */
/* ============================================ */

.form-side {
    width: 100%;
}

.form-title {
    font-family: var(--font-heading, 'Quicksand', sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black, #000);
    margin-bottom: 12px;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 3px solid #FFE87C;
}

.connected-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

/* Two-column row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text, #333);
    margin-bottom: 8px;
}

.required {
    color: #E53935;
    font-weight: 700;
}

/* Form input - pill shaped */
.form-input {
    width: 100%;
    background: var(--color-white, #fff);
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    padding: 12px 22px;
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 15px;
    color: var(--color-text, #333);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.form-input:focus {
    border-color: var(--color-orange, #B35700);
    box-shadow: 0 2px 8px rgba(179, 87, 0, 0.15);
}

.form-input.invalid {
    border-color: #E53935;
}

/* Error message */
.form-error {
    color: #E53935;
    font-size: 13px;
    margin-top: 5px;
    padding-left: 22px;
    min-height: 0;
    display: none;
}

.form-error.show {
    display: block;
}

/* ============================================ */
/* TERMS TEXT                                    */
/* ============================================ */
.terms-text {
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 14px;
    color: var(--color-text, #333);
    line-height: 1.6;
    margin: 4px 0 0;
}

.terms-link {
    color: var(--color-black, #000);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: var(--color-orange, #B35700);
    text-decoration: underline;
}

/* ============================================ */
/* CONSENT CHECKBOX                              */
/* ============================================ */
.form-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-orange, #B35700);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 14px;
    color: var(--color-text, #333);
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.form-checkbox .form-error {
    width: 100%;
    padding-left: 28px;
    margin-top: 4px;
}

/* ============================================ */
/* SUCCESS MESSAGE                               */
/* ============================================ */
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid #4CAF50;
    color: #2E7D32;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary, 'Mulish', sans-serif);
}

.form-success.show {
    display: flex;
}

.form-success i {
    color: #4CAF50;
    font-size: 18px;
}

/* ============================================ */
/* SUBMIT BUTTON                                 */
/* ============================================ */
.signup-btn {
    align-self: flex-start;
    background: #FFC107;
    color: var(--color-black, #000);
    border: none;
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 42px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.signup-btn:hover {
    background: #F5B400;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 193, 7, 0.4);
}

.signup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================ */
/* RIGHT: MAP SIDE                               */
/* ============================================ */
.map-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.map-wrapper {
    width: 100%;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Address block */
.address-block {
    width: 100%;
}

.address-heading {
    font-family: var(--font-heading, 'Quicksand', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black, #000);
    margin-bottom: 14px;
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.address-text i {
    color: var(--color-text, #333);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.address-text p {
    font-family: var(--font-primary, 'Mulish', sans-serif);
    font-size: 15px;
    color: var(--color-text, #333);
    line-height: 1.6;
    margin: 0;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large tablet */
@media (max-width: 991px) {
    .stay-connected-section {
        padding: 50px 0;
    }

    .stay-connected-container {
        gap: 40px;
    }

    .form-title {
        font-size: 28px;
    }

    .map-wrapper {
        height: 380px;
    }
}

/* Tablet / Mobile */
@media (max-width: 767px) {
    .stay-connected-section {
        padding: 40px 0;
    }

    .stay-connected-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .form-title {
        font-size: 26px;
    }

    .connected-form {
        margin-top: 24px;
        gap: 18px;
    }

    .map-wrapper {
        height: 320px;
    }

    .address-heading {
        font-size: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .stay-connected-section {
        padding: 30px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-input {
        font-size: 14px;
        padding: 11px 18px;
    }

    .signup-btn {
        font-size: 15px;
        padding: 11px 36px;
        width: 100%;
        text-align: center;
    }

    .map-wrapper {
        height: 280px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .terms-text {
        font-size: 13px;
    }
}

/********************************************************************/
/* ============================================ */
/* ABOUT US SECTION                                        */
/* ============================================ */
.about-us-section {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.title-container {
    margin-bottom: 20px;
}

.title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    color: var(--color-black);
}

.title-container p {
    font-family: "Mulish", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0px;
    color: var(--color-nav-font);
    margin-bottom: 14.4px;
}

.about-list {
    list-style: disc;
    padding-left: 40px;
    font-family: "Mulish", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0px;
    color: var(--color-nav-font);
    margin-bottom: 14.4px;
}

@media (min-width: 320px) and (max-width: 1200px) {
    .about-us-section {
        padding: 0 20px;
    }
}

/********************************************************************/


/* ------------------- Footer Section -------------------- */

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */

.vcmdwa-footer {
    width: 100%;
    font-family: var(--font-primary, 'Mulish', sans-serif);
}

/* ============================================ */
/* MAIN FOOTER AREA                              */
/* ============================================ */
.footer-main {
    border-top: 1px solid #C5D2DD;
    background-color: #F5FDFF;
    padding: 50px 0 20px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

/* ============================================ */
/* COLUMN 1: ABOUT                               */
/* ============================================ */
.footer-column-1 {
    width: 50%;
    display: flex;
}

.footer-column-1 .footer-col {
    width: 70%;
    padding-right: 10px;
    margin-bottom: 20px;
}

.footer-column-1 .footer-col2 {
    width: 30%;
    padding: 0 15px;
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    width: 25%;
    border-radius: 50%;
    object-fit: contain;
}

.footer-description {
    font-family: "Mulish", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--color-black);
    margin-bottom: 14.4px;
}

/* ============================================ */
/* EXPLORE + QUICK LINKS                         */
/* ============================================ */

.footer-col2 .footer-heading {
    font-family: "Quicksand", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-links li a {
    font-family: "Mulish", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 28.8px;
    letter-spacing: 0px;
    padding: 5px 0px;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: var(--color-orange, #B35700);
}

/* ============================================ */
/* COLUMN HEADINGS                               */
/* ============================================ */
.footer-column-2 {
    width: 50%;
    display: flex;
}

.footer-column-2 .footer-col {
    width: 30%;
    padding: 0 15px;
}

.footer-column-2 .footer-col2 {
    width: 70%;
    padding: 0 15px;
}

/* ============================================ */
/* COLUMN 4: CONTACT                             */
/* ============================================ */
.footer-col .footer-heading {
    font-family: "Quicksand", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 10px 20px 8px 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-orange, #B35700);
    color: var(--color-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 13px;
    margin-top: 5px;
    margin-right: 16px;
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    line-height: 16.8px;
    letter-spacing: 0px;
    color: var(--color-black, #000);
    margin-bottom: 5px;
}

.contact-info p {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    font-style: normal;
    text-decoration: none;
    line-height: 28.8px;
    letter-spacing: 0px;
    color: var(--color-orange, #B35700);
    margin: 0;
    width: 100%;
}

.contact-info p a {
    color: var(--color-orange, #B35700);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-info p a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ============================================ */
/* FOOTER BOTTOM BAR                             */
/* ============================================ */
.footer-bottom {
    background: var(--color-orange, #B35700);
    padding: 10px 0;
    width: 100%;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-family: "Mulish", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0px;
    color: #C5D2DD;
    flex: 1;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-white, #fff);
    color: var(--color-orange, #B35700);
}

/* ============================================ */
/* SCROLL TO TOP BUTTON                          */
/* ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-orange, #B35700);
    color: var(--color-white, #fff);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-orange-dark, #964800);
    transform: translateY(-3px);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet */
/* @media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about .footer-logo img {
        margin: 0 auto;
    }

    .footer-description {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
} */

/* Mobile */
@media (max-width: 600px) {

    /* Scroll button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1435px) {
    .footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 770px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column-1 {
        width: 100%;
        justify-content: center;
    }

    .footer-column-2 {
        width: 100%;
        justify-content: center;
    }

    .footer-column-1 .footer-col {
        width: 60%;
        padding: 0 15px 50px 15px;
    }

    .footer-column-2 .footer-col2 {
        width: 60%;
    }

    .footer-bottom-container {
        width: 100%;
    }
}

@media (min-width: 450px) and (max-width: 600px) {
    .footer-column-1 .footer-col {
        width: 70% !important;
        margin: 0 auto;
    }
}

@media (min-width: 300px) and (max-width: 600px) {
    .footer-column-1 {
        flex-direction: column;
    }

    .footer-column-2 {
        flex-direction: column;
    }

    .footer-column-1 .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-about .footer-logo img {
        width: 50%;
        margin: 0 auto;
    }

    .footer-column-1 .footer-col2 {
        width: 100%;
        text-align: center;
        padding: 0 15px 50px 15px;
    }

    .footer-column-2 .footer-col2 {
        width: 100%;
        /* text-align: center; */
        padding: 0 15px 50px 15px;
    }

    .footer-col2 .footer-heading {
        text-align: center;
    }

    .footer-column-2 .footer-col {
        width: 100%;
        text-align: center;
        padding: 0 15px 50px 15px;
    }

    .footer-bottom-container {
        width: 100%;
    }

    .contact-item {
        gap: 0;
    }
}

/* ------------------- Footer Section -------------------- */