/* Root Variables - Manage your site properties here */
:root {
    /* Fonts */
    --font-family-base: 'Lato', sans-serif;
    --font-family-title: 'Open Sans', sans-serif;
    --paragraph-font-family: 'Roboto', sans-serif;

    /* Font Sizes */
    --font-size-topbar: 16px;
    --font-size-nav: 18px;
    --font-size-btn: 18px;
    --font-size-title: 24px;

    /* Colors */
    --color-primary-orange: #e68a25;
    /* Active nav link */
    --color-text-dark: #333333;
    --color-text-muted: #ffff;
    --color-topbar-bg: #b7840f;

    /* Button Colors */
    --btn-renters-bg: #cba471;
    /* Tan/Gold */
    --btn-renters-text: #ffffff;
    --btn-tenants-bg: #ef3324;
    /* Red */
    --btn-tenants-text: #ffffff;

    /* Container Settings */
    --container-max-width: 1550px;
    /* Manage width across the site */

    /* Hero Variables */
    --hero-bg-color: #1a1a1a;
    --hero-title-size: 53px;
    --hero-subtitle-size: 14px;
    --hero-desc-size: 18px;
    --paragraph-font-size: 18px;

}

/* Base Styles */
body {
    font-family: var(--font-family-base);
    color: var(--color-text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Custom Container for full website managed width */
.container-manage {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-topbar-bg);
    border-bottom: 1px solid #e4e4e4;
}

.top-bar-item {
    font-size: var(--font-size-topbar);
    color: #fff;
    transition: color 0.3s;
}

.top-bar a.top-bar-item:hover {
    color: var(--color-primary-orange);
}

.top-bar i {
    color: #fff;
    margin-right: 6px;
    font-size: 15px;
}

/* Top Bar Social Icons (left side) */
.top-bar-social {
    flex-shrink: 0;
}

.top-bar-social-link {
    color: #fff;
    font-size: 14px;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
}

.top-bar-social-link:hover {
    opacity: 1;
    color: #fff5e0;
}

/* Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}


.temp-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-family-title);
    font-size: 29px;
    font-weight: 700;
    color: var(--color-primary-orange);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-family-base);
    font-size: 11.5px;
    font-weight: 600;
    color: #6c757d;
    /* A polished muted grey */
    letter-spacing: 0.8px;
    margin-top: 2px;
    font-style: italic;
    text-align: right;
}

/* Navigation */
.main-nav .nav-link {
    font-family: var(--font-family-title);
    font-size: var(--font-size-nav);
    color: var(--color-text-dark);
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s;
}

.main-nav .nav-link:hover {
    color: var(--color-primary-orange);
}

.main-nav .nav-link.active {
    color: var(--color-primary-orange) !important;
}

/* Action Buttons Group */
.action-buttons {
    display: flex;
}

.action-buttons .btn {
    font-family: var(--font-family-title);
    font-size: var(--font-size-btn);
    font-weight: 500;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

/* Global .btn-renters styles (desktop + mobile) */
.btn-renters {
    font-family: var(--font-family-title);
    font-size: var(--font-size-btn);
    font-weight: 500;
    background-color: var(--btn-renters-bg);
    color: var(--btn-renters-text) !important;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-renters:hover {
    background-color: #b59263;
    color: var(--btn-renters-text) !important;
}

/* Icon buttons in header */
.btn-icon-header {
    width: 45px;
    height: 45px;
    background-color: var(--btn-renters-bg);
    color: #ffffff !important;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(230, 138, 37, 0.35);
}

.btn-icon-header:hover {
    background-color: #b59263;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(230, 138, 37, 0.35);
}

.action-buttons .btn-tenants {
    background-color: var(--btn-tenants-bg);
    color: var(--btn-tenants-text);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.action-buttons .btn-tenants:hover {
    background-color: #d42c1f;
    color: var(--btn-tenants-text);
}

/* Mobile: Potential Renters button compact size */
@media (max-width: 991px) {
    .action-buttons {
        justify-content: flex-start;
    }

    .btn-mobile-renters {
        font-size: 13px !important;
        padding: 8px 14px !important;
        white-space: nowrap;
    }
}

/* ---- Mobile Nav Dropdown Menu ---- */
@media (max-width: 991px) {

    /* Make the header positioned so dropdown anchors correctly */
    .main-header {
        position: relative;
    }

    /* The expanded collapse panel */
    #mainNavbar {
        background-color: #ffffff;
        border-top: 3px solid var(--btn-renters-bg);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        padding: 4px 0 8px;
        margin-top: 15px;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 1000;
        width: 50%;
    }

    /* Divider between nav items */
    #mainNavbar .nav-item {
        border-bottom: 1px solid #f3f3f3;
    }

    #mainNavbar .nav-item:last-child {
        border-bottom: none;
    }

    /* Nav link base */
    #mainNavbar .nav-link {
        padding: 12px 20px !important;
        font-size: 15px;
        font-weight: 500;
        color: #222 !important;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background-color 0.2s, color 0.2s;
    }

    /* Small orange dot before each link */
    #mainNavbar .nav-link::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: var(--btn-renters-bg);
        border-radius: 50%;
        flex-shrink: 0;
        opacity: 0;
        transition: opacity 0.2s;
    }

    /* Hover + active state */
    #mainNavbar .nav-link:hover,
    #mainNavbar .nav-link.active {
        background-color: #fdf6ec;
        color: var(--color-primary-orange) !important;
    }

    #mainNavbar .nav-link:hover::before,
    #mainNavbar .nav-link.active::before {
        opacity: 1;
    }
}

/* Hero Banner */
.hero-section {
    position: relative;
    background-color: var(--hero-bg-color);
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    color: #ffffff;
    padding: 100px 0 80px 0;
    position: relative;
}

/* Gradient overlay on the left side */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Keep content above the gradient */
.hero-slide .container-manage {
    position: relative;
    z-index: 2;
}

/* Slick Slider Override */
.slick-slide {
    outline: none;
}

.hero-content {
    padding-left: 32px;
}

.hero-text-block {
    border-left: 4px solid var(--btn-renters-bg);
    margin-left: -32px;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    font-weight: 600;
    color: var(--btn-renters-bg);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-title .text-highlight {
    color: var(--btn-renters-bg);
}

.hero-large-text {
    font-size: 79px;
}

.hero-description {
    font-size: var(--hero-desc-size);
    color: #fefefe;
    line-height: 1.6;
}

.site_paragraph {
    font-size: var(--paragraph-font-size) !important;
    font-family: var(--paragraph-font-family);
}

.btn-hero {
    background-color: var(--btn-renters-bg);
    color: #ffffff;
    font-family: var(--font-family-title);
    font-size: var(--font-size-btn);
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    display: inline-block;
}

.btn-hero:hover {
    background-color: #b59263;
    color: #ffffff;
}

/* Hero Social Icons */
.hero-social {
    position: absolute;
    bottom: 40px;
    left: 45px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.hero-social a {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.hero-social a:hover {
    opacity: 1;
    color: var(--btn-renters-bg);
}

/* Hero Slider Dots */
.custom-slider-dots {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.custom-slider-dots .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-slider-dots .slick-dots li {
    margin: 8px 0;
    position: relative;
    transition: margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider-dots .slick-dots li .dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.custom-slider-dots .slick-dots li.slick-active {
    margin-bottom: 70px;
}

.custom-slider-dots .slick-dots li.slick-active .dot {
    background-color: var(--btn-renters-bg);
}

.custom-slider-dots .slick-dots li::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider-dots .slick-dots li.slick-active::after {
    height: 50px;
}

/* --- Features Section --- */
.features-section {
    padding-top: 0px;
    padding-bottom: 50px;
}

.feature-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .card-content {
    padding: 65px 50px 50px 50px;
    margin-bottom: 0px;
}

.feature-card h3 {
    font-family: var(--font-family-base);
    font-size: 42px;
    line-height: 45px;
    font-weight: 400;
    margin-bottom: 20px;
}

.feature-card p {
    line-height: 29px;
    margin-bottom: 50px;
}

.feature-card .card-link {
    font-family: var(--font-family-base);
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

.feature-card .card-link i {
    transform: rotate(-45deg);
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-card .card-link:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* Card Variants */
.card-orange {
    background-color: #e56824;
    color: #ffffff;
}

.card-orange p {
    color: rgba(255, 255, 255, 0.9);
}

.card-orange .card-link {
    color: #ffffff;
}

.card-lime {
    background-color: #fbb517;
    color: #1a1a1a;
}

.card-lime p,
.card-gray p {
    color: #141414;
}

.card-lime .card-link,
.card-gray .card-link {
    color: #1a1a1a;
}

.card-gray {
    background-color: #f5f6f8;
    color: #1a1a1a;
}

.card-image {
    display: flex;
    align-items: end;
    justify-content: end;
}

.card-image img {
    display: block;
    max-height: 210px;
    position: absolute;
    z-index: 999;
    bottom: 0;
}

/* --- About Section (Redesigned) --- */
.about-section {
    padding-top: 25px;
    padding-bottom: 60px;
}

.about-new-title {
    font-family: var(--paragraph-font-family);
    font-size: 48px;
    line-height: 53px;
    color: #121212;
    font-weight: 600;
    width: 550px;
}

.about-new-intro {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    width: 490px;
}

.about-col-divider {
    width: 5px;
    background-color: #c2c2c2;
    height: 100%;
    min-height: 120px;
}

.about-new-heading {
    font-family: var(--paragraph-font-family);
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 45px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    margin-bottom: 40px !important;
}

.abt_para {
    margin-bottom: 0 !important;
}

.about-new-heading .fw-black {
    font-weight: 700;
}

.about-new-body {
    font-size: 13.5px;
    line-height: 1.8;
}

.about-image-wrap {
    overflow: visible;
}

.about-full-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

.about-tagline-box {
    position: absolute;
    bottom: -1px;
    left: 0;
    background: #fff;
    padding: 28px 36px 28px 28px;
    max-width: 340px;
    border-top-right-radius: 20px !important;
}

.about-tagline-text {
    font-family: var(--font-family-title);
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin: 0;
}

.about-feat-col {
    padding-top: 0px;
    padding-bottom: 0px;
}

.about-features-row {
    margin: 75px 0 15px !important;
}

.about-feat-col--bordered {
    border-left: 1px solid #e5e5e5;
}

.about-feat-title {
    font-family: var(--paragraph-font-family);
    font-size: 32px;
    line-height: 23px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-feat-text {
    font-size: 13.5px;
    line-height: 1.7;
}

.comfort_text {
    margin-bottom: 0 !important;
}

/* Shared section title */
.section-title {
    font-family: var(--font-family-base);
    font-size: 45px;
    line-height: 58px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
}

.text_field_orange {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    margin-bottom: 10px !important;
}

.phone_no a {
    font-size: 35px;
    line-height: 23px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--font-family-base);
    margin-top: 15px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone_no a:hover {
    color: var(--btn-renters-bg);

}

/* --- Properties Section --- */
.properties-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.property-card {
    border: none;
    border-radius: 12px;
}

.property-title {
    color: var(--btn-renters-bg);
    font-family: var(--font-family-title);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.property-location {
    font-size: 16px !important;
    color: #3d3b3b;
}

.property-details span {
    display: inline-flex;
    align-items: center;
    color: #3d3b3b;
    font-weight: 500;
    font-size: 16px;
}

.property_box {
    background: #f7f7f7;
}

.btn-details {
    background-color: var(--btn-renters-bg);
    font-family: var(--font-family-base);
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s;
    font-size: 15px;
    line-height: 23px;
    text-transform: uppercase;
    color: #fefefe;
    font-weight: 500;
}

.btn-details:hover {
    background-color: #b59263;
    color: #fff;
}

.properties-slider-container {
    padding: 0 10px;
}

.view_dbtn {
    text-align: center;
}

.prop-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.prop-arrow:hover {
    background-color: #000;
    color: #fff;
}

.prop-prev {
    left: -30px;
}

.prop-next {
    right: -30px;
}

/* --- How It Works Section --- */
.how-it-works-section {
    padding-bottom: 50px;
    padding-top: 20px;
}

.step-icon {
    margin-bottom: 15px !important;
}

.step-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.step-title {
    font-family: var(--font-family-base);
    font-size: 30px;
    line-height: 23px;
    color: #000000;
    font-weight: 700;
}

.step-divider {
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e0e0e0;
}

.text-sm {
    font-size: 14px;
    line-height: 1.7;
}

/* --- Enquiry Section --- */
.enquiry-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 5px;
}

.enquiry-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 50px 40px !important;
}

.enquiry_heading {
    font-family: var(--font-family-base);
    font-size: 38px;
    font-weight: 500 !important;
    color: #111;
}

.enquiry_para {
    font-size: 16px;
    color: #4a4a4a !important;
    margin-bottom: 30px !important;
}

.custom-input {
    border: none;
    padding: 18px 20px;
    border-radius: 0px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: none;
}

.phone-group-row {
    gap: 10px !important;
}

.custom-input:focus {
    box-shadow: none;
    outline: none;
}

.phone-group-row .custom-input {
    width: 50%;
}

.phone-group-row input:first-child {
    border-right: 1px solid #eaeaea !important;
}

.make_enq_btn {
    background-color: #cda87e;
    color: #fff;
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 4px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.2s ease-in-out;
}

.make_enq_btn:hover {
    background-color: #b9946a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.make_enq_btn:active {
    background-color: #9c7b54;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- Footer Section --- */
.main-footer {
    background: repeating-linear-gradient(-45deg,
            #1d1d1d,
            #1d1d1d 3px,
            #151515 3px,
            #151515 6px);
    color: #fff;
}

.footer-link {
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-family-title);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--btn-renters-bg);
}

.copyright-text {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.text-tan {
    color: var(--btn-renters-bg) !important;
}

.property_slide img {
    padding: 5px;
    border-radius: 12px;
}

.about_left_text {
    width: 53% !important;
}

.about_right_text {
    width: 45% !important;
}

.about_first {
    margin-top: 35px;
}

.page-banner {
    min-height: 300px;
}

.cnt_frm label {
    font-size: 18px !important;
    font-family: 'Roboto', sans-serif;
}

.btn-hero:active,
.btn-details:active,
.btn-renters:active {
    background-color: var(--btn-renters-bg) !important;
    color: #fefefe !important;
}

.btn-hero {
    margin-top: 25px;
}

.hero-description {
    margin-bottom: 0 !important;
}


/* --- Redesigned About Us Page --- */
.about-page-banner {
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
}


.about-page-banner .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.about-page-title {
    letter-spacing: 1px;
    font-size: 55px;
}


.divider-custom {
    height: 3px;
    width: 60px;
    background-color: var(--color-primary-orange);
    border-radius: 3px;
}

.subtitle-elegant {
    letter-spacing: 2px;
    font-size: 14px;
}

.text-primary-orange {
    color: var(--color-primary-orange) !important;
}

.bg-orange-light {
    background-color: rgba(230, 138, 37, 0.1) !important;
}

.elegant-heading {
    font-family: var(--font-family-title);
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--color-primary-orange), #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-main-img {
    height: 500px;
    object-fit: cover;
    border: 8px solid #fff;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-primary-orange);
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 5px solid #fff;
}

.experience-badge .years {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.blob-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-orange);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #ffd6a5;
    bottom: -150px;
    right: -100px;
}

.feature-card-elegant {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ═══════════════════════════════════════════
   UW RENTALS PAGE
═══════════════════════════════════════════ */

/* Info Strip */
.info-strip {
    background: #fff;
    border-bottom: 1px solid #ece9e3;
    padding-top: 15px;

}

.info-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-right: 1px solid #ece9e3;
}

.info-pill:last-child {
    border-right: none;
}

.info-pill .ip-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.info-pill .ip-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.info-pill .ip-text span {
    font-size: 11.5px;
    color: #777;
}

/* Listings Section */
.listings-section {
    padding: 60px 0 80px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e68a25;
    margin-bottom: 8px;
}

.section-heading {
    font-size: 2.4rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-sub {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Property Card */
.prop-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid #ece9e3;
    display: flex;
    flex-direction: column;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.prop-card-header {
    background: linear-gradient(135deg, #fff8f0 0%, #fdefd8 100%);
    border-bottom: 2px solid #e68a25;
    padding: 22px 24px 18px;
    position: relative;
    overflow: hidden;
}

.prop-card-header::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(230, 138, 37, 0.10);
}

.prop-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c97a1f;
    margin-bottom: 4px;
}

.prop-address {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.prop-br-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e68a25;
    border: 1px solid #c97a1f;
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.prop-card-body {
    padding: 22px 24px;
    flex-grow: 1;
}

.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f7f4;
    border: 1px solid #ece9e3;
    color: #444;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 50px;
    margin: 0 4px 6px 0;
}

.amenity-chip i {
    color: #e68a25;
    font-size: 10px;
}

.prop-note {
    font-size: 11.5px;
    color: #e68a25;
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 0;
}

.prop-card-price {
    margin: 16px 24px;
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-card-price .price-amt {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.prop-card-price .price-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

.prop-card-price .avail-lbl {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-align: right;
}

.prop-card-price .avail-date {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: right;
}

.prop-card-footer {
    padding: 14px 24px 20px;
    display: flex;
    gap: 8px;
    border-top: 1px solid #f0ede8;
}

.btn-tour {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-tour:hover {
    background: #333;
    color: #fff;
}

.btn-gallery {
    flex: 1;
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-gallery:hover {
    border-color: #e68a25;
    color: #e68a25;
}

.map-wrp {
    text-align: center;
    margin-bottom: 3rem;
}

.map-jpg {
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-jpg:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.btn-map {
    width: 42px;
    flex-shrink: 0;
    background: transparent;
    color: #888;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-map:hover {
    border-color: #e68a25;
    color: #e68a25;
}

/* Tour CTA Strip */
.tour-cta {
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.tour-cta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.tour-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.btn-cta-white {
    background: #fff;
    color: #c97a1f;
    border: 1px solid #c97a1f;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-cta-white:hover {
    color: #ffffff;
    border: 1px solid #fff;
}


/* ── Renter Links Page ── */
.renters-page {
    background: #f8f7f4;
    min-height: 100vh;
}

.renter-link-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #ece9e3;
    padding: 28px 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.renter-link-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e68a25, #c97a1f);
    transition: width 0.3s ease;
}

.renter-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11);
    border-color: #e68a25;
    color: inherit;
}

.renter-link-card:hover::after {
    width: 100%;
}

.card-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(230, 138, 37, 0.35);
}

.card-text-wrap {
    flex: 1;
    min-width: 0;
}

.card-text-wrap h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px;
    line-height: 1.3;
}

.card-text-wrap p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.card-arrow {
    color: #ccc;
    font-size: 14px;
    align-self: center;
    transition: color 0.2s, transform 0.2s;
}

.renter-link-card:hover .card-arrow {
    color: #e68a25;
    transform: translateX(4px);
}

/* contact card special */
.card-contact-strip {
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 8px 28px rgba(230, 138, 37, 0.3);
}

.card-contact-strip h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.card-contact-strip p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    margin: 0;
}

.contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-contact-w {
    background: #fff;
    color: #c97a1f;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-contact-w:hover {
    transform: scale(1.04);
    color: #c97a1f;
}

/* section divider label */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e68a25;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ece9e3;
}

.modern-reason-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.modern-reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(230, 138, 37, 0.08);
    border-color: rgba(230, 138, 37, 0.2);
}

.modern-card-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(230, 138, 37, 0.04);
    font-family: var(--font-family-title);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: color 0.3s ease;
}

.modern-reason-card:hover .modern-card-number {
    color: rgba(230, 138, 37, 0.08);
}

.modern-reason-card:hover h3.modern-card-title {
    color: var(--color-primary-orange);
}


.modern-card-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-card-title {
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-card-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modern-gallery {
    margin-top: auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-gallery img {
    height: 85px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.modern-gallery img:hover {
    transform: scale(1.08);
}

/* ── Why Us Page Specific Styles ── */
.why-us-page {
    background-color: #fcfbf9;
}

/* Stats Section */
.stats-wrapper {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stats-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 138, 37, 0.15) 0%, rgba(26, 26, 26, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-family-title);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #e68a25, #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Comparison Section */
.comparison-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0ede8;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-feature {
    flex: 1;
    padding: 25px 30px;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.comp-us {
    width: 180px;
    padding: 25px 20px;
    background: rgba(230, 138, 37, 0.08);
    text-align: center;
    font-weight: 700;
    color: #c97a1f;
    border-left: 2px solid #e68a25;
    border-right: 2px solid #e68a25;
}

.comp-others {
    width: 210px;
    padding: 25px 20px;
    text-align: center;
    color: #888;
    background: #fcfbf9;
}

.comp-header .comp-us {
    background: linear-gradient(135deg, #e68a25, #c97a1f);
    color: #fff;
    border: none;
    border-radius: 10px 10px 0 0;
    font-size: 1.1rem;
    padding: 30px 20px;
}

.comp-header .comp-others {
    background: transparent;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.top_reasons_section {
    padding: 30px 0 !important;
    margin: 30px 0 !important;
}

.top_reasons_info {
    margin-bottom: 0px !important;
}

.why_us_call_action {
    padding: 30px 0 !important;
    margin: 30px 0 !important;
}


/* Modern Light Theme Lease Section Styling */

.lease-hero {
    position: relative;
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0 80px;
    font-family: var(--font-family-base);
}

.lease-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 50px;
}

.lease-title {
    font-family: var(--font-family-title);
    font-size: 45px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lease-intro-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.lease-intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-family: var(--paragraph-font-family);
}

.lease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 10;
}

.doc-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--btn-renters-bg);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    border-color: var(--btn-renters-bg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.doc-card:hover::before {
    transform: scaleY(1);
}

.doc-icon-wrapper {
    background: rgba(203, 164, 113, 0.1);
    color: var(--btn-renters-bg);
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.doc-card:hover .doc-icon-wrapper {
    background: var(--btn-renters-bg);
    color: #fff;
}

.doc-content {
    flex-grow: 1;
}

.doc-part-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.doc-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #222;
    font-family: var(--font-family-title);
    transition: color 0.3s ease;
}

.doc-card:hover .doc-title {
    color: var(--btn-renters-bg);
}

.doc-download-icon {
    opacity: 1;
    color: var(--btn-renters-bg);
    margin-top: 12px;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.doc-card:hover .doc-download-icon {
    transform: translateX(3px);
}


/* Custom Styles for the Application Form */
.app-container {
    background-color: #f4f6f9;
}

.app-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.app-action-bar {
    background-color: #fdfdfd;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-download-pdf {
    background-color: var(--color-primary-orange, #e68a25);
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download-pdf:hover {
    background-color: #c9761b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 138, 37, 0.3);
}

/* Printable Form Area */
#printable-form {
    padding: 20px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

.form-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.form-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}


.form-row-custom {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    align-items: flex-end;
}

.form-group-custom {
    display: flex;
    align-items: flex-end;
    margin-right: 20px;
    margin-bottom: 10px;
}

.form-label-custom {
    font-weight: 600;
    margin-right: 8px;
    white-space: nowrap;
    margin-bottom: 0;
    color: #333;
}

.form-blank {
    flex-grow: 1;
    border-bottom: 1px solid #a4b0be;
    min-height: 20px;
    min-width: 100px;
}

.form-blank.small {
    min-width: 50px;
}

.form-blank.medium {
    min-width: 150px;
}

.form-blank.large {
    min-width: 250px;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-box {
    width: 14px;
    height: 14px;
    border: 1px solid #333;
    display: inline-block;
}

.return-box {
    border: 2px solid #2f3640;
    padding: 15px;
    font-weight: 600;
    font-size: 13px;
    float: right;
    background: #fff;
    max-width: 300px;
}

.section-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.form-box {
    border: 1px solid #dcdde1;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fafbfc;
    break-inside: avoid;
    page-break-inside: avoid;
}

.section-table th,
.section-table td {
    border: 1px solid #a4b0be;
    padding: 8px 12px;
    font-weight: normal;
    text-align: left;
}

.section-table th {
    background-color: #f1f2f6;
    font-weight: 600;
    color: #2f3640;
}

.legal-text {
    font-size: 14px;
    color: #57606f;
    line-height: 1.5;
    margin-top: 30px;
    text-align: justify;
}

.legal-text h6 {
    font-weight: 700;
    color: #2f3640;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.legal-text p {
    margin-bottom: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.legal-text ul {
    margin-bottom: 10px;
    padding-left: 20px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.legal-text li {
    break-inside: avoid;
    page-break-inside: avoid;
}

.signature-block {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    break-inside: avoid;
    page-break-inside: avoid;
}

.cnt_sec {
    margin-top: 60px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 60px !important;
}

.about-page-story,
.about-page-cta {
    padding: 30px 0 !important;
    margin: 30px !important;
}

.contact-info-list p a {
    color: #000;
    text-decoration: none;
}

.divider_custom {
    height: 3px;
    width: 200px;
    background-color: var(--color-primary-orange);
    border-radius: 3px;
}

/* Print Specific Styles */
@media print {
    body * {
        visibility: hidden;
    }

    #printable-form,
    #printable-form * {
        visibility: visible;
    }

    #printable-form {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .app-card {
        border: none;
        box-shadow: none;
    }
}

/* Responsive Auto Size Adjustments */
@media only screen and (max-width: 1880px) {}

@media only screen and (max-width: 1780px) {}

@media only screen and (max-width: 1680px) {
    .hero-large-text {
        font-size: 65px;
    }

    :root {
        --hero-title-size: 45px;
        --hero-desc-size: 16px;
        --paragraph-font-size: 16px !important;
        --font-size-btn: 16px;
        --font-size-nav: 16px;
    }

    .feature-card p {
        line-height: 26px;
        margin-bottom: 40px;
    }

    .property-details span {
        font-size: 16px;
    }

    .property-location {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 40px;
        line-height: 50px;
    }

    .about-new-title {
        font-size: 40px;
        line-height: 50px;
        width: 480px;
    }

    .about-new-heading {
        font-size: 40px;
        letter-spacing: 0px;
        line-height: 50px;
        margin-bottom: 25px !important;
    }

    .feature-card h3 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 15px;
    }

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

    .phone_no a {
        font-size: 28px;
        line-height: 24px;
    }

    .hero-slide {
        min-height: 715px;
    }

    .enquiry_heading {
        font-size: 30px;
    }

    .properties-slider-container {
        padding: 0 35px;
    }

    .prop-next {
        right: 0px;
    }

    .prop-prev {
        left: 0px;
    }

    .about-feat-title {
        font-size: 27px;
        line-height: 27px;
        margin-bottom: 20px;
    }

    .about-page-story,
    .about-page-features,
    .about-page-cta {
        padding: 0 0 !important;
    }

    .contact_text h2 {
        font-size: 35px !important;
    }

    .contact_text p,
    .inner_banner_text {
        font-size: 17px !important;
    }

    h2.elegant-heading {
        font-size: 40px !important;
        line-height: 50px !important;
        margin-bottom: 15px !important;
    }

    .experience-badge {
        bottom: -20px;
        left: 0px;
    }

}

@media only screen and (max-width: 1550px) {
    .properties-slider-container {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 1440px) {

    .about-new-heading {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px !important;
    }

    .about-new-title {
        font-size: 35px;
        line-height: 40px;
        width: 420px;
    }

    .section-title {
        font-size: 35px;
        line-height: 40px;
    }

    .hero-large-text {
        font-size: 55px;
    }

    :root {
        --hero-title-size: 35px;
        --hero-desc-size: 15px;
        --paragraph-font-size: 15px !important;
    }

    .property-location {
        font-size: 15px !important;
    }

    .property-details span {
        font-size: 15px;
    }

    .btn-details {
        padding: 7px 14px;
        font-size: 14px;
        line-height: 22px;
    }

    .about-tagline-text {
        font-size: 18px;
        line-height: 1.30;
    }

    .property_box img {
        height: 280px !important;
    }

    .about-feat-title {
        font-size: 23px;
        line-height: 27px;
        margin-bottom: 20px;
    }

    .about-features-row {
        margin: 50px 0 0px !important;
    }

    .about-full-img {
        height: 660px;
    }

    .about-new-intro {
        width: 400px;
    }

    .about_left_text {
        width: 50% !important;
    }

    .about_right_text {
        width: 49% !important;
    }

    .action-buttons .btn {
        padding: 10px 18px;
    }

    .inner_banner_text {
        font-size: 17px !important;
    }

    .doc-title {
        font-size: 16px;
    }

    .experience-badge {
        bottom: -20px;
        left: 25px;
    }

    .about-fst-right {
        padding-left: 10px !important;
    }

    .about-fst-left {
        padding-right: 10px !important;
    }

    .about-page-banner {
        min-height: 260px;
    }

    .about-page-title {
        letter-spacing: 0px;
        font-size: 48px;
    }

    h2.elegant-heading {
        font-size: 37px !important;
        line-height: 47px !important;
        margin-bottom: 10px !important;
    }

    .experience-badge .years {
        font-size: 37px;
    }

    .hover-lift {
        padding: 10px 20px !important;
        font-size: 16px !important;
    }

    .Finest_btom {
        margin-bottom: 20px !important;
    }

    .feature-card-elegant h4 {
        font-size: 20px;
    }

    .contact_text p,
    .inner_banner_text {
        font-size: 15px !important;
    }

    .listings-section {
        padding: 50px 0 50px;
    }

    .section-heading {
        font-size: 30px;
    }

    .info-strip {
        margin-top: 40px;
    }

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

    .secure_home_heading {
        font-size: 30px !important;
    }

    .cnt_sec {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }



    /* ------------------------------------------- */
    .property-locations h6 {

        font-size: 14px !important;
        line-height: 24px !important;
    }

    .about-page-cta h2 {
        font-size: 32px !important;
        line-height: 42px;
    }

    .about-page-cta p {
        font-size: 16px !important;
        line-height: 26px;
    }



}

@media only screen and (max-width: 1367px) {}

@media only screen and (max-width: 1280px) {
    .house_content {
        padding: 15px !important;
    }

    .property_box img {
        height: 260px !important;
    }

    .experience-badge .text {
        font-size: 14px;
    }

    .prop-card-price .price-amt {
        font-size: 20px;
    }

    .fall_content {
        margin: 25px !important;
    }

    h3.modern-card-title {
        font-size: 24px !important;
    }

    .top_reasons_section {
        padding: 20px 0 !important;
        margin: 20px 0 !important;
    }

    .why_us_call_action {
        padding: 20px 0 !important;
        margin: 20px 0 !important;
    }

    .stat-label {
        font-size: 13px;
        letter-spacing: 0px;
    }

    .stats-wrapper {
        padding: 40px 10px;
    }

    .comp-feature {
        padding: 20px 20px;
        font-size: 14px;
    }

    .comp-others,
    .comp-us {
        padding: 20px 20px;
        font-size: 14px;
    }

    .modern-reason-card {
        padding: 20px;
    }

    .modern-card-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .comp-us i {
        font-size: 16px !important;
        padding-right: 5px;
    }



}

@media only screen and (max-width: 1150px) {
    .about-full-img {
        height: 535px;
    }

    .about-feat-title {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    :root {
        --font-size-topbar: 15px;
    }

   .feature-card h3 {
       font-size: 28px;
     font-family: var(--paragraph-font-family);
   }
}

@media only screen and (max-width: 1080px) {

.feature-card .card-content {
    padding: 65px 50px 50px 20px;
}

}

@media only screen and (max-width: 1024px) {
    .cnt_sec {
        margin-top: 14px !important;
    }

    .cnt_h5 h5 {
        font-size: 18px !important;
    }

    .step-title {
        font-size: 24px;
        line-height: 30px;
    }

    .make_enq_btn {
        font-size: 14px;
    }

    .inner_banner_text {
        font-size: 15px !important;
    }

    .page-banner {
        min-height: 280px !important;
    }

    .about-page-title {
        font-size: 40px;
        margin-bottom: 10px !important;
    }


    .contact_text p,
    .inner_banner_text {
        font-size: 14px !important;
    }

    h2.elegant-heading {
        font-size: 30px !important;
        line-height: 40px !important;
        margin-bottom: 10px !important;
    }

    .contact_text h2 {
        font-size: 30px !important;
    }

    .cnt_sec {
        margin-top: 60px !important;
    }

    .cnt_frm label {
        font-size: 16px !important;
    }

}

@media (min-width: 992px) {
    .feature-card-middle {
        transform: translateY(-20px);
    }

    .feature-card-middle:hover {
        transform: translateY(-25px);
    }
}

@media (max-width: 991px) {
    .experience-badge {
        bottom: -20px;
        left: 20px;
        padding: 15px 25px;
    }

    .experience-badge .years {
        font-size: 32px;
    }

    .about-main-img {
        height: 400px;
    }

    .feature-card-elegant {
        transform: none !important;
    }

    .about-fst-right {
        padding-left: 2rem !important;
    }

    .about-fst-left {
        padding-right: 2rem !important;
    }

    .cta_box {
        padding: 25px !important;
    }

    .why_us_compare_para {
        margin-bottom: 20px !important;
    }

    .comp-us {
        width: 140px;
    }

    .modern-card-number {
        top: 0px;
        right: 0px;
        font-size: 90px;
    }

    .how_we_compare_section {
        padding: 40px 0px !important;
    }

    .cnt_sec {
        margin-top: 40px !important;
    }

    .map-section {
        height: 360px !important;
    }


}


@media (max-width: 991px) {
    .header-right {
        flex-direction: column;
    }

    .action-buttons {
        margin-top: 15px;
    }

.work-step {
    BORDER: 1px solid #e7e7e7;
    padding: 20px;
}

    /* Mobile Menu Styling */
    #mainNavbar .navbar-nav {
        background-color: #fdfdfd;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .navbar-toggler {
        padding: 6px 10px;
        background-color: var(--color-topbar-bg);
        border: 1px solid #ddd !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .main-nav .nav-item {
        margin-bottom: 5px;
        width: 100%;
        text-align: left;
    }

    .cnt_sec .cnt_para {
        max-width: 65% !important;
        font-size: 16px !important;
    }

    .cnt_sec .flex-column {
        flex-direction: row !important;
    }

    .hero-large-text {
        font-size: 45px;
    }

    :root {
        --hero-title-size: 30px;
    }

    .section-title {
        font-size: 28px;
        line-height: 35px;
    }

    .about-new-title {
        font-size: 28px;
        line-height: 35px;
        width: 320px;
    }

    .about-new-heading {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 10px !important;
    }

    .about-new-intro {
        width: 100%;
    }

    .about_left_text,
    .about_right_text,
    .about-feat-col {
        width: 100% !important;
    }

    .about-top-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 30px !important;
    }

    .navbar-toggler {
        padding: 5px !important;
    }

    .about-features-row {
        margin: 40px 0 0px !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .comforted_box {
        padding-left: 28px;
    }

    .about-full-img {
        height: 480px;
    }

    .features-section {
        padding-bottom: 30px;
    }

    .about-section {
        padding-bottom: 30px;
    }

    .feature-card .card-content {
        padding: 25px 30px 0 25px;
    }

    .inquiry_sec {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .about-section {
        padding-top: 5px;
    }

    .feature-card h3 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .potential {
        margin-top: 0 !important;
    }

    .feature-card .card-link {
        font-size: 16px;
        line-height: 26px;
    }

    .feature-card p {
        line-height: 24px;
        margin-bottom: 30px;
    }

    .top11 .col-lg-12 {
        width: 100% !important;
    }

.card-image img {
    max-height: 145px;
position: static;
}

}

@media (max-width: 768px) {
    :root {
        /* Auto adjust sizes on responsive screen */
        --font-size-topbar: 12px;
        --font-size-nav: 14px;
        --font-size-btn: 14px;
        --font-size-title: 20px;
        --hero-title-size: 35px;
        --hero-subtitle-size: 12px;
        --hero-desc-size: 13px;
        --paragraph-font-size: 13px;
    }

    .top-bar-item {
        display: inline-block;
        padding: 5px 0;
    }

    /* Stack top bar columns on mobile */
    .top-bar .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center !important;
    }

    .top-bar-social {
        justify-content: center;
    }

    .action-buttons {
        width: 100%;
    }

    .action-buttons .btn {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
    }

    .hero-slide {
        min-height: 500px;
        padding: 60px 0 80px 0;
    }

    /* hero-social removed from banner; now in top bar */

    .custom-slider-dots {
        display: none;
        /* Hide dots on very small screens to save space */
    }

    .prop-arrow {
        width: 32px;
        height: 32px;
    }

    .properties-section {
        padding-top: 35px;
        padding-bottom: 25px;
    }

    .about-features-row {
        margin: 40px 0 0px !important;
        display: grid;
        grid-template-columns: 1fr;
    }

    .comforted_box {
        padding-left: 0px;
    }

    .about-feat-col--bordered {
        border-left: none;
        border-right: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px 0;
    }

    .inner_banner_text {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {

    .comp-us,
    .comp-others {
        width: 100px;
        font-size: 0.9rem;
        padding: 15px 10px;
    }

    .comp-feature {
        padding: 15px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

.card-image img {
    position: absolute;
}
}

@media only screen and (max-width: 767px) {

    .application-h1 {
        margin-top: 50px;
    }

    .hero-large-text {
        font-size: 35px;
    }

    :root {
        /* Auto adjust sizes on responsive screen */
        --hero-title-size: 22px;
    }

    .hero-text-block {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .about-full-img {
        height: 400px;
    }

    .section-title {
        font-size: 22px;
        line-height: 32px;
    }

    .about-new-title {
        font-size: 22px;
        line-height: 30px;
        width: 280px;
        margin-bottom: 5px;
    }

    .about-new-heading {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 0px !important;
    }

    .about-feat-title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 7px;
    }

    .about-tagline-text {
        font-size: 16px;
    }

    .feature-card p {
        line-height: 26px;
        margin-bottom: 25px;
    }

    .feature-card .card-content {
        padding: 40px 30px 30px 40px;
    }

    /* ── How It Works – Mobile Redesign ── */
    .how-it-works-section .row.g-4 {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
        position: relative;
    }

    /* Vertical connector line running through all steps */
    .how-it-works-section .row.g-4::before {
        content: '';
        position: absolute;
        left: 35px;
        top: 40px;
        bottom: 40px;
        width: 2px;
        background: linear-gradient(to bottom, var(--btn-renters-bg), #fbb517);
        z-index: 0;
    }

    .step {
        margin-top: 0px;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        position: relative;
    }

    .work-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 16px !important;
        background: #fff !important;
        border-radius: 14px !important;
        padding: 18px 18px 18px 14px !important;
        margin: 0 0 14px 0 !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07) !important;
        border: 1px solid #f0ede8 !important;
        position: relative;
        z-index: 1;
    }

    /* Icon column — circular badge */
    .step-icon {
        flex-shrink: 0 !important;
        width: 62px !important;
        height: 62px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0 !important;
        box-shadow: 0 4px 12px rgba(203, 164, 113, 0.4) !important;
        position: relative;
    }

    .step-icon img {
        width: 34px !important;
        height: 34px !important;
        object-fit: contain !important;
    }

    /* Text column */
    .step-text-col {
        flex: 1;
    }

    .step-title {
        font-size: 17px !important;
        line-height: 22px !important;
        margin-bottom: 6px !important;
    }

    .how-it-works-section .text-sm {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }

    /* Hide the desktop vertical divider on mobile */
    .step-divider {
        display: none !important;
    }

    /* Step number badge on icon */
    .step-icon::after {
        content: attr(data-step);
        position: absolute;
        top: -4px;
        right: -4px;
        width: 20px;
        height: 20px;
        background: #fff;
        color: var(--btn-renters-bg);
        border: 2px solid var(--btn-renters-bg);
        border-radius: 50%;
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .inquiry_sec .text-white {
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }

    .inquiry_sec .site_paragraph {
        margin-bottom: 25px !important;
    }

    .about-fst-left {
        padding-right: 1rem !important;
    }

    .about-page-title {
        font-size: 28px;
    }

    h2.elegant-heading {
        font-size: 22px !important;
        line-height: 35px !important;
        margin-bottom: 10px !important;
    }

    .about-page-story,
    .about-page-features,
    .about-page-cta {
        padding: 0 0 !important;
        margin: 30px 0 !important;
    }

    .contact_text h2 {
        font-size: 25px !important;
    }

    .page-banner {
        min-height: 200px !important;
    }

    .about-main-img {
        height: 350px !important;
    }

    .tour-cta {
        padding: 20px 25px;
        margin-bottom: 30px !important;
    }

    .btn-tour {
        padding: 7px 7px;
        font-size: 11px;
    }

    .btn-gallery {
        padding: 7px 7px;
        font-size: 11px;
    }

    .section-heading {
        font-size: 25px;
    }

    .listings-section {
        padding: 38px 0 38px;
    }

    .tour-cta p {
        font-size: 14px;
    }

    .info-strip {
        margin-top: 30px;
    }

    /* 
    ---------------------------------------------------- */

    .potential_renter {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .about-page-cta h2 {
        font-size: 28px !important;
        line-height: 38px;
    }

    .showing-times-content {
        padding-bottom: 20px !important;
    }

    .how_we_compare_section {
        padding: 0px 0px !important;
    }

    .potential {
        margin-top: 20px !important;
    }


}

@media only screen and (max-width: 600px) {
    .cnt_sec .flex-column {
        flex-direction: column !important;
    }

    .cnt_sec .cnt_para {
        max-width: 100% !important;
        font-size: 16px !important;
    }

    #mainNavbar {
        padding: 0px 0 0px;
        width: 65%;
    }

    .feature-card h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .card-image img {
        max-height: 150px;
    }

    .step h4 {
        margin-bottom: 7px !important;
    }

    .step .step-icon {
        margin-bottom: 7px !important;
    }

    .step {
        margin-bottom: 10px;
    }

    .how-it-works-section {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .feature-card .card-link {
        font-size: 14px;
        line-height: 24px;
    }

    .about_first {
        margin-top: 0;
    }

    .lease-hero {
        padding: 40px 0 60px !important;
    }

    .lease-title {
        font-size: 32px;
    }

    .doc-title {
        font-size: 14px;
    }

    .return-box {
        float: none !important;
        max-width: 100% !important;
        margin-bottom: 20px;
        display: block;
    }

    .comp-feature {
        padding: 15px 10px;
        font-size: 12px;
    }

    .comp-others,
    .comp-us {
        padding: 15px 10px;
        font-size: 13px;
    }

    .comp-others {
        width: 185px;
    }

    cnt_sec .btn-hero {
        font-size: 14px !important;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px !important;
    }

    .legal-section h4 {
        font-size: 1rem !important;
    }

    .phone-group-row {
        display: flex !important;
        flex-direction: column;
        gap: 25px !important;
    }

    .phone-group-row .custom-input {
        width: 100% !important;
    }


}

@media only screen and (max-width: 520px) {
    .hero-text-block {
        margin-left: -20px;
        padding-left: 15px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .hero-content {
        padding-left: 20px;
    }

    #mainNavbar .nav-link {
        padding: 10px 10px !important;
        font-size: 14px;
    }

    .properties-section {
        padding-top: 35px;
        padding-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 21px;
        line-height: 40px;
        margin-bottom: 15px;
    }



    .lease-title {
        font-size: 32px;
    }

    .app-action-bar {
        display: grid !important;
    }

    .app-action-bar div {
        order: 2;
        margin-top: 20px;
    }

    .checkbox-group {
        display: grid !important;
        justify-content: flex-start !important;
        margin-bottom: 20px;
    }

    .section-table,
    .section-table tbody,
    .section-table tr,
    .section-table td,
    .section-table th {
        display: block;
        width: 100% !important;
    }

    .section-table td {
        border-bottom: none;
        padding: 12px;
    }

    .section-table tr {
        border-bottom: 1px solid #a4b0be;
    }

    .section-table tr:last-child {
        border-bottom: 1px solid #a4b0be;
    }

    .form-row-custom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group-custom,
    .form-group-custom.w-50,
    .form-group-custom.w-100 {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0;
        margin-bottom: 15px !important;
    }

    .application-h1 {
        margin-top: 70px;
    }

    .prop-address {
        font-size: 1rem;
    }

    .prop-card-price .price-amt {
        font-size: 18px;
    }

    .contact-info a span {
        font-size: 18px !important;
    }
}

@media only screen and (max-width: 480px) {
    #mainNavbar {
        width: 75%;
    }

    .feature-card .card-link {
        font-size: 14px;
        line-height: 23px;
    }

    .page-banner {
        min-height: 220px !important;
    }

    .comp-header .comp-others {
        font-size: 15px;
    }

    .comp-header .comp-us {
        font-size: 15px;
        padding: 15px 15px;
    }

    .comp-us {
        width: 120px;
    }

    .why_us_call_action_bg {
        padding: 20px !important;
    }

    .comp-others {
        width: 145px;
    }

    .map-locator-section {
        padding-bottom: 20px !important;
        padding-top: 30px !important;
    }

    /* ------------------------------------------- */
    .about-page-cta .rounded-5 {
        padding: 20px !important;
    }

    .rooms-for-rent-content {
        padding-bottom: 0 !important;
    }

    .about-page-cta h2 {
        font-size: 22px !important;
        line-height: 30px;
    }

    .form-blank {
        min-width: auto;
    }

    .form-blank.large {
        min-width: auto;
    }

    .feature-card p {
        max-width: 230px;
    }

}

@media only screen and (max-width: 430px) {
    #mainNavbar {
        width: 100%;
    }

    .properties-slider-container {
        padding: 0 35px;
    }

    .property-details span {
        font-size: 14px;
    }

    .property-location {
        font-size: 14px !important;
    }

    .hero-large-text {
        font-size: 30px;
    }

    :root {
        --hero-title-size: 17px;
    }

    .feature-card .card-content {
        padding: 30px 20px 20px 20px;
    }

    .card-image img {
        max-height: 116px;
    }

    .temp-logo img {
        height: 50px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

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

    .about-feat-col {
        margin-bottom: 5px !important;
    }

    /* Comparison Table Mobile Optimizations */
    .comp-us {
        width: 85px !important;
        font-size: 11px !important;
        padding: 10px 5px !important;
    }

    .comp-others {
        width: 95px !important;
        font-size: 11px !important;
        padding: 10px 5px !important;
    }

    .comp-feature {
        padding: 10px 5px !important;
        font-size: 11px !important;
    }

    .comp-header .comp-us {
        font-size: 11px !important;
        padding: 12px 5px !important;
    }

    .comp-header .comp-others {
        font-size: 11px !important;
        padding: 12px 5px !important;
    }

    .comp-us i {
        font-size: 12px !important;
        padding-right: 2px !important;
    }
}

@media only screen and (max-width: 400px) {
    .first_four_box {
        flex-direction: column;
    }

    .first_four_box .col-6 {
        width: 100% !important;
    }

}

@media only screen and (max-width: 390px) {
    .property-details {
        flex-direction: column;
    }

    .logo-text {
        display: none;
    }

    .logo-tagline {
        display: none;
    }
}