/* ========================================
   PREMIUM REAL ESTATE LANDING PAGE
   Mercedes-Benz City by Binghatti
   Reference1-Inspired Design
======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a2332;
    --secondary-dark: #0a0a0a;
    --accent-gold: #c9a961;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #f8f8f8;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border-light: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 48px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-cta {
    padding: 0.65rem 1.75rem !important;
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #b89850;
    color: var(--primary-dark) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION - Reference1 Style
======================================== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-left {
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
}

.hero-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hero-partners {
    margin-top: 2rem;
}

.hero-partners p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    color: #fff;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 35, 50, 0.3), transparent);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-gold:hover {
    background: #d4a825;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 181, 37, 0.3);
}

.btn-dark {
    background: var(--primary-dark);
    color: #fff;
}

.btn-dark:hover {
    background: #2a3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 35, 50, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* ========================================
   SECTION LAYOUTS
======================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

/* ========================================
   WHY CHOOSE SECTION
======================================== */
.why-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.why-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.why-content {
    padding: 2.5rem;
}

.why-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.why-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   APARTMENT SLIDER
======================================== */
.apartment-slider-section {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.apartment-slider {
    position: relative;
    margin-top: 3rem;
}

.slider-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    color: #fff;
}

.slide-caption h3 {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    width: 40px;
    border-radius: 6px;
}

/* ========================================
   SPLIT SECTIONS
======================================== */
.split-section, .location-section {
    padding: 0;
    background: var(--bg-light);
}

.split-content-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-content-full.reverse {
    direction: rtl;
}

.split-content-full.reverse > * {
    direction: ltr;
}

.split-image-full {
    position: relative;
    overflow: hidden;
}

.split-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.split-text {
    display: flex;
    align-items: center;
    padding: 6rem 5rem;
    background: var(--bg-gray);
}

.split-text-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

.split-text-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.split-text-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.stat-item h3 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.location-benefits {
    list-style: none;
    margin-top: 2rem;
}

.location-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.location-benefits li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    flex-shrink: 0;
    color: var(--accent-gold);
}

/* ========================================
   AMENITIES SECTION
======================================== */
.amenities-section {
    padding: 8rem 0;
}

.amenities-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateX(8px);
}

.amenity-image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 10px;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amenity-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.amenity-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PAYMENT SECTION
======================================== */
.payment-section {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.payment-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.payment-step {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-light);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.payment-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.payment-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.payment-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.payment-connector {
    width: 60px;
    height: 2px;
    background: var(--border-light);
    position: relative;
    z-index: 1;
    margin: 0 -15px;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 8rem 0;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    border-bottom: 1px solid var(--border-light);
}

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

.pricing-header {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
}

.pricing-header .pricing-cell {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-cell {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-primary);
}

.pricing-cell strong {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.price-secondary {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: block;
}

.price-request {
    font-size: 1.05rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
    margin: 3rem 0;
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

.country-code-select {
    flex: 0 0 140px;
    padding: 1rem 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .container-narrow,
    .nav-container {
        padding: 0 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 5rem 3rem;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .split-content-full {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 5rem 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }


    .payment-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .payment-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .container-narrow,
    .nav-container {
        padding: 0 24px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 35, 50, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: left 0.4s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-left {
        padding: 4rem 2rem;
    }

    .hero-main-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
    }

    .slider-btn.prev {
        left: 1rem;
    }

    .slider-btn.next {
        right: 1rem;
    }

    .slide img {
        height: 400px;
    }

    .amenities-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .pricing-cell {
        padding: 1.25rem 1.5rem;
    }

    .pricing-header .pricing-cell:not(:first-child) {
        display: none;
    }

    .pricing-row:not(.pricing-header) .pricing-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-dark);
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .country-code-select {
        flex: 1;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .why-section,
    .apartment-slider-section,
    .split-section,
    .amenities-section,
    .payment-section,
    .pricing-section,
    .contact-section {
        padding: 5rem 0;
    }
}
