* {
    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 ====== */

  .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 h1 {
      font-size: 42px;
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 24px;
      color: #1a1a1a;
      letter-spacing: -0.5px;
      text-align: justify;
  }

  .ezirent-left h3 {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.4;
      margin: 0 0 20px;
      color: #4a4a4a;
      text-align: justify;
  }

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

  /* New CTA and Arrow Controls Container */
  .cta-controls-container {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-top: 30px;
      gap: 20px;
  }

  .explore-properties-btn {
      display: inline-block;
      background: linear-gradient(135deg, #FF7A00, #FFB347);
      color: white;
      padding: 12px 20px;
      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;
      white-space: nowrap;
      flex-shrink: 0;
      max-width: 220px;
  }

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

  .arrow-controls {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
  }

  .arrow-btn {
      width: 52px;
      height: 52px;
      background-color: #E6E9FB;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(46, 72, 218, 0.15);
      border: none;
  }

  .arrow-btn:hover {
      background-color: #2E48DA;
      transform: scale(1.1);
  }

  .arrow-btn:hover svg path {
      stroke: #ffffff;
  }

  .arrow-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
  }

  .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;
  }

  /* 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 h3 {
          font-size: 17px;
      }

      .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 h3 {
          font-size: 16px;
      }

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

      .cta-controls-container {
          flex-direction: column;
          align-items: center;
          gap: 20px;
      }

      .explore-properties-btn {
          max-width: 280px;
          width: auto;
          text-align: center;
      }

      .arrow-controls {
          justify-content: center;
      }

      .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 h3 {
          font-size: 15px;
      }

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

      .cta-controls-container {
          gap: 16px;
      }

      .explore-properties-btn {
          font-size: 0.9rem;
          padding: 10px 20px;
      }

      .arrow-btn {
          width: 48px;
          height: 48px;
      }

      .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 h3 {
          font-size: 14px;
      }

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

      .cta-controls-container {
          gap: 14px;
      }

      .explore-properties-btn {
          font-size: 0.85rem;
          padding: 9px 18px;
      }

      .arrow-btn {
          width: 44px;
          height: 44px;
      }

      .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 h3 {
          font-size: 13px;
      }

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

      .cta-controls-container {
          gap: 12px;
      }

      .explore-properties-btn {
          font-size: 0.8rem;
          padding: 8px 16px;
      }

      .arrow-btn {
          width: 40px;
          height: 40px;
      }

      .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 ezirent-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;
    }
}
.ezirent-products-section .card img {
    transition: opacity 0.3s ease-in-out;
}

@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;
    }
}

   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

   body {
       font-family: 'Inter', sans-serif;
       background: #000;
   }

   .testimonial-wrapper {
       width: 100%;
       min-height: 100vh;
       padding: 100px 0;
       background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
       position: relative;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .testimonial-wrapper::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background:
           radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
           radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
           radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
       pointer-events: none;
   }

   .testimonial-wrapper::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
       pointer-events: none;
   }

   .testimonial-section {
       display: flex;
       color: #fff;
       padding: 60px;
       align-items: center;
       justify-content: space-between;
       position: relative;
       z-index: 1;
       max-width: 1400px;
       width: 100%;
       gap: 80px;
   }

   .testimonial-content {
       flex: 1;
       max-width: 600px;
       opacity: 0;
       transform: translateX(-30px);
       animation: slideInLeft 1s ease-out 0.3s forwards;
   }

   .testimonial-image {
       flex: 0 0 auto;
       opacity: 0;
       transform: translateX(30px);
       animation: slideInRight 1s ease-out 0.6s forwards;
   }

   @keyframes slideInLeft {
       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   @keyframes slideInRight {
       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .label {
       color: #fb923c;
       font-weight: 600;
       font-size: 14px;
       letter-spacing: 3px;
       text-transform: uppercase;
       margin-bottom: 20px;
       position: relative;
       display: inline-block;
   }

   .label::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 0;
       width: 60px;
       height: 3px;
       background: linear-gradient(90deg, #fb923c, #f97316);
       border-radius: 2px;
   }

   .titles {
       font-size: 52px;
       font-weight: 700;
       margin: 0 0 30px;
       color: white;
       line-height: 1.1;
       background: linear-gradient(135deg, #fff 0%, #e5e7eb 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }

   .feedback {
       font-size: 20px;
       color: #d1d5db;
       line-height: 1.7;
       margin-bottom: 40px;
       font-weight: 400;
       position: relative;
       padding-left: 30px;
       text-align: justify;
       text-justify: inter-word;
   }

   .feedback::before {
       content: '"';
       position: absolute;
       left: 0;
       top: -15px;
       font-size: 60px;
       color: #fb923c;
       font-weight: 700;
       line-height: 1;
   }

   .indicators {
       display: flex;
       gap: 16px;
       margin-bottom: 40px;
       align-items: center;
   }

   .dot {
       width: 14px;
       height: 14px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.2);
       cursor: pointer;
       transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
       position: relative;
       border: 2px solid transparent;
   }

   .dot.active {
       background: linear-gradient(135deg, #fb923c, #f97316);
       transform: scale(1.3);
       box-shadow: 0 0 25px rgba(251, 146, 60, 0.6);
   }

   .dot:hover:not(.active) {
       transform: scale(1.1);
       background: rgba(255, 255, 255, 0.4);
   }

   .customer {
       display: flex;
       align-items: center;
       gap: 20px;
       margin-top: 20px;
   }

   .customer-avatar {
       width: 60px;
       height: 60px;
       border-radius: 50%;
       background: linear-gradient(135deg, #fb923c, #f97316);
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 700;
       font-size: 20px;
       color: #fff;
       box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
   }

   .customer-info .name {
       font-size: 22px;
       font-weight: 600;
       margin: 0 0 5px 0;
       color: #fff;
   }

   .customer-info .role {
       font-size: 14px;
       color: #9ca3af;
       margin: 0;
       text-transform: uppercase;
       letter-spacing: 1.5px;
       font-weight: 500;
   }

   .testimonial-image-container {
       position: relative;
       overflow: hidden;
       border-radius: 24px;
       box-shadow:
           0 25px 60px rgba(0, 0, 0, 0.4),
           0 0 80px rgba(251, 146, 60, 0.1);
       background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
       padding: 3px;
   }

   .testimonial-image-container::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
       border-radius: 24px;
       z-index: 1;
       pointer-events: none;
   }

   .testimonial-image-container img {
       width: 380px;
       height: 480px;
       object-fit: cover;
       border-radius: 21px;
       transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
       display: block;
       position: relative;
       z-index: 2;
   }

   .testimonial-image-container:hover img {
       transform: scale(1.05);
   }

   .fade-transition {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
   }

   .fade-transition.active {
       opacity: 1;
       transform: translateY(0);
   }

   .loading-indicator {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 40px;
       height: 40px;
       border: 3px solid rgba(251, 146, 60, 0.3);
       border-top: 3px solid #fb923c;
       border-radius: 50%;
       animation: spin 1s linear infinite;
       z-index: 3;
   }

   @keyframes spin {
       0% {
           transform: translate(-50%, -50%) rotate(0deg);
       }

       100% {
           transform: translate(-50%, -50%) rotate(360deg);
       }
   }

   /* Responsive Design */
   @media (max-width: 1200px) {
       .testimonial-section {
           padding: 50px 40px;
           gap: 60px;
       }

       .testimonial-image-container img {
           width: 340px;
           height: 420px;
       }

       .titles {
           font-size: 46px;
       }

       .feedback {
           font-size: 18px;
       }
   }

   @media (max-width: 1024px) {
       .testimonial-section {
           flex-direction: column-reverse;
           gap: 50px;
           text-align: left;
           align-items: center;
       }

       .testimonial-content {
           max-width: 100%;
           text-align: center;
       }

       .testimonial-image-container {
           width: 100%;
           max-width: 500px;
       }

       .testimonial-image-container img {
           width: 100%;
           height: 380px;
       }

       .titles {
           font-size: 42px;
       }

       .feedback {
           text-align: center;
           padding-left: 30px;
       }
   }

   @media (max-width: 768px) {
       .testimonial-wrapper {
           padding: 80px 0;
       }

       .testimonial-section {
           padding: 40px 30px;
           gap: 40px;
       }

       .testimonial-image-container img {
           height: 330px;
       }

       .titles {
           font-size: 36px;
       }

       .feedback {
           font-size: 16px;
           padding-left: 25px;
       }

       .feedback::before {
           font-size: 50px;
           top: -12px;
       }

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

   @media (max-width: 640px) {
       .testimonial-wrapper {
           padding: 60px 0;
       }

       .testimonial-section {
           padding: 30px 20px;
           gap: 35px;
       }

       .testimonial-image-container img {
           height: 300px;
       }

       .titles {
           font-size: 32px;
       }

       .feedback {
           font-size: 15px;
           padding-left: 20px;
       }

       .feedback::before {
           font-size: 40px;
           top: -10px;
       }

       .customer-avatar {
           width: 50px;
           height: 50px;
           font-size: 18px;
       }

       .customer-info .name {
           font-size: 20px;
       }

       .customer-info .role {
           font-size: 12px;
       }
   }

   @media (max-width: 480px) {
       .testimonial-wrapper {
           padding: 40px 0;
       }

       .testimonial-section {
           padding: 25px 15px;
           gap: 30px;
       }

       .testimonial-image-container {
           border-radius: 20px;
       }

       .testimonial-image-container img {
           height: 280px;
           border-radius: 17px;
       }

       .titles {
           font-size: 28px;
       }

       .feedback {
           font-size: 14px;
           padding-left: 18px;
       }

       .feedback::before {
           font-size: 35px;
           top: -8px;
       }

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

       .customer-avatar {
           width: 45px;
           height: 45px;
           font-size: 16px;
       }

       .customer-info .name {
           font-size: 18px;
       }

       .customer-info .role {
           font-size: 11px;
       }
   }
/* ====== 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%;
    text-align: justify;
}

/* On small screens, switch back to left-align for better readability */
@media (max-width: 768px) {
    .faq-description {
        text-align: left;
    }
}

.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;
    }
}

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

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

  body {
      font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #1e293b;
      background: #ffffff;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .how-ezirent-works {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  }

  .section-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
  }

  .section-subtitle {
      font-size: 14px;
      font-weight: 600;
      color: #f97316;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
      font-family: 'Josefin Sans', sans-serif;
  }

  .section-subtitle::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #f97316, #f59e0b);
      border-radius: 2px;
  }

  .section-title {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.1;
      background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: 'Josefin Sans', sans-serif;
  }

  .section-description {
      font-size: 20px;
      color: #64748b;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 400;
      text-align: justify;
      font-family: 'Josefin Sans', sans-serif;
  }

  /* IMPROVED LANDSCAPE IMAGE STYLES */
  .landscape-image-container {
      margin: 40px 0 60px;
      position: relative;
  }

  .landscape-image {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16/9;
      /* Maintains consistent aspect ratio */
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      position: relative;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .landscape-image:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  }

  .landscape-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
  }

  .landscape-image:hover::before {
      opacity: 1;
  }

  .image-placeholder {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
  }

  .placeholder-content {
      width: 100%;
      height: 100%;
      position: relative;
  }

  .placeholder-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
  }

  /* Fallback for when image doesn't load */
  .placeholder-fallback {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      color: #64748b;
      text-align: center;
      z-index: -1;
  }

  .placeholder-icon {
      font-size: 64px;
      margin-bottom: 16px;
      opacity: 0.8;
      animation: float 3s ease-in-out infinite;
  }

  .placeholder-text {
      font-size: 24px;
      font-weight: 600;
      font-family: 'Josefin Sans', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  /* Steps Container */
  .steps-container {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-top: 80px;
  }

  .steps-container::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 50px;
      right: 50px;
      height: 3px;
      background: linear-gradient(90deg, #f97316 0%, #f59e0b 50%, #f43f5e 100%);
      border-radius: 2px;
      z-index: 1;
  }

  .step-card {
      flex: 1;
      background: white;
      padding: 40px 30px;
      border-radius: 24px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2;
      border: 2px solid transparent;
      text-align: center;
  }

  .step-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      border-color: #f97316;
  }

  .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #f97316, #f59e0b);
      border-radius: 24px 24px 0 0;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .step-card:hover::before {
      opacity: 1;
  }

  .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #fb923c, #f97316);
      color: white;
      border-radius: 50%;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 32px;
      position: relative;
      box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
  }

  .step-number::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #f97316, #f59e0b);
      border-radius: 50%;
      opacity: 0.2;
      transform: scale(1.2);
      animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1.2);
          opacity: 0.2;
      }

      50% {
          transform: scale(1.4);
          opacity: 0.1;
      }
  }

  .step-title {
      font-size: 24px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 16px;
      line-height: 1.3;
      font-family: 'Josefin Sans', sans-serif;
  }

  .step-description {
      font-size: 16px;
      color: #64748b;
      line-height: 1.7;
      max-width: 280px;
      margin: 0 auto;
      text-align: justify;
      font-family: 'Josefin Sans', sans-serif;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
      .steps-container {
          flex-direction: column;
          gap: 60px;
          align-items: center;
      }

      .steps-container::before {
          display: none;
      }

      .step-card {
          max-width: 400px;
          width: 100%;
      }

      .step-description {
          max-width: none;
      }
  }

  @media (max-width: 768px) {
      .how-ezirent-works {
          padding: 80px 0;
      }

      .container {
          padding: 0 20px;
      }

      .section-title {
          font-size: 36px;
      }

      .section-description {
          font-size: 18px;
      }

      .landscape-image-container {
          margin: 30px 0 50px;
      }

      .landscape-image {
          border-radius: 20px;
          aspect-ratio: 16/10;
          /* Slightly taller on mobile */
      }

      .placeholder-icon {
          font-size: 48px;
      }

      .placeholder-text {
          font-size: 20px;
      }

      .steps-container {
          margin-top: 60px;
          gap: 40px;
      }

      .step-card {
          padding: 32px 24px;
      }

      .step-number {
          width: 70px;
          height: 70px;
          font-size: 28px;
      }

      .step-title {
          font-size: 22px;
      }
  }

  @media (max-width: 480px) {
      .section-title {
          font-size: 32px;
      }

      .section-description {
          font-size: 16px;
      }

      .landscape-image-container {
          margin: 25px 0 40px;
      }

      .landscape-image {
          border-radius: 16px;
          aspect-ratio: 4/3;
          /* More square on small screens */
      }

      .placeholder-icon {
          font-size: 40px;
      }

      .placeholder-text {
          font-size: 18px;
      }

      .step-number {
          width: 60px;
          height: 60px;
          font-size: 24px;
      }

      .step-title {
          font-size: 20px;
      }

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

.get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* space between text and icon */
    padding: 8px 16px;
    /* smaller size */
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border: none;
    border-radius: 25px;
    /* pill shape */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(245, 124, 0, 0.4);
}

.get-started-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #FB8C00, #E65100);
    box-shadow: 0 5px 12px rgba(230, 81, 0, 0.5);
    transform: translateY(-2px);
}

.get-started-btn:hover svg {
    transform: translateX(3px);
    /* arrow movement */
}

.get-started-btn:active {
    transform: translateY(0);
    /* reset on click */
    box-shadow: 0 2px 6px rgba(230, 81, 0, 0.4);
}

/* Force the button to align left in its container */
.button-container {
    display: flex;
    justify-content: flex-start;
}


/* Professional Contact Popup - Black, Orange, White Theme */
.contact-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-popup-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 0;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    animation: slideUpScale 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: hidden;
}

.popup-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
    opacity: 0.9;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close svg {
    color: white;
    width: 20px;
    height: 20px;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-popup-header {
    position: relative;
    text-align: center;
    padding: 50px 40px 30px;
    z-index: 5;
}

.header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: float 3s ease-in-out infinite;
}

.header-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.contact-popup-header h3 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.contact-popup-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 320px;
    margin: 0 auto;
}

.contact-grid {
    padding: 30px 40px;
    display: grid;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffa726);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.contact-icon.phone {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.contact-icon.email {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.contact-details p {
    margin: 0 0 4px 0;
}

.contact-details a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffa726;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
}

.contact-action {
    flex-shrink: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.action-btn svg {
    color: white;
}

.popup-footer {
    padding: 24px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.response-time svg {
    color: #ff8c42;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .contact-popup-content {
        margin: 20px;
        width: calc(100% - 40px);
        max-width: none;
    }

    .contact-popup-header {
        padding: 40px 24px 24px;
    }

    .contact-popup-header h3 {
        font-size: 28px;
    }

    .contact-grid {
        padding: 24px;
        gap: 16px;
    }

    .contact-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h4 {
        font-size: 16px;
    }

    .popup-footer {
        padding: 20px 24px 32px;
    }

    .response-time {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .contact-details {
        order: 1;
    }

    .contact-action {
        order: 2;
    }
}








/* New Hero Sec */

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

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 }

 /* Mobile First - Default Styles */
 body {
     padding: 0;
     background: white;
 }

 .rental-section {
     max-width: 600px;
     margin: 0 auto;
     background: white;
     box-shadow: none;
 }

 .hero-image {
     width: calc(100% - 32px);
     height: auto;
     margin: 16px 16px 0 16px;
     border-radius: 16px;
     aspect-ratio: 16 / 9;
     object-fit: cover;
     object-position: center;
     display: block;
 }

 .content-wrapper {
     padding: 20px 16px;
 }

 .header {
     margin-bottom: 24px;
     text-align: center;
 }

 .header h2 {
     font-size: 18px;
     font-weight: 600;
     color: #000;
     margin-bottom: 8px;
     line-height: 1.4;
     padding: 0 4px;
 }

 .header h1 {
     font-size: 24px;
     font-weight: 600;
     color: #000;
     margin-bottom: 8px;
     line-height: 1.2;
 }

 .header p {
     font-size: 15px;
     color: #717171;
     line-height: 1.4;
 }

 /* Toggle Tabs */
 .toggle-tabs {
     display: flex;
     gap: 12px;
     margin-bottom: 24px;
     border-bottom: 1px solid #e0e0e0;
 }

 .tab {
     flex: 1;
     padding: 12px 16px;
     background: none;
     border: none;
     border-bottom: 2px solid transparent;
     font-size: 15px;
     font-weight: 500;
     color: #717171;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .tab.active {
     color: #ff8c00;
     border-bottom-color: #ff8c00;
 }

 /* Form Container */
 .form-container {
     position: relative;
 }

 .search-form {
     display: none;
 }

 .search-form.active {
     display: block;
 }

 /* Input Groups */
 .input-group {
     margin-bottom: 16px;
 }

 .input-group label {
     display: block;
     font-size: 13px;
     font-weight: 600;
     color: #000;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .input-group input,
 .input-group select {
     width: 100%;
     padding: 14px 16px;
     border: 1px solid #d0d0d0;
     border-radius: 8px;
     font-size: 15px;
     color: #000;
     background: white;
     transition: all 0.3s ease;
 }

 .input-group input:focus,
 .input-group select:focus {
     outline: none;
     border-color: #ff8c00;
     box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
 }

 .input-group input::placeholder {
     color: #c0c0c0;
 }

 /* Date Row */
 .date-row {
     display: grid;
     grid-template-columns: 1fr;
     gap: 12px;
     margin-bottom: 16px;
 }

 /* Guest Selector */
 .guest-row {
     display: grid;
     grid-template-columns: 1fr;
     gap: 12px;
     margin-bottom: 24px;
 }

 .guest-selector {
     position: relative;
 }

 .guest-selector select {
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23717171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 16px center;
     padding-right: 40px;
 }

 /* Search Button */
 .search-btn {
     width: 100%;
     padding: 16px;
     background: linear-gradient(90deg, #ffb347, #ff8c00);
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
 }

 .search-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
 }

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

 /* Trust Badge */
 .trust-badge {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-top: 24px;
     padding-top: 24px;
     border-top: 1px solid #e0e0e0;
 }

 .badge-icon {
     width: 48px;
     height: 48px;
     background: #f5f5f5;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
 }

 .badge-text {
     flex: 1;
 }

 .badge-text h3 {
     font-size: 14px;
     font-weight: 600;
     color: #000;
     margin-bottom: 2px;
 }

 .badge-text p {
     font-size: 13px;
     color: #717171;
 }

 /* Animation */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .search-form.active {
     animation: fadeIn 0.3s ease;
 }

 /* Desktop Styles - 769px and above */
 @media (min-width: 769px) {
     body {
         background: #f7f7f7;
         padding: 60px 20px;
     }

     .rental-section {
         max-width: 1400px;
         margin: 60px auto;
         background: white;
         border-radius: 24px;
         overflow: hidden;
         box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
         display: grid;
         grid-template-columns: 420px 1fr;
         min-height: 600px;
     }

     .hero-image {
         width: 100%;
         height: 100%;
         margin: 0;
         border-radius: 0;
         aspect-ratio: auto;
         object-fit: cover;
         object-position: center;
         order: 2;
     }

     .content-wrapper {
         padding: 48px 40px;
         order: 1;
         display: flex;
         flex-direction: column;
         justify-content: center;
     }

     .header h2 {
         font-size: 26px;
         line-height: 1.3;
         padding: 0;
         margin-bottom: 12px;
     }

     .date-row {
         grid-template-columns: 1fr 1fr;
     }

     .guest-row {
         grid-template-columns: 1fr 1fr;
     }
 }

 /* Extra Large Desktop */
 @media (min-width: 1200px) {
     .rental-section {
         grid-template-columns: 480px 1fr;
     }

     .content-wrapper {
         padding: 56px 48px;
     }

     .header h2 {
         font-size: 28px;
     }
 }






 /* Short Stays Section */

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

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #333;
  }

  /* Short Stays Section */
  .short-stays-section {
      width: 100%;
      background: #ffffff;
      padding: 60px 20px;
  }

  .short-stays-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
  }

  /* Content Area */
  .short-stays-content {
      padding: 0 20px;
  }

  .section-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      color: #ff8c00;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
      padding: 8px 16px;
      background: rgba(255, 140, 0, 0.1);
      border-radius: 20px;
  }

  .short-stays-content h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .short-stays-content p {
      font-size: 16px;
      color: #666;
      margin-bottom: 24px;
      line-height: 1.8;
  }

  /* Features List */
  .features-list {
      list-style: none;
      margin-bottom: 32px;
  }

  .features-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 15px;
      color: #444;
  }

  .feature-icon {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, #ffb347, #ff8c00);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      font-size: 14px;
      font-weight: 700;
      margin-top: 2px;
  }

  /* CTA Button */
  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: linear-gradient(90deg, #ffb347, #ff8c00);
      color: white;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
      border: none;
      cursor: pointer;
  }

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

  .cta-button:active {
      transform: translateY(0);
  }

  .arrow-icon {
      font-size: 18px;
      transition: transform 0.3s ease;
  }

  .cta-button:hover .arrow-icon {
      transform: translateX(4px);
  }

  /* Image Area */
  .short-stays-image {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 400px;
  }

  .short-stays-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
  }

  .short-stays-image:hover img {
      transform: scale(1.05);
  }

  /* Image Overlay Badge */
  .image-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 16px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .badge-title {
      font-size: 14px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 4px;
  }

  .badge-subtitle {
      font-size: 13px;
      color: #666;
  }

  /* Stats Row */
  .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid #e5e5e5;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 28px;
      font-weight: 700;
      color: #ff8c00;
      display: block;
      margin-bottom: 8px;
  }

  .stat-label {
      font-size: 13px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  /* Tablet Styles - 768px and above */
  @media (min-width: 768px) {
      .short-stays-section {
          padding: 80px 40px;
      }

      .short-stays-content h2 {
          font-size: 40px;
      }

      .short-stays-content p {
          font-size: 17px;
      }

      .short-stays-image {
          height: 500px;
      }

      .stats-row {
          gap: 30px;
      }

      .stat-number {
          font-size: 32px;
      }
  }

  /* Desktop Styles - 1024px and above */
  @media (min-width: 1024px) {
      .short-stays-section {
          padding: 100px 60px;
      }

      .short-stays-container {
          grid-template-columns: 1fr 1fr;
          gap: 60px;
      }

      .short-stays-content {
          padding: 0;
          order: 1;
      }

      .short-stays-image {
          order: 2;
          height: 600px;
      }

      .short-stays-content h2 {
          font-size: 48px;
      }

      .stats-row {
          grid-template-columns: repeat(3, 1fr);
          text-align: left;
          margin-top: 48px;
          padding-top: 40px;
      }

      .stat-item {
          text-align: left;
      }
  }

  /* Large Desktop - 1440px and above */
  @media (min-width: 1440px) {
      .short-stays-container {
          gap: 80px;
      }

      .short-stays-content h2 {
          font-size: 52px;
      }

      .short-stays-content p {
          font-size: 18px;
      }
  }