:root {
    --primary-color: #0F3D3A;
    --secondary-color: #C8F8A9;
    --light-color: #F2F5F1;
    --dark-color: #000000;
    --text-color: #333333;
    --border-color: #0000001A;
    --max-width: 1280px;
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Forum', serif;
    margin-bottom: 1rem;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.3rem;
}

h6 {
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--secondary-color);
    }

.container-custom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.btn-custom {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-custom:hover {
        background-color: var(--primary-color);
        color: var(--light-color);
    }

    .btn-custom i {
        font-size: 18px;
    }

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

    .btn-secondary:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    max-width: 180px;
}

    .logo img {
        width: 100%;
        height: auto;
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    align-items: center
}

    .nav-menu a {
        color: var(--dark-color);
        font-weight: 400;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 15px;
    }

        .nav-menu a:hover {
            background-color: rgba(15, 61, 58, 0.1);
        }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: end;
    background-image: url('https://sales.aeontrisl.com/wp-content/uploads/2025/06/emaar-the-oasis-villas-for-sale-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190deg, #134A4700 25%, #0F3D3AF2 95%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.price-boxes {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}

.price-box {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    color: var(--text-color);
    flex: 1;
}

    .price-box h2 {
        margin-bottom: 5px;
        font-family: 'DM Sans';
        color: #0f3d3a;
    }

    .price-box h3 {
        color: var(--text-color);
        font-size: 1.2rem;
        margin-bottom: 0;
    }

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-title {
    color: var(--primary-color);
    text-align: left;
    padding: 5px 12px;
    background: #f8f9fa;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'DM Sans';
}

.section-subtitle {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: red;
    padding: 25px;
    border-radius: 20px;
    background: #f2f5f1
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
    }

/* Projects Section */
.projects-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-10px);
    }

.project-image {
    height: 250px;
    overflow: hidden;
}

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-features {
    list-style: none;
    margin-bottom: 20px;
}

    .project-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .project-features i {
        color: var(--secondary-color);
    }

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

    .amenities-grid > *:nth-last-child(1) {
        grid-column: span 2; /* Adjust based on your layout */
    }

.amenity-card {
    background-color: #ffffff00;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.Assistance {
    background: #0f3d3a;
    color: #fff;
    text-align: left;
}



.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #c8f8a9
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .amenity-icon i {
        font-size: 36px;
        color: var(--primary-color);
    }

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.swiper {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 24px;
    }

/* Payment Plan Section */
.payment-section {
    padding: 100px 0;
}

.payment-step {
    flex: 1;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.step-percentage {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    min-width: 80px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #b6c4d2;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    color: black;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
    }

        .social-links a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    background: #0f3d3a;
    padding: 15px 25px !important;
    margin-bottom: 15px;
    border-radius: 15px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.slideInUp {
    animation-name: slideInUp;
}

.fadeIn {
    animation-name: fadeIn;
}

.delay-50 {
    animation-delay: 0.05s;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-150 {
    animation-delay: 0.15s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .price-boxes {
        flex-direction: column;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .swiper {
        height: 400px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .payment-step {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Custom styles from original page */
.top-whatsapp span.elementor-button-icon {
    background-color: #F2F5F1;
    padding: 10px;
    border-radius: 6px;
}

.location-min sup {
    font-size: 21px;
    vertical-align: super;
}

.register-form {
    display: flex;
}

.contactform textarea {
    max-height: 120px;
    padding: 12px 15px;
    border-radius: 5px;
    border: solid 1px #b6c4d2 !important;
}

.contactform input[type="email"], .contactform input[type="tel"], .contactform input[type="text"] {
    border-radius: 5px;
    height: 52px;
    padding-left: 15px;
    width: 100%;
    border: solid 1px #b6c4d2 !important;
}

.pum-container {
    padding: 0px !important;
}

.rform-info {
    width: 32%;
    background: #0F3D3A;
    color: #fff;
    padding: 35px 25px 30px 25px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rfrom {
    width: 68%;
    padding: 25px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.br-sup sup {
    font-size: 20px;
    vertical-align: super;
}

.page-header h1 {
    font-family: "Forum";
}

.popmake-content .wpcf7 form.sent .wpcf7-response-output {
    font-weight: 500;
}

.Community h5 {
    font-size: 22px;
    font-family: 'DM Sans';
}

.Community p {
    font-size: 14px;
    font-family: 'DM Sans';
}

.amenity-card h4 {
    font-size: 15px;
    font-family: 'DM Sans';
}

.Assistance .card-body {
    padding: 30px;
}

.payment-step div p {
    font-family: 'DM Sans';
    font-size: 14px;
}

.payment-step div h5 {
    font-size: 22px;
    font-family: 'DM Sans';
    font-weight: 500;
}
.rform-info ul {
    margin: 0;
    padding: 0;
}

    .rform-info ul li {
        margin-bottom: 15px;
        line-height: normal;
        list-style: none;
        padding: 0;
    }
@media(max-width:991px) {
    .nav-bar {
        position: absolute;
    }

    .logo img {
        width: 100px;
        height: auto;
    }
    .rform-info {
        width: 100%;
    }
    .register-form {
        display: flex;
        flex-wrap: wrap;
    }
    .rfrom{
        width:auto
    }
    .form-control {
        width: 100%;
        padding: 15px;
        border: 1px solid #b6c4d2;
        border-radius: 5px;
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.footer-column div img {
    width: 150px;
    margin-bottom: 15px;
}