/*
Theme Name: Estatein
Theme URI: https://estatein.com
Description: A modern real estate WordPress theme with custom property listings and responsive design
Author: Estatein Team
Author URI: https://estatein.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estatein
*/

:root {
    --desktop: 1920px;
    --laptop: 1440px;
    --mobile: 480px;
    --black: #000;
    --white: #fff;
    --primary: #703BF7;
    --secondary: #1A1A1A;
    --background: #141414;
    --grey-15: #262626;
    --grey-20: #333333;
    --text: #fff;
    --text-90: #E4E4E7;
    --text-95: #F1F1F3;
    --text-97: #F7F7F8;
    --text-99: #FCFCFD;
    --text-secondary: #999;
    --border: #262626;
    --gutter: 10px;
    --radius: 16px;
    /* --shadow: 0 8px 48px #703BF733; */
    --desc-text: 16px;
}

* {
    box-sizing: border-box;
}

body {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
    font-family: 'Urbanist', sans-serif;
    color: var(--text);
    background: var(--background);
    font-size: 18px;
    line-height: 1.7;
}
body.page-fade-in {
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    body, body.page-fade-in {
        transition: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
}

p {
    line-height: 1.1;
}


.container {
    max-width: var(--laptop);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.properties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
}

.properties-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 32px;
    gap: 16px;
}

.properties-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    max-width: 1320px;
    min-height: 420px;
    transition: height 0.3s;
}

.property-slide {
    transition: opacity 0.3s, transform 0.3s;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .property-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.slider-arrow {
    background: var(--background);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    z-index: 2;
    margin: 0 8px;
    outline: none;
}

.slider-arrow:hover:not(.disabled) {
    background: var(--primary);
    color: #fff;
}

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

.slider-counter {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 18px;
    font-weight: 600;
}

.col-lg-4 {
    width: 33.3333%;
}
@media (max-width: 900px) {
    .col-lg-4 {
        width: 100%;
    }
    .properties-grid {
        flex-direction: column;
        gap: 24px 0;
    }
}

@media (max-width: 600px) {
    .properties-grid {
        flex-direction: column;
    }
    .col-lg-4,
    .col-md-6,
    .col-12 {
        width: 100% !important;
        max-width: 100% !important;
    }
}


[class^="col-"],
[class*=" col-"] {
    padding: 0 10px;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-4 {
    width: 33.333%;
}

.col-lg-3 {
    width: 25%;
}

@media (max-width:768px) {
    .container {
        max-width: 1000px;
    }

    .col-lg-6,
    .col-lg-4,
    .col-lg-3 {
        width: 100%;
    }
}

/* @media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .row {
        flex-direction: column;
    }

    [class^="col-"],
    [class*=" col-"] {
        width: 100%;
    }
} */

/* Announcement Bar */
.announcement-bar {
    background: #18181b url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1920 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.08" d="M0 30C160 60 320 0 480 30C640 60 800 0 960 30C1120 60 1280 0 1440 30C1600 60 1760 0 1920 30V60H0V30Z" fill="white"/></svg>') repeat-x center top;
    color: var(--text-secondary);
    font-size: 0.97rem;
    padding: 0;
    border-bottom: 1px solid var(--border);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

.announcement-text {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.97rem;
    margin: 0 auto;
}

.announcement-link {
    color: var(--white);
    text-decoration: underline;
    margin-left: 6px;
    font-weight: 500;
}

.announcement-link:hover {
    text-decoration: underline;
}

.announcement-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    transition: color 0.2s;
}

.announcement-close:hover {
    color: var(--primary);
}

/* Header */
.site-header {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 32px;
}

.header-nav-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 18px;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img,
.default-logo,
.custom-logo {
    max-width: 110px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.site-title {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Navigation */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 8px;
    background: transparent;
    transition: color 0.2s;
    margin: 0 2px;
    position: relative;
    background-color: var(--black);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #fff;
    background-color: var(--primary);
}

.nav-menu .current-menu-item>a,
.nav-menu .current_page_item>a {
    color: #fff;
}

/* Contact Us Button */
.header-contact {
    display: flex;
    align-items: center;
}

.header-contact-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-left: 12px;
    box-shadow: none;
}

.header-contact-btn:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--primary);
}

/* @media (max-width: 1024px) {
    .header-flex { flex-direction: column; gap: 12px; align-items: stretch; }
    .main-navigation { justify-content: flex-start; }
    .header-contact { justify-content: flex-end; }
} */
@media (max-width: 600px) {
    .site-title {
        font-size: 1.1rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .header-contact-btn {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
}

/* Sticky Header */
.site-header.is-sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--secondary);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
    animation: stickyFadeIn 0.3s;
}

@keyframes stickyFadeIn {
    0% {
        box-shadow: none;
    }

    100% {
        box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
    }
}

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 301;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.2s;
}

.hamburger::before {
    top: -9px;
}

.hamburger::after {
    top: 9px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    z-index: 300;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 27, 0.98);
    color: #fff;
    padding: 32px 24px 24px 24px;
    flex-direction: column;
    align-items: center;
    animation: mobileSlideIn 0.3s;
}

.mobile-menu.open {
    display: flex;
}

@keyframes mobileSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 8px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.mobile-nav-menu a {
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    width: 100%;
    max-width: 240px;
}

.mobile-nav-menu a,
.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item>a {
    color: #fff;
}

.mobile-contact-btn {
    display: block;
    width: 100%;
    max-width: 240px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    transition: background 0.2s;
}

.mobile-contact-btn:hover {
    background: #7c3aed;
}

/* Hide desktop nav and show mobile on small screens */
@media (max-width: 900px) {

    /* Reset container padding */
    .container {
        padding: 0 24px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* Header flex layout */
    .header-flex {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    /* Logo styling */
    .site-branding {
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Hide desktop nav */
    .main-navigation,
    .header-contact,
    .header-nav-group {
        display: none !important;
    }

    /* Hamburger menu */
    .mobile-menu-toggle {
        display: flex !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Ensure logo and hamburger are truly edge-aligned */
    .site-logo-link {
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width: 901px) {

    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Discover Button Overlay */
.hero-discover-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 150px;
    margin-left: auto;
    margin-right: auto;
    max-width: 129px;
    width: 100%;
    height: auto;
    z-index: 10;
    pointer-events: none;
}
.fade-in-hero-btn {
    opacity: 0;
    animation:
        fadeInHeroBtn 2s ease 1.2s forwards,
        rotateHeroBtn 18s linear 2.2s infinite;
}
@keyframes fadeInHeroBtn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes rotateHeroBtn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero */
.hero-section {
    border-radius: 0;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
}

.hero-overline {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 1rem;
}

.hero-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: var(--desc-text);
}

.hero-cta {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    border: none;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-cta:hover {
    background: #5D29D1;
}

.hero-stats {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.stat {
    border-radius: 10px;
    background-color: var( --secondary);
    padding: 20px;
    line-height: 1.2;
    border:2px solid var(--border);
}

.stat:hover {
    border-color: var(--primary);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.hero-text {
    padding: 56px 0 32px 0;
}

.hero-image {
    background: linear-gradient(45deg, #1A1A1A 60%, #703BF7 100%);
    padding: 0;
    /* padding: 56px 0 32px 0; */

}

.hero-image {
    position: relative;
}
.hero-abstract-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.hero-building-img {
    width: 100%;
    height: auto;
}
.hero-image img:not(.hero-abstract-bg),
.hero-building-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    height: auto;
    border-radius: 0;
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}


/* Features */
.features-row {
    margin: 40px 0;
}

@media (max-width: 991px) {
    .features-row .feature-card {
        margin-bottom: 16px;
        margin-right: 0;
    }
}
@media (min-width: 992px) {
    .features-row .feature-card:not(:first-child) {
        margin-left: 0px;
    }
}

.feature-card {
    background: var(--secondary);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    text-align: center;
    padding: 32px 16px;
    margin-bottom: 24px;
    transition: border .2s, box-shadow .2s;
    position: relative;
}

.feature-card-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    z-index: 2;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover .feature-icon img {
    transform: scale(1.5);
}

.feature-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text);
    text-transform: capitalize;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Properties */
.featured-properties {
    margin: 64px 0;
}

.properties-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
        gap: 60px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-sparkles {
    display: block;
    margin-bottom: 8px;
    width: 80px;
    height: auto;
    margin-left: 0;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 32px;
}

.properties-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 18px 0 0 0;
}

.properties-section-btn {
    margin-left: auto;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .properties-section-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .properties-section-btn {
        width: 100%;
        margin-left: 0;
    }
    .section-description {
        margin-right: 0;
    }
}


.property-card {
    background: var(--background);
}
.property-card .button {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.property-card .button:hover {
    background: #5427b9;
    color: #fff;
}
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: 0 2px 16px #0002;
    transition: box-shadow 0.2s, border 0.2s;
}

.property-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.property-details {
    padding: 24px;
}

.property-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}
.property-card .property-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.property-card .property-title a:hover {
    color: var(--primary);
    text-decoration: none;
}

.property-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
}

.property-meta {
    display: flex;
    gap: 18px;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.button {
    background: var(--black);
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    cursor: pointer;
}

.button-on {
    background: var(--);
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    cursor: pointer;
}

.button:hover {
    background: #5D29D1;
}

/* Pagination Controls */
.properties-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 0 0;
}
.pagination-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--background);
    border-radius: 12px;
    padding: 12px 24px;
    box-shadow: 0 2px 16px #0002;
}
.pagination-arrow {
    font-size: 2rem;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0 12px;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}
.pagination-arrow.disabled {
    color: #444;
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination-info {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 8px;
}

/* Testimonials */
.testimonials-section {
    margin: 64px 0;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px 24px;
    margin-bottom: 24px;
    flex: 1 1 0;
    min-width: 280px;
    max-width: 400px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.client-name {
    font-weight: 600;
    color: var(--text);
}

.client-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ */
.faqs-section {
    margin: 64px 0;
}

.faqs-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.faq-card {
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px 20px;
    margin-bottom: 24px;
    flex: 1 1 0;
    min-width: 260px;
    max-width: 360px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA */
.cta-section {
    margin: 64px 0;
}

.cta-banner {
    background: linear-gradient(90deg, #703BF7 0%, #1A1A1A 100%);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow);
}

.cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-action .button {
    font-size: 1.1rem;
    padding: 18px 36px;
}

textarea {
    background: #fff !important;
    color: #181818 !important;
}

/* --- Form Styles --- */
form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea {
    background: #fff;
    color: #181818;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 18px;
    box-sizing: border-box;
    transition: border 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}

button[type="submit"],
input[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
    text-transform: none;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: #5427b9;
}

/* --- Footer Styles (Override) --- */
.site-footer {
    background: var(--black);
    color: #fff;
    margin-top: 0;
    font-family: inherit;
}
.footer-content, .footer-menu, .site-info { display: none !important; }

.footer-cta-section {
    background: var(--black);
    color: #fff;
    padding: 48px 0 32px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.footer-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/footer-bg.svg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.footer-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}
.footer-cta-left {
    flex: 1 1 0;
}
.footer-cta-title {
    margin-bottom: 10px;
}
.footer-cta-desc {
    margin-bottom: 0;
}
.footer-cta-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 700px) {
    .footer-cta-content {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 18px;
    }
    .footer-cta-right {
        justify-content: flex-start;
    }
}
.footer-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-cta-desc {
    color: var(--text-secondary, #bbb);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-cta-btn {
    background: var(--primary, #7b3ff2);
    color: #fff;
    border-radius: 10px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.footer-cta-btn:hover {
    background: var(--primary-dark, #5427b9);
}

.footer-main {
    background: var(--black);
    padding: 38px 0 22px 0;
    border-bottom: 1px solid #222;
}
.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-logo-newsletter {
    min-width: 220px;
    max-width: 260px;
}
.footer-logo {
    margin-bottom: 22px;
}
.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: #181818;
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 16px;
}
.footer-newsletter-form input[type="email"] {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 0 8px 6px;
    flex: 1;
    font-size: 1rem;
    outline: none;
}
.footer-newsletter-form .newsletter-btn {
    background: none;
    border: none;
    color: var(--primary, #7b3ff2);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 8px;
    transition: color 0.2s;
}
.footer-newsletter-form .newsletter-btn:hover {
    color: var(--primary-dark, #5427b9);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-left: 32px;
    flex: 1 1 0;
}
.footer-col {
    min-width: 130px;
    margin-bottom: 12px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--primary, #7b3ff2);
}

.footer-bottom-bar {
    background: #161616;
    color: #bbb;
    padding: 12px 0;
    font-size: 0.97rem;
}
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-copyright {
    flex: 1;
}
.footer-terms a {
    color: #bbb;
    text-decoration: underline;
    margin-left: 18px;
    font-size: 0.97rem;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social-icon {
    color: #bbb;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}
.footer-social-icon:hover {
    color: var(--primary, #7b3ff2);
}

@media (max-width: 900px) {
    .footer-main-row {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .footer-links {
        margin-left: 0;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .footer-cta-title {
        font-size: 1.3rem;
    }
    .footer-main {
        padding: 28px 0 8px 0;
    }
    .footer-links {
        flex-direction: column;
        gap: 18px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Utility */
::-webkit-input-placeholder {
    color: var(--text-secondary);
}

::-moz-placeholder {
    color: var(--text-secondary);
}

:-ms-input-placeholder {
    color: var(--text-secondary);
}

::placeholder {
    color: var(--text-secondary);
}

input,
select,
textarea {
    background: var(--background);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    margin-bottom: 12px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}

@media (max-width: 1024px) {

    .hero-section,
    .cta-banner,
    .testimonials-grid,
    .faqs-grid,
    .properties-section {
        flex-direction: column;
        gap: 24px;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 8px;
    }

    .cta-banner {
        padding: 24px 10px;
    }

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