/* Start custom CSS for page-settings *//* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2D3748;
    line-height: 1.6;
    overflow-x: hidden;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2D3748;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background: #FFFFFF;
    color: #2D3748;
    border: 2px solid #E2E8F0;
}

.btn-secondary:hover {
    border-color: #FF6B6B;
    color: #FF6B6B;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);

    /* 
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #2D3748;
}
.logo i {
    color: #FF6B6B;
    font-size: 28px;
}
.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
}
.logo-accent {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-link {
    color: #2D3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: #FF6B6B;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
}
.mobile-menu-toggle {
    display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        z-index: -1;
    }

    .gradient-overlay {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 184, 140, 0.1) 100%);
        border-radius: 0 0 0 50%;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 20px;
        background: #FFFFFF;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #FF6B6B;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 24px;
    }

    .hero-badge i {
        color: #FFD700;
    }

    .hero-title {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 18px;
        color: #718096;
        margin-bottom: 36px;
        max-width: 500px;
    }

    .hero-buttons {
        display: flex;
        margin-bottom: 48px;
        flex-wrap: wrap;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: left;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 14px;
        color: #718096;
    }

    .hero-image {
        position: relative;
    }

    .image-card {
        position: relative;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        animation: float 6s ease-in-out infinite;
    }

    .image-card img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    .image-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #FFFFFF;
        padding: 12px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #FF6B6B;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
    }

    .floating-card {
        position: absolute;
        bottom: 30px;
        left: -30px;
        background: #FFFFFF;
        padding: 20px;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        animation: float 6s ease-in-out infinite 1s;
    }

    .floating-card-content {
        display: flex;
        align-items: center;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 20px;
    }

    .floating-title {
        font-weight: 600;
        color: #2D3748;
        margin-bottom: 4px;
    }

    .floating-subtitle {
        font-size: 14px;
        color: #718096;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* ===================================
   Section Headers
   =================================== */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-badge {
        display: inline-block;
        padding: 8px 20px;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #FF6B6B;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 18px;
        color: #718096;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ===================================
   Features Section
   =================================== */
    .features {
        padding: 10px 0;
        background: #FFFFFF;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 100%));
    }

    .feature-card {
        background: #FFFFFF;
        padding: 40px 30px;
        border-radius: 24px;
        border: 2px solid #E2E8F0;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: #FF6B6B;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #FF6B6B;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        color: #FFFFFF;
        transform: scale(1.1);
    }

    .feature-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-description {
        color: #718096;
        font-size: 16px;
    }

    /* ===================================
   Apartments Section
   =================================== */
    .apartments {
        padding: 10px 0;
        background: #F7FAFC;
    }

    .apartments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 100%));
    }

    .apartment-card {
        background: #FFFFFF;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .apartment-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    }

    .apartment-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .apartment-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .apartment-card:hover .apartment-image img {
        transform: scale(1.1);
    }

    .apartment-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        color: #FFFFFF;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .apartment-content {
        padding: 30px;
    }

    .apartment-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .apartment-name {
        font-size: 26px;
    }

    .apartment-rating {
        display: flex;
        align-items: center;
        color: #FFD700;
        font-weight: 600;
    }

    .apartment-description {
        color: #718096;
        margin-bottom: 20px;
        font-size: 15px;
    }

    .apartment-features {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #E2E8F0;
    }

    .apartment-feature {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #718096;
    }

    .apartment-feature i {
        color: #FF6B6B;
    }

    .apartment-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .apartment-price {
        display: flex;
        align-items: baseline;
    }

    .price-amount {
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
    }

    .price-period {
        color: #718096;
        font-size: 16px;
    }

    /* ===================================
   About Section
   =================================== */
    .about {
        padding: 10px 0;
        background: #FFFFFF;
    }

    .about-content {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 32px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .about-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: #FFFFFF;
        padding: 24px;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 24px;
    }

    .badge-title {
        font-weight: 700;
        font-size: 24px;
        color: #2D3748;
    }

    .badge-subtitle {
        font-size: 14px;
        color: #718096;
    }

    .about-text .section-badge {
        text-align: left;
    }

    .about-description {
        font-size: 16px;
        color: #718096;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-features {
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 32px 0;
    }

    .about-feature {
        display: flex;
        align-items: center;
        font-weight: 500;
    }

    .about-feature i {
        color: #FF6B6B;
        font-size: 20px;
    }

    /* ===================================
   Testimonials Section
   =================================== */
    .testimonials {
        padding: 10px 0;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 100%));
    }

    .testimonial-card {
        background: #FFFFFF;
        padding: 36px;
        border-radius: 24px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .testimonial-rating {
        display: flex;
        margin-bottom: 20px;
        color: #FFD700;
    }

    .testimonial-text {
        font-size: 16px;
        color: #2D3748;
        line-height: 1.8;
        margin-bottom: 24px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF6B6B;
        font-size: 20px;
    }

    .author-name {
        font-weight: 600;
        color: #2D3748;
        margin-bottom: 4px;
    }

    .author-location {
        font-size: 14px;
        color: #718096;
    }

    /* ===================================
   Contact Section
   =================================== */
    .contact {
        padding: 100px 0;
        background: #FFFFFF;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .contact-description {
        font-size: 16px;
        color: #718096;
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .contact-method {
        display: flex;
        align-items: center;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF6B6B;
        font-size: 24px;
        flex-shrink: 0;
    }

    .method-label {
        font-size: 14px;
        color: #718096;
        margin-bottom: 4px;
    }

    .method-value {
        font-weight: 600;
        color: #2D3748;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .method-value:hover {
        color: #FF6B6B;
    }

    .social-links {
        display: flex;
    }

    .social-link {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF6B6B;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        color: #FFFFFF;
        transform: translateY(-4px);
    }

    .contact-form-wrapper {
        background: #F7FAFC;
        padding: 40px;
        border-radius: 32px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
    }

    .form-row {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-weight: 600;
        color: #2D3748;
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        border: 2px solid #E2E8F0;
        border-radius: 16px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 16px;
        transition: all 0.2s ease;
        background: #FFFFFF;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #FF6B6B;
        box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    /* ===================================
   Footer
   =================================== */
    .footer {
        background: #2D3748;
        color: #FFFFFF;
        padding: 60px 0 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 36% 18% 18% 28%;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
        display: flex;
        align-items: center;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .footer-logo i {
        color: #FF6B6B;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 24px;
        line-height: 1.8;
    }

    .footer-social {
        display: flex;
    }

    .footer-social .social-link {
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }

    .footer-social .social-link:hover {
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: #FFFFFF;
    }

    .footer-contact {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .footer-contact li {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-contact i {
        color: #FF6B6B;
        width: 20px;
    }

    .footer-contact a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #FFFFFF;
    }

    .footer-bottom {
        padding: 30px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
    }

    /* ===================================
   Scroll to Top Button
   =================================== */
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FF6B6B 0%, #FFB88C 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    }

    /* ===================================
   Responsive Design
   =================================== */
    @media (max-width: 1024px) {

        .hero-content,
        .about-content,
        .contact-content {
            grid-template-columns: 100%;
        }

        .hero-image {
            order: -1;
        }

        .hero-title {
            font-size: 48px;
        }

        .section-title {
            font-size: 36px;
        }

        .footer-content {
            grid-template-columns: 50% 50%;
        }
    }

    /* Tablets and Small Laptops */
    @media (max-width: 992px) {

        .apartments-grid,
        .features-grid,
        .testimonials-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 12px;
            width: 100%;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .nav-menu {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: #FFFFFF;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .nav-actions .btn {
            display: none;
        }

        .hero {
            min-height: 0;
            padding: 100px 0 60px;
        }

        .hero-title {
            font-size: 36px;
        }

        .hero-description {
            font-size: 16px;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

        .hero-description {
            max-width: 100%;
        }

        .section-description {
            max-width: 100%;
        }

        .floating-card {
            left: 0;
            bottom: 20px;
            max-width: calc(100% - 24px);
        }

        .image-badge {
            display: none;
        }

        .image-card img {
            height: 350px;
        }

        .section-title {
            font-size: 32px;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .features,
        .apartments,
        .about,
        .testimonials,
        .contact {
            padding: 60px 0;
        }

        .apartments-grid,
        .features-grid,
        .testimonials-grid {
            grid-template-columns: 100%;
        }

        .apartment-image {
            height: 240px;
        }

        .apartment-features {
            flex-direction: column;
            align-items: flex-start;
        }

        .apartment-features>* {
            margin-right: 0;
            margin-bottom: 8px;
        }

        .about-image img {
            height: 400px;
        }

        .form-row {
            grid-template-columns: 100%;
        }

        .footer-content {
            grid-template-columns: 100%;
        }

        .footer-col {
            margin-bottom: 30px;
        }

        .footer-col:last-child {
            margin-bottom: 0;
        }

        .contact-form-wrapper {
            padding: 30px 20px;
            margin: 0;
            width: 100%;
        }

        .apartment-card,
        .feature-card,
        .testimonial-card {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }
    }

    /* Large Mobile Devices */
    @media (max-width: 576px) {
        .container {
            padding: 0 12px;
            width: 100%;
        }

        .hero-title {
            font-size: 32px;
        }

        .section-title {
            font-size: 28px;
        }

        .btn {
            padding: 12px 24px;
            font-size: 15px;
        }

        .btn-lg {
            padding: 14px 28px;
            font-size: 16px;
        }

        .image-card img {
            height: 300px;
        }

        .apartment-image {
            height: 220px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            font-size: 28px;
        }

        .about-image img {
            height: 350px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 12px;
            width: 100%;
        }

        .hero {
            padding: 90px 0 50px;
        }

        .hero-title {
            font-size: 28px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 15px;
        }

        .section-title {
            font-size: 26px;
        }

        .stat-number {
            font-size: 28px;
        }

        .stat-label {
            font-size: 12px;
        }

        .hero-stats {
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-stats>* {
            margin-right: 0;
            margin-bottom: 16px;
        }

        .hero-stats>*:last-child {
            margin-bottom: 0;
        }

        .image-card {
            border-radius: 20px;
        }

        .image-card img {
            height: 280px;
        }

        .floating-card {
            left: 15px;
            bottom: 15px;
            padding: 16px;
        }

        .features,
        .apartments,
        .about,
        .testimonials,
        .contact {
            padding: 50px 0;
        }

        .feature-card {
            padding: 28px 20px;
        }

        .apartment-card {
            border-radius: 20px;
            width: 100%;
            min-width: unset;
            max-width: 100%;
            margin: 0 0 20px 0;
            box-sizing: border-box;
        }

        .apartments-grid {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
        }

        .apartment-content {
            padding: 20px;
        }

        .apartment-name {
            font-size: 20px;
        }

        .apartment-image {
            height: 200px;
        }

        .about-image img {
            height: 300px;
        }

        .about-badge {
            right: 15px;
            bottom: 15px;
            padding: 12px;
        }

        .about-features {
            grid-template-columns: 100%;
        }

        .testimonial-card {
            padding: 28px;
        }

        .contact-form-wrapper {
            padding: 24px 16px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            font-size: 15px;
        }

        .footer {
            padding: 40px 0 0;
        }

        .footer-col {
            margin-bottom: 24px;
        }

        .btn {
            max-width: 100%;
            box-sizing: border-box;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            box-sizing: border-box;
        }

        .nav-container,
        .hero-content,
        .about-content,
        .contact-content {
            width: 100%;
        }
    }

    /* Small Mobile Devices (iPhone SE and below) */
    @media (max-width: 375px) {

        /* Container adjustments */
        .container {
            padding: 0 12px;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Navbar - FIX HEADER CUTOFF */
        .nav-container {
            padding: 12px 10px;
            width: 100%;
            box-sizing: border-box;
        }

        .logo img {
            height: 40px !important;
            max-width: 150px;
        }

        .nav-actions .btn {
            padding: 10px 16px;
            font-size: 13px;
            white-space: nowrap;
        }

        /* Hero Section Improvements - FIX CUTOFF */
        .hero {
            padding: 100px 0 40px;
            overflow-x: hidden;
        }

        .hero-content {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .hero-text {
            max-width: 100%;
        }

        .hero-title {
            font-size: 28px;
            line-height: 1.15;
            margin-bottom: 16px;
            word-wrap: break-word;
        }

        .hero-description {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 100%;
        }

        .hero-badge {
            font-size: 12px;
            padding: 6px 16px;
            margin-bottom: 16px;
        }

        /* Hero Buttons - Better Wrapping */
        .hero-buttons {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-bottom: 32px;
        }

        .hero-buttons>* {
            margin-right: 0;
            margin-bottom: 12px;
            width: 100%;
            justify-content: center;
        }

        .hero-buttons>*:last-child {
            margin-bottom: 0;
        }

        /* Hero Stats */
        .stat-number {
            font-size: 28px;
        }

        .stat-label {
            font-size: 11px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            width: 100%;
        }

        .hero-stats>* {
            margin-right: 0;
        }

        /* Hero Image */
        .image-card img {
            height: 240px;
        }

        .floating-card {
            padding: 12px;
            max-width: 200px;
        }

        .floating-title {
            font-size: 14px;
        }

        .floating-subtitle {
            font-size: 12px;
        }

        /* Section Titles */
        .section-title {
            font-size: 26px;
            line-height: 1.2;
        }

        .section-badge {
            font-size: 12px;
            padding: 6px 16px;
        }

        /* Buttons - Global */
        .btn {
            padding: 14px 20px;
            font-size: 14px;
            white-space: normal;
            text-align: center;
        }

        .btn-lg {
            padding: 16px 24px;
            font-size: 15px;
        }

        .btn i {
            margin-right: 6px;
        }

        /* Apartment Cards - FULL WIDTH NO CONSTRAINTS */
        .apartment-card {
            width: 100% !important;
            min-width: unset !important;
            max-width: 100% !important;
            margin: 0 0 20px 0 !important;
            border-radius: 24px;
            box-sizing: border-box;
        }

        .apartments-grid {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            width: 100% !important;
            padding: 0 !important;
        }

        .apartment-image {
            height: 200px;
        }

        .apartment-content {
            padding: 20px 16px;
        }

        .apartment-name {
            font-size: 20px;
        }

        .apartment-description {
            font-size: 14px;
        }

        .apartment-badge {
            font-size: 12px;
            padding: 6px 12px;
        }

        .apartment-footer .btn {
            width: 100%;
            padding: 14px 20px;
        }

        /* Feature Cards */
        .feature-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .feature-card {
            padding: 24px 16px;
        }

        /* About Section */
        .about-image img {
            height: 260px;
        }

        /* Sections Padding */
        .features,
        .apartments,
        .about,
        .testimonials,
        .contact {
            padding: 40px 0;
        }
    }

    /* ===================================
   Animations
   =================================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-up {
        animation: fadeInUp 0.6s ease-out;
    }

    /* ===================================
   Utility Classes
   =================================== */
    .text-center {
        text-align: center;
    }

    .mt-2 {
        margin-top: 20px;
    }

    .mb-2 {
        margin-bottom: 20px;
    }

    /* ===================================
   CSS COMPATIBILITY FIX
   Replace this section at the END of your style.css
   =================================== */
    /* Fallback for browsers that don't support 'gap' property */
    /* This provides margin-based spacing as an alternative */
    /* Button gap fix */
    .btn {
        margin-right: 8px;
    }

    .btn:last-child {
        margin-right: 0;
    }

    /* Logo gap fix */
    .logo>*+* {
        margin-left: 12px;
    }

    /* Nav menu gap fix */
    .nav-menu li {
        margin-right: 40px;
    }

    .nav-menu li:last-child {
        margin-right: 0;
    }

    /* Nav actions gap fix */
    .nav-actions>* {
        margin-right: 20px;
    }

    .nav-actions>*:last-child {
        margin-right: 0;
    }

    /* Hero content - use padding instead of gap for grid */
    .hero-content {}

    /* Hero badge gap fix */
    .hero-badge>*+* {
        margin-left: 8px;
    }

    /* Hero buttons gap fix */
    .hero-buttons>* {
        margin-right: 16px;
        margin-bottom: 16px;
    }

    .hero-buttons>*:last-child {
        margin-right: 0;
    }

    /* Hero stats gap fix */
    .hero-stats>* {
        margin-right: 40px;
    }

    .hero-stats>*:last-child {
        margin-right: 0;
    }

    /* Image badge gap fix */
    .image-badge>*+* {
        margin-left: 8px;
    }

    /* Floating card content gap fix */
    .floating-card-content>*+* {
        margin-left: 16px;
    }

    /* Features grid gap fix */
    .features-grid {}

    /* Apartments grid gap fix */
    .apartments-grid {}

    /* Apartment rating gap fix */
    .apartment-rating>*+* {
        margin-left: 6px;
    }

    /* Apartment features gap fix */
    .apartment-features>* {
        margin-right: 16px;
        margin-bottom: 16px;
    }

    /* Apartment feature gap fix */
    .apartment-feature>*+* {
        margin-left: 8px;
    }

    /* Apartment price gap fix */
    .apartment-price>*+* {
        margin-left: 4px;
    }

    /* About content gap fix */
    .about-content {}

    /* About badge gap fix */
    .about-badge>*+* {
        margin-left: 16px;
    }

    /* About features gap fix */
    .about-features {}

    /* About feature gap fix */
    .about-feature>*+* {
        margin-left: 12px;
    }

    /* Testimonials grid gap fix */
    .testimonials-grid {}

    /* Testimonial rating gap fix */
    .testimonial-rating {}

    /* Testimonial author gap fix */
    .testimonial-author>*+* {
        margin-left: 16px;
    }

    /* Contact content gap fix */
    .contact-content {}

    /* Contact methods gap fix */
    .contact-methods>* {
        margin-bottom: 20px;
    }

    .contact-methods>*:last-child {
        margin-bottom: 0;
    }

    /* Contact method gap fix */
    .contact-method>*+* {
        margin-left: 16px;
    }

    /* Social links gap fix */
    .social-links>* {
        margin-right: 16px;
    }

    .social-links>*:last-child {
        margin-right: 0;
    }

    /* Form row gap fix */
    .form-row {}

    /* Footer content gap fix */
    .footer-content {}

    /* Footer social gap fix */
    .footer-social>* {
        margin-right: 16px;
    }

    .footer-social>*:last-child {
        margin-right: 0;
    }

    /* Footer links gap fix */
    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-links li:last-child,
    .footer-contact li:last-child {
        margin-bottom: 0;
    }

 
/* ===================================
   Jacuzzi Section - Clean CSS
   =================================== */
    .jacuzzi-v2-section {
        padding: 80px 20px;
        background: #0a0a0a;
    }

    .jacuzzi-v2-title {
        text-align: center;
        color: #FFD700;
        font-size: 32px;
        margin-bottom: 60px;
        font-weight: 300;
        letter-spacing: 2px;
    }

    .jacuzzi-v2-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .jacuzzi-v2-card {
        flex: 0 1 300px;
        background: #1a1a1a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .jacuzzi-v2-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .jacuzzi-v2-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .jacuzzi-v2-card:hover .jacuzzi-v2-image img {
        transform: scale(1.05);
    }

    .jacuzzi-v2-content {
        padding: 25px 20px;
        text-align: center;
    }

    .jacuzzi-v2-name {
        color: #fff;
        font-size: 18px;
        margin: 0 0 20px 0;
        font-weight: 500;
    }

    .jacuzzi-v2-btn {
        display: inline-block;
        background: #17A2B8;
        color: #fff;
        padding: 12px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        transition: all 0.3s;
    }

    .jacuzzi-v2-btn:hover {
        background: #138496;
        transform: translateY(-2px);
    }

    @media (max-width: 900px) {
        .jacuzzi-v2-card {
            flex: 0 1 45%;
        }
    }

    @media (max-width: 600px) {
        .jacuzzi-v2-card {
            flex: 0 1 100%;
            max-width: 400px;
        }

        .jacuzzi-v2-title {
            font-size: 24px;
        }
    }

    /* ===================================
       MOBILE CONTAINER FIX (375px & up to 480px)
       =================================== */
    @media (max-width: 768px) {

        /* Override GeneratePress specific padding to 0px as found by user */
        .separate-containers .inside-article,
        .separate-containers .comments-area,
        .separate-containers .page-header,
        .separate-containers .paging-navigation,
        .one-container .site-content,
        .inside-page-header,
        .wp-block-group__inner-container {
            padding: 0px !important;
        }

        /* Ensure container itself has minimal padding */
        .container {
            padding-left: 10px !important;
            padding-right: 10px !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        /* Ensure content fills the space */
        .entry-content,
        .entry-summary,
        .site-content {
            margin: 0 !important;
        }

        /* Fix for Elementor generic sections if they have wide padding */
        .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    }/* End custom CSS */