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

html,
body {
    height: 100%;
    margin: 0;

}


body {
    font-family: 'Josefin Sans', sans-serif;
    color: white;
}

.top-bar {
    background-color: #ff8c00;
    color: white;
    text-align: center;
    padding: 28px;
    font-size: 20px;
}

.top-bar a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

/* Tablet view - max width 1028px */
@media (max-width: 1028px) {
    .top-bar {
        padding: 20px;
        font-size: 22px;
    }

    .top-bar a {
        font-size: 22px;
    }
}

/* Mobile view - max width 480px */
@media (max-width: 480px) {
    .top-bar {
        padding: 15px;
        font-size: 17px;
    }

    .top-bar a {
        font-size: 17px;
    }
}

@media (max-width: 415px) {
    .top-bar {
        padding: 15px;
        font-size: 18px;
    }

    .top-bar a {
        font-size: 18px;
    }
}



@media (max-width: 380px) {
    .top-bar {
        padding: 10px;
        font-size: 14px;
    }

    .top-bar a {
        font-size: 14px;
    }
}




.navbar {
    background-color: #000;
    padding: 40px 50px;
    /* 👈 Increased from 30px to 40px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.white {
    background-color: white !important;
}


.navbar.white .nav-left nav a,
.navbar.white .nav-right a,
.navbar.white .logo,
.navbar.white .nav-link,
.navbar.white .chevron {
    color: black !important;
}

/* Make sure the SVG inside turns black too */
.navbar.white .chevron-icon {
    fill: black !important;
}

.navbar.sticky.white {
    background-color: white !important;
    color: black;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-left nav {
    display: flex;
    gap: 20px;
}

.nav-left nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-right a {
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
    color: white;
}

.create-account {
    background-color: #ff8c00;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}


.chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link.active .chevron-icon {
    transform: rotate(180deg);
    fill: #22c55e;
    /* Tailwind green-500 or choose your green */
    transition: transform 0.3s ease, fill 0.3s ease;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

/* Initial state - hidden and slightly moved up */
.dropdown-menu {
    background-color: black;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 600px;
    position: absolute;
    top: calc(100% + 32px);
    /* 👈 Move dropdown lower */
    left: 0;

    z-index: 99;

    opacity: 0;
    transform: translateY(0);
    /* Optional if you don’t want animation */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
}

.dropdown-row {
    display: flex;
    gap: 25px;
}

.dropdown-item {
    flex: 1;
    /* Each item in row takes equal width */
}

.nav-link {
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: none;
    /* No background */
    border: none;
    /* No border */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    /* Remove extra spacing */
    outline: none;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.text-content h4 {
    margin: 0;
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.text-content p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #c4c4c4;
}

@media (max-width: 1028px) {
    .text-content p {
        display: none;
    }
}

@media (max-width: 1028px) {

    /* --- NAVBAR STRUCTURE --- */
    .navbar {
        position: relative;
        /* 👈 this is the missing piece */
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        z-index: 999;
        /* optional: ensures navbar stays above menu items */
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .nav-left nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding-left: 10px;
        /* moves links right a bit */
    }

    .nav-left nav a,
    nav a {
        font-size: 16px;
        width: 100%;
        padding: 12px 10px;
        color: white;
        text-decoration: none;
        display: flex;
    }

    .nav-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 25px;
        padding-left: 10px;
    }

    .nav-right a {
        margin-left: 0;
        font-size: 16px;
        width: 100%;
        text-decoration: none;
    }

    .create-account {
        text-align: center;
        padding: 10px;
        border-radius: 10px;
    }

    .nav-link {
        justify-content: space-between;
        width: 100%;
        padding: 12px 10px;
        color: rgb(168, 163, 163);
        /* hover style base */
    }

    /* --- DROPDOWN BASE --- */
    .dropdown-container {
        width: 100%;
        max-height: 60vh;
        /* or adjust to 70vh, 80vh etc */
        overflow-y: auto;
        padding-right: 6px;
        /* To avoid cutting off scrollbar */
    }

    .dropdown-container::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1 !important;
        pointer-events: auto;
        transform: none;
        width: 100%;
        padding: 20px 10px;
        background-color: #111;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 10px;
    }

    .dropdown-row {
        flex-direction: column;
        gap: 25px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        flex: none;
        width: 100%;
        gap: 15px;
        padding-left: 10px;
    }

    .text-content h4 {
        font-size: 15px;
    }

    .text-content p {
        font-size: 13px;
    }

    /* --- ICON SIZE (generic small icon support) --- */
    .icon-small img {
        width: 15px;
        height: 15px;
    }

    /* --- HOVER STYLES --- */
    .dropdown-item:hover .text-content h4 {
        color: #22c55e;
        /* Tailwind green-500 */
    }

    /* --- LEARN DROPDOWN ONLY --- */
    .learn-dropdown {
        gap: 3px !important;
        padding: 15px 10px !important;
    }

    .learn-dropdown .dropdown-row {
        gap: 3px !important;
    }

    .learn-dropdown .dropdown-item {
        gap: 3px !important;
        padding-left: 5px;
    }

    .learn-dropdown .text-content h4 {
        font-size: 14px;
    }

    /* --- ICON COLORS & STYLING --- */
    .icon.icon-red {
        width: 30px;
        height: 30px;
        --tw-bg-opacity: 1;
        background-color: rgb(10 170 100 / var(--tw-bg-opacity));
        /* or any color you like */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .icon.icon-red img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        display: block;
    }

    .icon.icon-brown {
        width: 30px;
        height: 30px;
        --tw-bg-opacity: 1;
        background-color: rgb(46 72 218 / var(--tw-bg-opacity));
        /* or any color you like */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .icon.icon-brown img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        display: block;
    }

    /* Shared button styles (optional if you want to unify look) */
    .btn-login,
    .btn-create-account {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Log In - transparent button */
    .btn-login {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    /* Create Account - blue background */
    .btn-create-account {
        background-color: #ff8c00;
        /* Adjust blue as needed */
        color: white;
        border: none;
    }

    /* Optional hover effect */
    .btn-login:hover {
        background-color: white;
        color: black;
    }

    .btn-create-account:hover {
        opacity: 0.9;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* 👈 Increased vertical space between buttons */
        width: 100%;
        margin-top: 20px;
        /* 👈 Pushes the entire block downward */
    }




}


@media (max-width: 480px) {

    .dropdown-item,
    .text-content,
    .text-content h4,
    .text-content p {
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 12px;
        z-index: 999;
        text-align: left;
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 14px;
    }

    .nav-left nav {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        padding-left: 6px;
        text-align: left;
    }

    .nav-left nav a,
    nav a {
        font-size: 14px;
        width: 100%;
        padding: 10px 8px;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        color: white;
        text-decoration: none;
    }

    .nav-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
        padding-left: 6px;
        text-align: left;
    }

    .nav-right a {
        font-size: 14px;
        width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .create-account {
        text-align: left;
        padding: 8px;
        border-radius: 8px;
    }

    .nav-link {
        padding: 10px 8px;
        font-size: 14px;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        color: rgb(168, 163, 163);
    }

    .dropdown-container {
        width: 100%;
        max-height: 50vh;
        overflow-y: auto;

    }

    .dropdown-container::-webkit-scrollbar {
        width: 4px;
    }

    .dropdown-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1 !important;
        pointer-events: auto;
        transform: none;
        width: 100%;
        padding: 15px 8px;
        background-color: #111;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 8px;
        text-align: left;
    }

    .dropdown-row {
        flex-direction: column;
        gap: 20px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 12px;
        padding-left: 0 !important;
        margin-left: 0 !important;

        text-align: left !important;
    }

    .text-content {
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .text-content h4 {
        font-size: 13px;
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
        display: block;
    }

    .text-content p {
        font-size: 11.5px;
        text-align: left;
    }


    .icon-small img {
        width: 13px;
        height: 13px;
    }

    .dropdown-item:hover .text-content h4 {
        color: #22c55e;
    }

    /* --- LEARN DROPDOWN ONLY --- */
    .learn-dropdown {
        gap: 2px !important;
        padding: 10px 6px !important;
        text-align: left;
    }

    .learn-dropdown .dropdown-row {
        gap: 2px !important;
    }

    .learn-dropdown .dropdown-item {
        gap: 2px !important;
        padding-left: 4px;
        text-align: left;
    }

    .learn-dropdown .text-content h4 {
        font-size: 13px;
        text-align: left;
    }

    .icon.icon-red,
    .icon.icon-brown {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .icon.icon-red img,
    .icon.icon-brown img {
        width: 17px;
        height: 17px;
        object-fit: contain;
        display: block;
    }

    .btn-login,
    .btn-create-account {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 13.5px;
        font-weight: 600;
        padding: 10px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-login {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-create-account {
        background-color: #ff8c00;
        color: white;
        border: none;
    }

    .btn-login:hover {
        background-color: white;
        color: black;
    }

    .btn-create-account:hover {
        opacity: 0.9;
    }

    .btn-login,
    .btn-create-account {
        display: block;
        width: 100%;
        text-align: center;
        /* ✅ center the text */
        font-size: 13.5px;
        font-weight: 600;
        padding: 10px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-login {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-create-account {
        background-color: #ff8c00;
        color: white;
        border: none;
    }

    .btn-login:hover {
        background-color: white;
        color: black;
    }

    .btn-create-account:hover {
        opacity: 0.9;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 16px;
        text-align: left;
    }

    .mobile-menu-wrapper {
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100%;
    }

}

@media (max-width: 380px) {

    .navbar {
        padding: 16px 10px;
    }

    .nav-left nav a,
    nav a,
    .nav-right a,
    .nav-link {
        font-size: 13px;
        padding: 8px 6px;
    }

    .text-content h4 {
        font-size: 12.5px;
    }

    .text-content p {
        font-size: 11px;
    }

    .icon-small img {
        width: 12px;
        height: 12px;
    }

    .icon.icon-red,
    .icon.icon-brown {
        width: 24px;
        height: 24px;
    }

    .icon.icon-red img,
    .icon.icon-brown img {
        width: 15px;
        height: 15px;
    }





    .btn-login,
    .btn-create-account {
        font-size: 12.5px;
        padding: 8px;
        text-align: center;
        /* ✅ Center text */
        width: 100%;
        /* ✅ Full width for consistent alignment */
        display: block;
        /* Ensures block-level behavior */
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* ✅ Center buttons if they’re not full-width */
        gap: 6px;
        margin-top: 12px;
    }

    .dropdown-menu {
        gap: 16px;
        padding: 12px 6px;
    }

    .dropdown-item {
        gap: 10px;
    }

    .learn-dropdown .dropdown-item {
        gap: 1px !important;
        padding-left: 2px;
    }

    .learn-dropdown .text-content h4 {
        font-size: 12.5px;
    }

    .mobile-menu-wrapper {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

}

@media (max-width: 320px) {

    .navbar {
        padding: 14px 8px;
    }

    .nav-left nav a,
    nav a,
    .nav-right a,
    .nav-link {
        font-size: 12px;
        padding: 7px 5px;
    }

    .text-content h4 {
        font-size: 11.5px;
    }

    .text-content p {
        font-size: 10.5px;
    }

    .icon-small img {
        width: 11px;
        height: 11px;
    }

    .icon.icon-red,
    .icon.icon-brown {
        width: 22px;
        height: 22px;
    }

    .icon.icon-red img,
    .icon.icon-brown img {
        width: 14px;
        height: 14px;
    }

    .mobile-menu-wrapper .icon img {
        width: 40px;
        height: 40px;
    }

    .btn-login,
    .btn-create-account {
        font-size: 12px;
        padding: 7px;
        text-align: center;
        /* ✅ centers text inside the button */
        display: block;
        width: 100%;
    }

    .auth-buttons {
        gap: 5px;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* ✅ centers buttons horizontally if width is less than 100% */
    }

    .dropdown-menu {
        gap: 14px;
        padding: 10px 5px;
    }

    .dropdown-item {
        gap: 8px;
    }

    .learn-dropdown .dropdown-item {
        gap: 1px !important;
        padding-left: 2px;
    }

    .learn-dropdown .text-content h4 {
        font-size: 12px;
    }

    .mobile-menu-wrapper {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

}

/* Default: Show .mobile, hide .navbar */
.navbar {
    display: none;
}

.mobile {
    display: block;
}

/* Show .navbar on desktop (1024px and above) */
@media (min-width: 1024px) {
    .navbar {
        display: flex;
        /* or block depending on layout */
    }

    .mobile {
        display: none;
    }
}

@media (max-width: 1024px) {

    /* ========= MOBILE HEADER ========= */
    .mobile {
        background-color: #000;
        padding: 30px 24px;
        width: 100%;
        position: relative;
        z-index: 999;
    }

    .mobile.sticky {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .mobile.sticky.white {
        background-color: white !important;
        color: black;
    }

    .mobile.white {
        background-color: white !important;
    }

    /* ✅ Make logo text black when mobile is white */
    .mobile.white .logo,
    .mobile.sticky.white .logo {
        color: black !important;
    }

    /* Other white mode styling */
    .mobile.white .nav-left nav a,
    .mobile.white .nav-right a,
    .mobile.white .nav-link,
    .mobile.white .menu-toggle,
    .mobile.white .mobile-menu,
    .mobile.white .mobile-menu a,
    .mobile.white .mobile-menu span,
    .mobile.white .mobile-menu svg,
    .mobile.white .mobile-menu h4,
    .mobile.white .mobile-menu p {
        color: white !important;
        fill: black !important;
    }

    /* ✅ Menu background */
    .mobile.white .mobile-menu {
        background-color: #111;
    }

    /* ✅ Burger icon bars */
    .mobile.white .menu-toggle .bar {
        background-color: black !important;
    }

    /* ========= TOGGLE ICON ========= */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 36px;
        height: 28px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        gap: 6px;
        z-index: 999;
    }

    .bar {
        height: 4px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .bar-1 {
        width: 100%;
    }

    .bar-2 {
        width: 80%;
    }

    .bar-3 {
        width: 50%;
    }

    .menu-toggle.open .bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
        width: 100%;
    }

    .menu-toggle.open .bar-2 {
        opacity: 0;
    }

    .menu-toggle.open .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 100%;
    }

    /* ========= NAV CONTAINER ========= */
    .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        height: 34px;
    }

    .flag-dropdown {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .flag-icon {
        height: 22px;
        width: 30px;
        object-fit: cover;
        border-radius: 3px;
    }

    .dropdown-arrow {
        color: white;
        font-size: 14px;
    }

    .mobile-menu-wrapper {
        position: absolute;
        top: 80px;
        /* ✅ set to height of your header */
        left: 0;
        width: 100%;
        max-height: calc(100vh - 80px);
        /* ✅ limit it to viewport - header */
        overflow-y: auto;
        /* ✅ scroll vertically inside */
        background-color: #111;
        z-index: 998;
        font-size: 15px;
        padding: 20px 16px;
        display: none;
        transition: height 0.7s ease, padding 0.4s ease;
    }

    .mobile-menu-wrapper.show {
        display: block;
    }

    .mobile-menu {
        padding: 24px;
        font-size: 16px;
        min-height: 110%;
        /* ✅ stretch full if needed */
    }
}

.no-scroll {
    overflow: hidden;
}


@media (max-width: 480px) {

    /* ========= MOBILE HEADER ========= */
    .mobile {
        background-color: #000;
        padding: 15px 12px;
        /* reduced padding */
        /* smaller padding */
        width: 100%;
        position: relative;
        z-index: 999;
    }

    .mobile.sticky {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .mobile.sticky.white {
        background-color: white !important;
        color: black;
    }

    .mobile.white {
        background-color: white !important;
    }

    /* ✅ Make logo text black when mobile is white */
    .mobile.white .logo,
    .mobile.sticky.white .logo {
        color: black !important;
    }

    /* Other white mode styling */
    .mobile.white .nav-left nav a,
    .mobile.white .nav-right a,
    .mobile.white .nav-link,
    .mobile.white .menu-toggle,
    .mobile.white .mobile-menu,
    .mobile.white .mobile-menu a,
    .mobile.white .mobile-menu span,
    .mobile.white .mobile-menu svg,
    .mobile.white .mobile-menu h4,
    .mobile.white .mobile-menu p {
        color: white !important;
        fill: black !important;
    }

    /* ✅ Menu background */
    .mobile.white .mobile-menu {
        background-color: #111;
    }

    /* ✅ Burger icon bars */
    .mobile.white .menu-toggle .bar {
        background-color: black !important;
    }

    /* ========= TOGGLE ICON ========= */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 25px;
        height: 22px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        gap: 5px;
        z-index: 999;
    }

    .bar {
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .bar-1 {
        width: 100%;
    }

    .bar-2 {
        width: 70%;
    }

    .bar-3 {
        width: 40%;
    }

    .menu-toggle.open .bar-1 {
        transform: rotate(45deg) translate(4px, 4px);
        width: 100%;
    }

    .menu-toggle.open .bar-2 {
        opacity: 0;
    }

    .menu-toggle.open .bar-3 {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 100%;
    }

    /* ========= NAV CONTAINER ========= */
    .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        height: 28px;
    }

    .flag-dropdown {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }

    .flag-icon {
        height: 18px;
        width: 26px;
        object-fit: cover;
        border-radius: 3px;
    }

    .dropdown-arrow {
        color: white;
        font-size: 12px;
    }

    /* ========= MOBILE MENU DROPDOWN ========= */
    .mobile-menu-wrapper {
        position: absolute;
        top: 70px;
        /* 👈 slightly less than 80px to give more scroll room */
        left: 0;
        width: 100%;
        height: 0;
        max-height: calc(100vh - 70px);
        /* 🔥 extra scroll height */
        overflow-y: auto;
        background-color: #111;
        transition: height 0.5s ease, padding 0.3s ease;
        z-index: 998;
        font-size: 15px;
        padding: 0 16px;
        display: none;
        -webkit-overflow-scrolling: touch;
        /* ✅ smooth on iOS */
        transition: height 0.7s ease, padding 0.4s ease;
    }

    .mobile-menu-wrapper.show {
        display: block;
    }

    .mobile-menu {
        padding: 24px;
        font-size: 16px;
        min-height: 130%;
        padding-bottom: 60px;
        /* ✅ ensures bottom items are not cut off */
    }
}



@media (max-width: 380px) {

    /* ========= MOBILE HEADER ========= */
    .mobile {
        background-color: #000;
        padding: 18px 14px;
        width: 100%;
        position: relative;
        z-index: 999;
    }

    .mobile.sticky {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }

    .mobile.sticky.white {
        background-color: white !important;
        color: black;
    }

    .mobile.white {
        background-color: white !important;
    }

    /* ✅ Make logo text black when mobile is white */
    .mobile.white .logo,
    .mobile.sticky.white .logo {
        color: black !important;
    }

    /* Other white mode styling */
    .mobile.white .nav-left nav a,
    .mobile.white .nav-right a,
    .mobile.white .nav-link,
    .mobile.white .menu-toggle,
    .mobile.white .mobile-menu,
    .mobile.white .mobile-menu a,
    .mobile.white .mobile-menu span,
    .mobile.white .mobile-menu svg,
    .mobile.white .mobile-menu h4,
    .mobile.white .mobile-menu p {
        color: white !important;
        fill: black !important;
    }

    /* ✅ Menu background */
    .mobile.white .mobile-menu {
        background-color: #111;
    }

    /* ✅ Burger icon bars */
    .mobile.white .menu-toggle .bar {
        background-color: black !important;
    }

    /* ========= TOGGLE ICON ========= */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 26px;
        height: 22px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        gap: 4px;
        z-index: 999;
    }

    .bar {
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .bar-1 {
        width: 100%;
    }

    .bar-2 {
        width: 70%;
    }

    .bar-3 {
        width: 40%;
    }

    .menu-toggle.open .bar-1 {
        transform: rotate(45deg) translate(3.5px, 3.5px);
        width: 100%;
    }

    .menu-toggle.open .bar-2 {
        opacity: 0;
    }

    .menu-toggle.open .bar-3 {
        transform: rotate(-45deg) translate(3.5px, -3.5px);
        width: 100%;
    }

    /* ========= NAV WRAPPER ========= */
    .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        height: 26px;
    }

    .flag-dropdown {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }

    .flag-icon {
        height: 16px;
        width: 24px;
        object-fit: cover;
        border-radius: 3px;
    }

    .dropdown-arrow {
        color: white;
        font-size: 11px;
    }

    .mobile-menu-wrapper {
        position: absolute;
        top: 100%;
        /* 👈 starts right below the header container */
        left: 0;
        width: 100%;
        height: 0;
        overflow-y: auto;
        /* ✅ allows scroll if menu is long */
        background-color: #111;
        transition: height 0.4s ease-in-out, padding 0.3s ease;
        z-index: 998;
        font-size: 14px;
        padding: 0 14px;
        -webkit-overflow-scrolling: touch;
        /* ✅ iOS smooth scrolling */
        max-height: calc(100vh - 70px);
        /* ✅ prevent overflow beyond screen */
        transition: height 0.7s ease, padding 0.4s ease;
    }

    .mobile-menu-wrapper.show {
        height: auto;
        /* ✅ allow it to expand to fit content */
        padding: 20px 14px 60px;
        /* ✅ extra bottom padding to avoid cutoff */
    }
}

@media (max-width: 330px) {

    /* ====== MOBILE HEADER ====== */
    .mobile {
        background-color: #000;
        padding: 16px 12px;
        width: 100%;
        position: relative;
        z-index: 999;
    }

    .mobile.sticky {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    }

    .mobile.sticky.white {
        background-color: white !important;
        color: black;
    }

    .mobile.white {
        background-color: white !important;
    }

    /* ✅ Make logo text black when mobile is white */
    .mobile.white .logo,
    .mobile.sticky.white .logo {
        color: black !important;
    }

    /* Other white mode styling */
    .mobile.white .nav-left nav a,
    .mobile.white .nav-right a,
    .mobile.white .nav-link,
    .mobile.white .menu-toggle,
    .mobile.white .mobile-menu,
    .mobile.white .mobile-menu a,
    .mobile.white .mobile-menu span,
    .mobile.white .mobile-menu svg,
    .mobile.white .mobile-menu h4,
    .mobile.white .mobile-menu p {
        color: white !important;
        fill: black !important;
    }

    /* ✅ Menu background */
    .mobile.white .mobile-menu {
        background-color: #111;
    }

    /* ✅ Burger icon bars */
    .mobile.white .menu-toggle .bar {
        background-color: black !important;
    }

    .mobile-menu-wrapper .icon img {
        width: 40px;
        height: 40px;
    }

    /* ====== TOGGLE ICON (HAMBURGER) ====== */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 24px;
        height: 20px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        gap: 3px;
        z-index: 999;
    }

    .bar {
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .bar-1 {
        width: 100%;
    }

    .bar-2 {
        width: 65%;
    }

    .bar-3 {
        width: 35%;
    }

    .menu-toggle.open .bar-1 {
        transform: rotate(45deg) translate(3px, 3px);
        width: 100%;
    }

    .menu-toggle.open .bar-2 {
        opacity: 0;
    }

    .menu-toggle.open .bar-3 {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 100%;
    }

    /* ====== LOGO & FLAG ====== */
    .logo-img {
        height: 24px;
    }

    .flag-dropdown {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
    }

    .flag-icon {
        height: 14px;
        width: 22px;
        object-fit: cover;
        border-radius: 2px;
    }

    .dropdown-arrow {
        color: white;
        font-size: 10px;
    }

    /* ====== MOBILE MENU ====== */
    .mobile-menu-wrapper {
        position: absolute;
        top: 100%;
        /* 👈 starts just below the header */
        left: 0;
        width: 100%;
        height: 0;
        overflow-y: auto;
        /* ✅ scroll when content is tall */
        background-color: #111;
        transition: height 0.4s ease-in-out, padding 0.3s ease;
        z-index: 998;
        font-size: 13px;
        padding: 0 12px;
        max-height: calc(100vh - 60px);
        /* ✅ limit height to avoid screen overflow */
        -webkit-overflow-scrolling: touch;
        /* ✅ smooth iOS scroll */
        transition: height 0.7s ease, padding 0.4s ease;
    }

    .mobile-menu-wrapper.show {
        height: auto;
        /* ✅ expands to fit content */
        padding: 20px 12px 60px;
        /* ✅ extra space at bottom */
    }
}

/* ====== HERO SECTION / VIEW AVAILABLE PROP ====== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: url('assets/hero_1.avif') no-repeat center center / cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-center {
    position: relative;
    max-width: 850px;
    z-index: 2;
    margin-top: 30px;
}

.hero-center h1 {
    font-size: clamp(30px, 5vw, 48px);
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    line-height: 1.2;
}

.hero-center .text-green {
    background: linear-gradient(180deg, #fff 7.29%, #ff8c00 82.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-center p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    padding: 0 20px;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.primary-btn {
    background-color: #ff8c00;
    color: white;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.primary-btn:hover {
    background-color: #e67c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
}

/* Responsive Display Classes */
.mobile-show {
    display: none;
}

.desktop-show {
    display: inline-flex;
}

/* Tablet Styles */
@media (max-width: 1028px) {
    .hero {
        height: 70vh;
        padding: 60px 20px;
    }

    .hero-center {
        margin-top: 0;
    }

    .hero-center h1 {
        font-size: clamp(28px, 4vw, 38px);
        margin-bottom: 16px;
    }

    .hero-center p {
        font-size: clamp(16px, 2.5vw, 18px);
        padding: 0 10px;
        margin-bottom: 35px;
    }

    .primary-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-show {
        display: inline-flex;
    }

    .desktop-show {
        display: none;
    }

    .hero {
        height: 80vh;
        padding: 40px 16px;
    }

    .hero-center h1 {
        font-size: clamp(26px, 6vw, 32px);
        margin-bottom: 16px;
    }

    .hero-center p {
        font-size: clamp(14px, 3vw, 16px);
        padding: 0;
        margin-bottom: 30px;
    }

    .primary-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 35px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero {
        height: 85vh;
        padding: 32px 14px;
    }

    .hero-center h1 {
        font-size: clamp(24px, 7vw, 28px);
        margin-bottom: 14px;
    }

    .hero-center p {
        font-size: clamp(13px, 3.5vw, 15px);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .primary-btn {
        padding: 11px 20px;
        font-size: 13px;
        border-radius: 32px;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .hero {
        height: 90vh;
        padding: 28px 12px;
    }

    .hero-center h1 {
        font-size: clamp(22px, 8vw, 26px);
        margin-bottom: 12px;
    }

    .hero-center p {
        font-size: clamp(12px, 4vw, 14px);
        margin-bottom: 20px;
    }

    .primary-btn {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 30px;
    }
}


/* ====== THE LISTING / HOUSE DISPLAY ====== */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

.ezirent-wrapper {
    display: flex;
    padding: 80px 50px;
    font-family: 'Josefin Sans', sans-serif;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: #1a1a1a;
    gap: 100px;
    overflow-x: hidden;
    margin-top: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.ezirent-left {
    flex: 0 0 420px;
    margin-left: 40px;
    margin-top: 20px;
}

.ezirent-left h4 {
    color: #ff7b54;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ezirent-left h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ezirent-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    font-weight: 400;
}

.ezirent-carousel {
    flex: 1;
    display: flex;
    overflow-x: auto;
    gap: 24px;
    margin-right: -40px;
    padding: 8px 0 20px 0;
    scroll-behavior: smooth;
}

.ezirent-carousel::-webkit-scrollbar {
    height: 6px;
}

.ezirent-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7b54, #ffb347);
    border-radius: 12px;
}

.ezirent-carousel::-webkit-scrollbar-track {
    background: #f1f3f8;
    border-radius: 12px;
}

.property-card {
    flex: 0 0 320px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    font-family: 'Josefin Sans', sans-serif;
    color: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.property-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.property-card:hover img {
    transform: scale(1.02);
}

.property-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.property-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 6px;
    font-weight: 500;
}

.location i {
    font-size: 18px;
    color: #ff7b54;
}

.property-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.meta {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.meta .dot {
    font-size: 12px;
    color: #ff7b54;
    font-weight: bold;
}

.shared {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 6px;
    font-weight: 500;
    background: #f8faff;
    padding: 6px 12px;
    border-radius: 20px;
}

.shared i {
    font-size: 16px;
    color: #ff7b54;
}

.price {
    margin-top: 0;
    padding-top: 0;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.price strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
}

button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Arrow buttons styling */
#arrowLeft,
#arrowRight {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 72, 218, 0.15);
}

#arrowLeft:hover,
#arrowRight:hover {
    background-color: #2E48DA;
    transform: scale(1.1);
}

#arrowLeft:hover svg path,
#arrowRight:hover svg path {
    stroke: #ffffff;
}

/* Centered Explore Properties Button */
.explore-properties-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.explore-properties-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF7A00, #FFB347);
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease-in-out;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.explore-properties-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
    background: linear-gradient(135deg, #FF6600, #FFA94D);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ezirent-wrapper {
        gap: 80px;
        padding: 60px 40px;
    }

    .ezirent-left {
        flex: 0 0 380px;
        margin-left: 20px;
    }
}

@media (max-width: 1028px) {
    .ezirent-wrapper {
        flex-direction: column;
        padding: 50px 30px;
        gap: 60px;
        margin-top: 20px;
    }

    .ezirent-left {
        margin-left: 0;
        margin-top: 0;
        flex: none;
    }

    .ezirent-left h1 {
        font-size: 36px;
    }

    .ezirent-left h4 {
        font-size: 14px;
    }

    .ezirent-left p {
        font-size: 17px;
    }

    .ezirent-carousel {
        margin-right: 0;
        gap: 20px;
    }

    .property-card {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .property-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .ezirent-wrapper {
        padding: 40px 20px;
        gap: 40px;
    }

    .ezirent-left h1 {
        font-size: 32px;
    }

    .ezirent-left p {
        font-size: 16px;
    }

    .property-card {
        flex: 0 0 280px;
        max-width: 280px;
        padding: 16px;
    }

    .property-card img {
        height: 200px;
    }

    .property-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ezirent-wrapper {
        padding: 30px 16px;
        gap: 30px;
        border-radius: 16px;
    }

    .ezirent-left h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .ezirent-left h4 {
        font-size: 13px;
    }

    .ezirent-left p {
        font-size: 15px;
    }

    .property-card {
        flex: 0 0 260px;
        max-width: 260px;
        padding: 14px;
    }

    .property-card img {
        height: 180px;
    }

    .property-card h3 {
        font-size: 17px;
    }

    .location,
    .meta,
    .shared,
    .price {
        font-size: 13px;
    }

    .price strong {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .ezirent-wrapper {
        padding: 25px 12px;
        gap: 25px;
    }

    .ezirent-left h1 {
        font-size: 26px;
    }

    .ezirent-left p {
        font-size: 14px;
    }

    .property-card {
        flex: 0 0 240px;
        max-width: 240px;
        padding: 12px;
    }

    .property-card img {
        height: 160px;
    }

    .property-card h3 {
        font-size: 16px;
    }

    .location,
    .meta,
    .shared,
    .price {
        font-size: 12px;
    }

    .price strong {
        font-size: 15px;
    }
}

@media (max-width: 330px) {
    .ezirent-wrapper {
        padding: 20px 10px;
        gap: 20px;
        border-radius: 12px;
    }

    .ezirent-left h1 {
        font-size: 24px;
    }

    .ezirent-left h4 {
        font-size: 12px;
    }

    .ezirent-left p {
        font-size: 13px;
    }

    .property-card {
        flex: 0 0 220px;
        max-width: 220px;
        padding: 10px;
    }

    .property-card img {
        height: 140px;
    }

    .property-card h3 {
        font-size: 15px;
    }

    .location,
    .meta,
    .shared,
    .price {
        font-size: 11px;
    }

    .price strong {
        font-size: 14px;
    }
}
/* ====== PRODUCT SECTION / MULTI PHONE DISPLAY ====== */
.product-section {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    padding: 40px 20px;
    background: #ffffff;
    margin-top: 40px;
}

.subtitle {
    color: #ffb347;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title {
    font-size: 45px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 40px;
}

.phone-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.phone-box {
    width: 450px;
    height: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;

}



.phone-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


@media (max-width: 1028px) {
    .product-section {
        padding: 30px 16px;
        margin-top: 30px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .phone-container {
        gap: 24px;
    }

    .phone-box {
        width: 360px;
        height: 500px;
        border-radius: 16px;
    }

    .phone-box img {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 25px 12px;
        margin-top: 25px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .phone-container {
        flex-direction: row;
        /* Keep them in a row */
        justify-content: center;
        gap: 12px;
        /* Smaller gap to fit both */
        flex-wrap: nowrap;
        /* Prevent wrapping */
    }

    .phone-box {
        width: 45%;
        height: 280px;
        border-radius: 14px;
    }

    .phone-box img {
        border-radius: 14px;
    }
}

@media (max-width: 380px) {
    .product-section {
        padding: 20px 10px;
        margin-top: 20px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .phone-container {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .phone-box {
        width: 44%;
        height: 240px;
        border-radius: 12px;
    }

    .phone-box img {
        border-radius: 12px;
    }
}

@media (max-width: 330px) {
    .product-section {
        padding: 16px 8px;
        margin-top: 18px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .phone-container {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .phone-box {
        width: 43%;
        height: 220px;
        border-radius: 10px;
    }

    .phone-box img {
        border-radius: 10px;
    }
}

/* ====== YEP ====== */
/* Scoped to spleet-products-section */

.ezirent-products-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    font-family: 'Josefin Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 60px 32px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 64px;
    box-sizing: border-box;
    margin-top: 70px;
    margin-bottom: 90px;
    min-height: 800px;
    position: relative;
    overflow: hidden;
}

.ezirent-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 179, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 43, 148, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Left Content: Header and tabs */
.ezirent-products-section .left-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: start;
    position: relative;
    z-index: 1;
}

.ezirent-products-section .small-header {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb347;
    position: relative;
}

.ezirent-products-section .small-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffb347, #ff8c00);
    border-radius: 1px;
}

.ezirent-products-section .large-header {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 350px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Tabs container */
.ezirent-products-section .tabs {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ezirent-products-section .tabs::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    border-radius: 46px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ezirent-products-section .tabs[data-active="property-owners"]::before {
    transform: translateX(100%);
}

/* Enhanced tab styling */
.ezirent-products-section .tab {
    position: relative;
    padding: 12px 24px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 46px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.ezirent-products-section .tab.active {
    color: #000000;
    text-shadow: none;
}

.ezirent-products-section .tab:not(.active) {
    color: #cccccc;
}

.ezirent-products-section .tab:not(.active):hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Cards container */
.ezirent-products-section .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Enhanced card styling */
.ezirent-products-section .card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ezirent-products-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.05) 0%, rgba(78, 43, 148, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ezirent-products-section .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 179, 71, 0.2);
}

.ezirent-products-section .card:hover::before {
    opacity: 1;
}

/* Card image */
.ezirent-products-section .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ezirent-products-section .card:hover img {
    transform: scale(1.05);
}

/* Card content area */
.ezirent-products-section .card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Enhanced icon wrapper */
.ezirent-products-section .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ezirent-products-section .icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, currentColor, transparent);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.ezirent-products-section .card:hover .icon-wrapper::before {
    opacity: 0.2;
}

/* Icon colors */
.ezirent-products-section .icon-marketplace {
    background: linear-gradient(135deg, #ff460a, #ff6b35);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 70, 10, 0.3);
}

.ezirent-products-section .icon-rentnow {
    background: linear-gradient(135deg, #4e2b94, #6a4bb4);
    color: white;
    box-shadow: 0 4px 16px rgba(78, 43, 148, 0.3);
}

/* Title and subtitle container */
.ezirent-products-section .title-subtitle {
    margin-bottom: 20px;
}

.ezirent-products-section .card-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ezirent-products-section .card-subtitle {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card description paragraph */
.ezirent-products-section .card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 28px;
    font-weight: 400;
}

/* Enhanced card link */
.ezirent-products-section .card-link {
    font-weight: 600;
    font-size: 15px;
    color: #ffb347;
    text-decoration: none;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 179, 71, 0.1);
    border: 1px solid rgba(255, 179, 71, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.ezirent-products-section .card-link:hover {
    background: rgba(255, 179, 71, 0.2);
    border-color: rgba(255, 179, 71, 0.4);
    transform: translateX(4px);
    color: #fff;
}

/* Arrow for link */
.ezirent-products-section .card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ezirent-products-section .card-link:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ezirent-products-section {
        grid-template-columns: 1fr 2fr;
        gap: 48px;
    }
}

@media (max-width: 1028px) {
    .ezirent-products-section {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 48px;
        margin-top: 60px;
        margin-bottom: 70px;
        min-height: auto;
    }

    .ezirent-products-section .left-content {
        align-items: flex-start;
        text-align: left;
        gap: 32px;
    }

    .ezirent-products-section .large-header {
        font-size: 28px;
        max-width: 100%;
    }

    .ezirent-products-section .tabs {
        max-width: 400px;
    }

    .ezirent-products-section .cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .ezirent-products-section {
        padding: 40px 24px;
        gap: 40px;
    }

    .ezirent-products-section .tabs {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
        gap: 12px;
        padding: 6px;
    }

    .ezirent-products-section .tabs::before {
        width: calc(50% - 6px);
        height: calc(100% - 12px);
        transform: translateX(0);
    }

    .ezirent-products-section .tabs[data-active="property-owners"]::before {
        transform: translateX(100%);
    }

    .ezirent-products-section .tab {
        padding: 14px 16px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }

    .ezirent-products-section .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .ezirent-products-section {
        padding: 32px 20px;
        gap: 32px;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .ezirent-products-section .small-header {
        font-size: 13px;
    }

    .ezirent-products-section .large-header {
        font-size: 24px;
        line-height: 1.3;
    }

    .ezirent-products-section .tabs {
        gap: 8px;
        padding: 4px;
    }

    .ezirent-products-section .tab {
        padding: 12px 14px;
        font-size: 12px;
        flex: 1;
        text-align: center;
    }

    .ezirent-products-section .card-content {
        padding: 24px;
    }

    .ezirent-products-section .icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .ezirent-products-section .card img {
        height: 200px;
    }

    .ezirent-products-section .card-title {
        font-size: 18px;
    }

    .ezirent-products-section .card-description {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .ezirent-products-section {
        padding: 24px 16px;
        gap: 28px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .ezirent-products-section .small-header {
        font-size: 12px;
    }

    .ezirent-products-section .large-header {
        font-size: 22px;
    }

    .ezirent-products-section .tabs {
        gap: 6px;
        padding: 3px;
    }

    .ezirent-products-section .tab {
        padding: 10px 12px;
        font-size: 11px;
        flex: 1;
        text-align: center;
    }

    .ezirent-products-section .card-title {
        font-size: 17px;
    }

    .ezirent-products-section .card-description {
        font-size: 13px;
    }

    .ezirent-products-section .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .ezirent-products-section .card img {
        height: 180px;
    }
}

@media (max-width: 330px) {
    .ezirent-products-section {
        padding: 20px 12px;
        gap: 24px;
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .ezirent-products-section .large-header {
        font-size: 20px;
    }

    .ezirent-products-section .tabs {
        gap: 4px;
        padding: 2px;
    }

    .ezirent-products-section .tab {
        padding: 8px 10px;
        font-size: 10px;
        flex: 1;
        text-align: center;
    }

    .ezirent-products-section .card-title {
        font-size: 16px;
    }

    .ezirent-products-section .card-description {
        font-size: 12px;
    }

    .ezirent-products-section .icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .ezirent-products-section .card img {
        height: 160px;
    }
}

.why-ezirent {
    font-family: 'Josefin Sans', sans-serif;
    color: #000000;
    padding: 40px 20px;

    margin-top: 60px;
}

.section-subtitle {
    color: #ffb347;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.features {
    display: flex;
    gap: 60px;
    /* Increased from 40px */
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.feature {
    width: 300px;
    /* Increased from 240px */
}

.icon-container {
    width: 70px;
    /* Increased from 50px */
    height: 70px;
    /* Increased from 50px */
    border-radius: 20px;
    /* Slightly increased */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* Increased from 15px */
}

.icon-container img {
    width: 32px;
    /* Increased from 24px */
    height: 32px;
    /* Increased from 24px */
}

.icon-container.red {
    background-color: #f6531b;
}

.icon-container.blue {
    background-color: #3b4bd4;
}

.icon-container.purple {
    background-color: #8f2eff;
}

.icon-container.orange {
    background-color: #f29e1f;
}

.feature h3 {
    font-size: 22px;
    /* Increased from 16px */
    font-weight: 700;
    margin-bottom: 12px;
    /* Slightly increased */
}

.feature p {
    font-size: 15px;
    /* Increased from 13px */
    color: #4f4f4f;
    line-height: 1.7;
    /* Slightly increased */
}

@media (max-width: 1028px) {
    .why-ezirent {
        padding: 32px 16px;
        margin-top: 50px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 32px 20px;
        /* row gap, column gap */
    }

    .feature {
        flex: 0 0 calc((100% - 40px) / 3);
        /* 3 columns with 20px gap between them */
        box-sizing: border-box;
    }

    /* Force the 4th item to a new row and full width */
    .feature:nth-child(4) {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .feature:nth-child(4) .feature-text {
        max-width: 500px;
        /* ✅ Effectively limits line width */
        width: 100%;
        text-align: left;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon-container img {
        width: 28px;
        height: 28px;
    }

    .feature h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature p {
        font-size: 14px;
        line-height: 1.6;
    }

}

@media (max-width: 480px) {
    .why-ezirent {
        padding: 24px 12px;
        margin-top: 40px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .features {
        display: flex;
        flex-direction: column;
        /* ✅ Stack vertically */
        gap: 24px;
        /* Spacing between items */
        align-items: flex-start;
    }

    .feature {
        width: 100%;
        /* ✅ Full width on mobile */
        max-width: 100%;
        text-align: left;
    }

    .feature .feature-text {
        max-width: 100%;
        text-align: left;
    }

    .icon-container {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .icon-container img {
        width: 24px;
        height: 24px;
    }

    .feature h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 380px) {
    .why-ezirent {
        padding: 20px 10px;
        margin-top: 30px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .feature {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .feature .feature-text {
        max-width: 100%;
        text-align: left;
    }

    .icon-container {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .icon-container img {
        width: 22px;
        height: 22px;
    }

    .feature h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 330px) {
    .why-ezirent {
        padding: 18px 8px;
        margin-top: 24px;
    }

    .section-subtitle {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .section-title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .features {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .feature {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .feature .feature-text {
        max-width: 100%;
        text-align: left;
    }

    .icon-container {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        margin-bottom: 8px;
    }

    .icon-container img {
        width: 20px;
        height: 20px;
    }

    .feature h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .feature p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* ====== TESTIMONIAL / SMILE FACE ====== */
.testimonial-wrapper {
    width: 100%;
    margin: 0;
    padding: 60px 0;
    /* keeps top and bottom spacing only */
}

.testimonial-section {
    display: flex;
    background-color: #000;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    padding: 100px 150px;
    align-items: center;
    justify-content: space-between;
}

.testimonial-content {
    max-width: 500px;
}

.label {
    color: #ffb347;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.titles {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px;
    color: white;
}

.feedback {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.indicators {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}



.dot.active {
    background: #fff;
}

.customer .name {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.customer .role {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-image img {
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 1028px) {
    .testimonial-section {
        display: flex;
        flex-direction: column-reverse;
        padding: 60px 25px;
        gap: 40px;
        width: 100%;
        text-align: left;
        align-items: flex-start;
        /* Important: prevents centering */
    }

    .testimonial-image {
        width: 100%;
    }

    .testimonial-image img {
        width: 100%;
        height: 550px;
        border-radius: 0;
        margin: 0 auto;
        display: block;
        object-fit: cover;
    }

    .testimonial-content {
        width: 100%;
        max-width: 600px;
        /* Optional: limits width for readability */
        text-align: left;
        margin: 0;
        /* Removes any default centering */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Ensures children are also left-aligned */
    }

    .titles,
    .feedback,
    .label,
    .customer,
    .indicators {
        text-align: left;
        width: 100%;
        align-self: flex-start;
    }

    .indicators {
        margin: 20px 0;
        display: flex;
        gap: 8px;
        justify-content: flex-start;
        /* Align dots to the left */
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
    }

    .dot.active {
        background-color: #ffb347;
    }

    .customer .name {
        font-size: 17px;
    }

    .customer .role {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        flex-direction: column-reverse;
        padding: 40px 16px;
        gap: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .testimonial-image {
        width: 100%;
    }

    .testimonial-image img {
        width: 100%;
        height: 320px;
        /* Smaller height for mobile */
        object-fit: cover;
        display: block;
        margin: 0 auto;
        border-radius: 0;
    }

    .testimonial-content {
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .titles {
        font-size: 24px;
    }

    .feedback {
        font-size: 14px;
        line-height: 1.6;
    }

    .indicators {
        margin: 16px 0;
        gap: 6px;
        justify-content: flex-start;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .customer .name {
        font-size: 16px;
    }

    .customer .role {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .testimonial-section {
        padding: 32px 14px;
        gap: 28px;
        align-items: flex-start;
        text-align: left;
    }

    .testimonial-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .testimonial-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .label {
        font-size: 12px;
    }

    .titles {
        font-size: 22px;
    }

    .feedback {
        font-size: 13px;
        line-height: 1.5;
    }

    .indicators {
        margin: 14px 0;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .customer .name {
        font-size: 15px;
    }

    .customer .role {
        font-size: 10px;
    }
}

@media (max-width: 330px) {
    .testimonial-section {
        padding: 28px 12px;
        gap: 24px;
    }

    .testimonial-image img {
        height: 250px;
    }

    .titles {
        font-size: 20px;
    }

    .feedback {
        font-size: 12.5px;
    }

    .label,
    .customer .role {
        font-size: 10px;
    }

    .customer .name {
        font-size: 14px;
    }
}


/* ====== FAQ'S ====== */
.faq-section {
    width: 90%;
    margin: 0 auto;
    font-family: 'Josefin Sans', sans-serif;
    color: #111827;
    padding: 100px 60px;
    box-sizing: border-box;
}

.faq-header {
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    color: #ffb347;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px;
}

.faq-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
}

.faq-button {
    background-color: #ff8c00;
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 999px;
    cursor: pointer;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.faq-button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.faq-items {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: #ff8c00;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

.faq-question-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question-container:hover {
    background: #f9fafb;
}

.faq-question {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.faq-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e3e4e7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-icon-circle svg {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-circle {
    background-color: #ff8c00;
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-circle svg path {
    stroke: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.faq-answer.expanded {
    max-height: 300px;
    padding: 25px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

hr {
    display: none;
}

@media (max-width: 1028px) {
    .faq-section {
        width: 100%;
        padding: 80px 25px;
    }

    .faq-description {
        font-size: 15px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-items {
        width: 100%;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-question-container {
        padding: 20px;
    }

    .faq-answer.expanded {
        padding: 20px;
    }

    .faq-icon-circle {
        width: 44px;
        height: 44px;
    }

    .faq-icon-circle svg {
        width: 10px;
        height: 7px;
    }

    .faq-button {
        padding: 12px 25px;
        font-size: 13px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        width: 100%;
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-label {
        font-size: 12px;
    }

    .faq-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .faq-button {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 40px;
    }

    .faq-items {
        width: 100%;
    }

    .faq-question-container {
        padding: 18px;
    }

    .faq-answer.expanded {
        padding: 18px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-icon-circle {
        width: 40px;
        height: 40px;
    }

    .faq-icon-circle svg {
        width: 10px;
        height: 7px;
    }
}

@media (max-width: 377px) {
    .faq-section {
        width: 100%;
        padding: 50px 15px;
    }

    .faq-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .faq-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .faq-button {
        padding: 8px 18px;
        font-size: 12px;
        margin-bottom: 30px;
    }

    .faq-items {
        width: 100%;
    }

    .faq-question-container {
        padding: 15px;
    }

    .faq-answer.expanded {
        padding: 15px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-icon-circle {
        width: 36px;
        height: 36px;
    }

    .faq-icon-circle svg {
        width: 9px;
        height: 6px;
    }
}


/* ====== FOOTER ====== */
.footer-container {
    font-family: 'Josefin Sans', sans-serif;
    background-color: #000;
    color: #fff;
    padding: 40px 40px 20px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-section {
    min-width: 0;
    width: 100%;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.footer-section ul li:hover {
    color: #ccc;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #fff;
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.social-icons a:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ====== RESPONSIVE STYLES ====== */
/* Large tablets and small laptops */
@media (max-width: 1028px) {
    .footer-container {
        padding: 35px 30px 20px;
    }

    .footer-content {
        gap: 35px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .social-icons img {
        width: 22px;
        height: 22px;
    }
}

/* Medium tablets */
@media (max-width: 768px) {
    .footer-container {
        padding: 30px 25px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .footer-section p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 12px;
        margin-top: 12px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }
}

/* Large mobile devices */
@media (max-width: 640px) {
    .footer-container {
        padding: 30px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 12px;
        margin-top: 15px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 20px;
        justify-content: center;
        text-align: center;
    }
}

/* Standard mobile devices */
@media (max-width: 480px) {
    .footer-container {
        padding: 30px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 15px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }

    .social-icons img {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 20px;
        justify-content: center;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 380px) {
    .footer-container {
        padding: 25px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-section p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 12px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .social-icons img {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
        justify-content: center;
        text-align: center;
    }
}

/* Very small mobile devices */
@media (max-width: 320px) {
    .footer-container {
        padding: 25px 12px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 6px;
        margin-top: 10px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
    }

    .social-icons img {
        width: 12px;
        height: 12px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
        justify-content: center;
        text-align: center;
    }
}