/**
 * Home Page Styles
 * Modern, conversion-optimized styling for all 15 homepage sections
 */

/* ===========================
   Global Section Styles
   =========================== */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #b8b8c8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gold-text {
    color: #d4af37;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
   1. HERO SECTION
   =========================== */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(7, 7, 20, 0.85) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(7, 7, 20, 0.85) 100%),
        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920&h=1080&fit=crop') center/cover no-repeat;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(7, 7, 20, 0.3) 0%, transparent 50%, rgba(7, 7, 20, 0.3) 100%),
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Search */
.featured-search {
    margin: 40px 0 40px;
}

.search-form {
    display: flex;
    gap: 12px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(7, 7, 20, 0.6);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.search-field:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.search-field i {
    color: #d4af37;
    font-size: 18px;
}

.search-field input,
.search-field select {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.search-field input::placeholder {
    color: #b8b8c8;
}

.search-field select {
    cursor: pointer;
}

.search-field select option {
    background: #1a1a2e;
    color: #ffffff;
}

.search-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    color: #070714;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Section-specific button sizing */
.hero-actions .btn {
    padding: 12px 28px;
    font-size: 15px;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover {
    transform: translateY(-3px);
}

.section-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.owners-actions .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.newsletter-form .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.trust-badge i {
    color: #d4af37;
    font-size: 18px;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 28px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

/* ===========================
   2. STATS BAR
   =========================== */
.home-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 26px;
    color: #d4af37;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

/* ===========================
   3. FEATURED PROPERTIES
   =========================== */
.home-featured {
    padding: 100px 0;
    background: #0f0f1e;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Property card (real properties from property-card.php) */
.featured-grid .property-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-grid .property-card:hover {
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.featured-grid .property-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
}

.featured-grid .property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 16px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 50px;
    color: #070714;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-grid .property-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-grid .status-available {
    background: rgba(46, 213, 115, 0.2);
    border: 1px solid rgba(46, 213, 115, 0.4);
    color: #2ed573;
}

.featured-grid .status-occupied,
.featured-grid .status-unavailable {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: #ff4757;
}

.featured-grid .property-card-link {
    display: block;
    text-decoration: none;
}

.featured-grid .property-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.featured-grid .property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.featured-grid .property-card:hover .property-card-image img {
    transform: scale(1.1);
}

.featured-grid .property-card-image .property-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
}

.featured-grid .property-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.featured-grid .property-card-content {
    padding: 24px;
}

.featured-grid .property-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-grid .property-card-title a {
    color: #ffffff;
    text-decoration: none;
}

.featured-grid .property-card-title a:hover {
    color: #d4af37;
}

.featured-grid .property-card-location {
    color: #b8b8c8;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-grid .property-card-location i,
.featured-grid .property-card-type i {
    color: #d4af37;
}

.featured-grid .property-card-type {
    color: #b8b8c8;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-grid .property-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 16px;
}

.featured-grid .property-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.featured-grid .property-card-price .price-amount {
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
}

.featured-grid .property-card-price .price-period {
    font-size: 14px;
    color: #b8b8c8;
}

.featured-grid .property-card-beds {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-grid .property-card-beds i {
    color: #d4af37;
}

.featured-grid .property-card-beds strong {
    color: #d4af37;
}

.featured-grid .property-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    color: #070714;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    float: right;
}

.featured-grid .property-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.featured-grid .property-card-content::after {
    content: '';
    display: table;
    clear: both;
}

.featured-grid .property-card-btn i {
    transition: transform 0.3s ease;
}

.featured-grid .property-card-btn:hover i {
    transform: translateX(4px);
}

/* Property placeholder cards - attractive design without images */
.property-card-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.property-card-placeholder:hover {
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.placeholder-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
    z-index: 1;
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.property-card-placeholder:hover .placeholder-image img {
    transform: scale(1.1);
}

.placeholder-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.placeholder-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.placeholder-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.placeholder-location {
    color: #b8b8c8;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.placeholder-location i {
    color: #d4af37;
}

.placeholder-amenities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.placeholder-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(7, 7, 20, 0.6);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.placeholder-amenities span i {
    color: #d4af37;
    font-size: 14px;
}

.placeholder-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 16px;
}

.placeholder-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.placeholder-price .price-amount {
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
}

.placeholder-price .price-period {
    font-size: 14px;
    color: #b8b8c8;
}

.placeholder-beds {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.placeholder-beds i {
    color: #d4af37;
}

.placeholder-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    color: #070714;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    float: right;
}

.placeholder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.placeholder-btn i {
    transition: transform 0.3s ease;
}

.placeholder-btn:hover i {
    transform: translateX(4px);
}

.placeholder-content::after {
    content: '';
    display: table;
    clear: both;
}

/* ===========================
   4. HOW IT WORKS
   =========================== */
.home-how-it-works {
    padding: 100px 0;
    background: #070714;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #070714;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px;
}

.step-icon i {
    font-size: 36px;
    color: #d4af37;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-text {
    color: #b8b8c8;
    line-height: 1.6;
    font-size: 15px;
}

/* ===========================
   5. WHY CHOOSE US
   =========================== */
.home-why-choose {
    padding: 100px 0;
    background: #0f0f1e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon i {
    font-size: 32px;
    color: #d4af37;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit-text {
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.benefit-list li i {
    color: #d4af37;
    font-size: 14px;
}

/* ===========================
   6. PROPERTY TYPES
   =========================== */
.home-property-types {
    padding: 100px 0;
    background: #070714;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.type-card {
    background:
        linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 7, 20, 0.88) 0%, rgba(26, 26, 46, 0.8) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.type-card:hover .type-overlay {
    background: linear-gradient(135deg, rgba(7, 7, 20, 0.75) 0%, rgba(26, 26, 46, 0.65) 100%);
}

.type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.type-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: rgba(7, 7, 20, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.type-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, transparent, #d4af37);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.type-card:hover .type-icon::before {
    opacity: 1;
}

.type-card:hover .type-icon {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    transform: scale(1.1);
}

.type-icon i {
    font-size: 36px;
    color: #d4af37;
}

.type-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.type-count {
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.type-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 8px 20px;
    background: rgba(7, 7, 20, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.type-card:hover .type-link {
    color: #d4af37;
    gap: 12px;
}

/* ===========================
   7. POPULAR CITIES
   =========================== */
.home-cities {
    padding: 100px 0;
    background: #0f0f1e;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.city-card {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(7, 7, 20, 0.92) 0%, rgba(7, 7, 20, 0.45) 50%, rgba(7, 7, 20, 0.2) 100%);
    z-index: 1;
}

.city-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.city-card:hover .city-content {
    transform: translateY(-4px);
    transition: transform 0.4s ease;
}

.city-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.city-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.city-card:hover .city-name::after {
    width: 100%;
}

.city-count {
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.city-count::before {
    content: '🏠';
    font-size: 16px;
}

/* ===========================
   8. TESTIMONIALS
   =========================== */
.home-testimonials {
    padding: 100px 0;
    background: #070714;
}

.testimonials-slider {
    margin: 0 -15px;
}

.testimonials-slider .slick-list {
    padding: 20px 0;
}

.testimonials-slider .slick-slide {
    padding: 0 15px;
}

.testimonials-slider .slick-slide > div {
    display: flex;
    height: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #d4af37;
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-role {
    color: #b8b8c8;
    font-size: 14px;
}

/* Override fade-in animation for slick slides */
.testimonials-slider.slick-initialized .testimonial-card {
    opacity: 1;
    transform: none;
}

/* Slick nav arrows */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-prev { left: 10px; top: 45%; }
.testimonials-slider .slick-next { right: 10px; top: 45%; }

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: #d4af37;
}

.testimonials-slider .slick-prev:focus,
.testimonials-slider .slick-next:focus {
    background: rgba(212, 175, 55, 0.15);
    outline: none;
}

.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #d4af37;
    opacity: 1;
    transition: color 0.3s ease;
}

.testimonials-slider .slick-prev:hover::before,
.testimonials-slider .slick-next:hover::before {
    color: #070714;
}

.testimonials-slider .slick-prev:focus::before,
.testimonials-slider .slick-next:focus::before {
    color: #d4af37;
}

.testimonials-slider .slick-prev::before {
    content: '\f053';
}

.testimonials-slider .slick-next::before {
    content: '\f054';
}

/* Slick dots */
.testimonials-slider .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 15px;
}

.testimonials-slider .slick-dots li {
    margin: 0 6px;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li button::before {
    display: none;
}

.testimonials-slider .slick-dots li.slick-active button {
    background: #d4af37;
    transform: scale(1.2);
}

/* ===========================
   9. FOR PROPERTY OWNERS
   =========================== */
.home-for-owners {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #070714 100%);
}

.owners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.owners-content .section-badge {
    margin-bottom: 20px;
}

.owners-content .section-title {
    margin-bottom: 20px;
    text-align: left;
}

.owners-text {
    color: #b8b8c8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.owners-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.owners-benefits li {
    color: #ffffff;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.owners-benefits li i {
    color: #d4af37;
    font-size: 20px;
}

.owners-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.owner-stat {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.owner-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 4px;
}

.owner-stat-label {
    font-size: 14px;
    color: #b8b8c8;
}

.owners-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.owners-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.owners-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.owners-image:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

/* ===========================
   10. APP DOWNLOAD
   =========================== */
.home-app-download {
    padding: 100px 0;
    background: #0f0f1e;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content .section-badge {
    margin-bottom: 20px;
}

.app-content .section-title {
    margin-bottom: 20px;
    text-align: left;
}

.app-text {
    color: #b8b8c8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features li {
    color: #ffffff;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.app-features li i {
    color: #d4af37;
    font-size: 18px;
}

.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    grid-column: 1;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    padding: 14px 24px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-badge:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.app-badge i {
    font-size: 32px;
    color: #ffffff;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-small {
    font-size: 11px;
    color: #b8b8c8;
}

.badge-large {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #000000;
    border-radius: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000000;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.phone-screen {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f1e;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ===========================
   11. FAQ
   =========================== */
.home-faq {
    padding: 100px 0;
    background: #070714;
}

.faq-grid {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item[open] {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.faq-item[open]::before {
    opacity: 1;
}

.faq-question {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::-moz-list-bullet {
    list-style: none;
}

.faq-question h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item[open] .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 16px;
    color: #b8b8c8;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* ===========================
   12. NEWSLETTER
   =========================== */
.home-newsletter {
    padding: 80px 0;
    background: #0f0f1e;
}

.newsletter-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 60px;
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before,
.newsletter-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-card::before {
    top: -150px;
    left: -150px;
}

.newsletter-card::after {
    bottom: -150px;
    right: -150px;
}

.newsletter-content {
    margin-bottom: 40px;
}

.newsletter-content i {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.newsletter-text {
    color: #b8b8c8;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(7, 7, 20, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.newsletter-form input::placeholder {
    color: #b8b8c8;
}

.newsletter-privacy {
    color: #b8b8c8;
    font-size: 14px;
    margin: 0;
}

.newsletter-privacy i {
    color: #d4af37;
    margin-right: 8px;
}

/* ===========================
   13. FINAL CTA
   =========================== */
.home-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #070714 0%, #1a1a2e 50%, #070714 100%);
    overflow: hidden;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 50px 60px 70px;
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-card::before,
.cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::before {
    top: -150px;
    left: -150px;
}

.cta-card::after {
    bottom: -150px;
    right: -150px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 24px;
    display: block;
}

.cta-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text {
    color: #b8b8c8;
    font-size: 17px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-actions .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
}

.cta-actions .btn-outline {
    padding: 10px 24px;
    font-size: 14px;
}

.cta-trust {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(7, 7, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.trust-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.trust-item i {
    color: #d4af37;
    font-size: 16px;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Fade-in animation classes */
.step-card,
.benefit-card,
.type-card,
.city-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.animate-in,
.benefit-card.animate-in,
.type-card.animate-in,
.city-card.animate-in,
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.15s; }
.benefit-card:nth-child(3) { transition-delay: 0.2s; }
.benefit-card:nth-child(4) { transition-delay: 0.25s; }
.benefit-card:nth-child(5) { transition-delay: 0.3s; }
.benefit-card:nth-child(6) { transition-delay: 0.35s; }

.type-card:nth-child(1) { transition-delay: 0.1s; }
.type-card:nth-child(2) { transition-delay: 0.15s; }
.type-card:nth-child(3) { transition-delay: 0.2s; }
.type-card:nth-child(4) { transition-delay: 0.25s; }
.type-card:nth-child(5) { transition-delay: 0.3s; }
.type-card:nth-child(6) { transition-delay: 0.35s; }

.city-card:nth-child(1) { transition-delay: 0.1s; }
.city-card:nth-child(2) { transition-delay: 0.15s; }
.city-card:nth-child(3) { transition-delay: 0.2s; }
.city-card:nth-child(4) { transition-delay: 0.25s; }
.city-card:nth-child(5) { transition-delay: 0.3s; }
.city-card:nth-child(6) { transition-delay: 0.35s; }
.city-card:nth-child(7) { transition-delay: 0.4s; }
.city-card:nth-child(8) { transition-delay: 0.45s; }

.testimonial-card { transition-delay: 0.1s; }

/* Tablet */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .home-hero,
    .home-featured,
    .home-steps,
    .home-benefits,
    .home-types,
    .home-cities,
    .home-testimonials,
    .home-for-owners,
    .home-app-download,
    .home-faq,
    .home-cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .owners-grid,
    .app-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .owners-content .section-title,
    .app-content .section-title {
        text-align: center;
    }

    .owners-content .section-badge,
    .app-content .section-badge {
        display: block;
        text-align: center;
    }

    .owners-text,
    .app-text {
        text-align: center;
    }

    .owners-benefits,
    .app-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .owners-stats {
        justify-content: center;
    }

    .owners-actions,
    .app-badges {
        justify-content: center;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .featured-grid .property-card-image {
        height: 180px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

    /* Newsletter */
    .newsletter-card {
        padding: 50px 40px;
    }

    /* CTA */
    .cta-card {
        padding: 50px 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

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

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

    /* Hero */
    .home-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .search-form {
        flex-direction: column;
        gap: 12px;
    }

    .search-field {
        min-width: 100%;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .section-cta .btn,
    .owners-actions .btn,
    .newsletter-form .btn,
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .owners-actions {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-scroll {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

    /* Featured */
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid .property-card-image {
        height: 180px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Types */
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .type-card {
        padding: 30px 20px;
    }

    /* Cities */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-card {
        height: 160px;
    }

    /* Testimonials */
    .testimonials-slider {
        margin: 0 -10px;
    }

    .testimonials-slider .slick-slide {
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonials-slider .slick-prev { left: 5px; }
    .testimonials-slider .slick-next { right: 5px; }

    /* Owners */
    .owners-stats {
        flex-direction: column;
        gap: 15px;
    }

    .owners-actions {
        flex-direction: column;
    }

    /* App */
    .app-badges {
        flex-direction: row;
        gap: 8px;
    }

    .app-badges .app-badge {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        gap: 8px;
    }

    .app-badges .app-badge i {
        font-size: 24px;
    }

    .app-badges .badge-large {
        font-size: 13px;
    }

    .app-badges .badge-small {
        font-size: 10px;
    }

    .phone-mockup {
        width: 240px;
        height: 420px;
    }

    /* Newsletter */
    .newsletter-card {
        padding: 40px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-title {
        font-size: 24px;
    }

    /* CTA */
    .cta-card {
        padding: 50px 28px;
    }

    .cta-icon {
        font-size: 44px;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .trust-item {
        justify-content: center;
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
        max-width: 320px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

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

    .hero-title {
        font-size: 28px;
    }

    .types-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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