@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
body{
    background-color: #161616;
    background: url(../Image/back\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
:root{
    --white-show:#fff;
    --forest-green:#345e42;
    --subset-orange:#90A1B9;
    --slate-gray:#5c5c5c;
    --charcoal-black:#2e2e2e;
    --pg-color:#bcbcbc;
     --prev-con-color: #90A1B9;
  --con-color: #bcbcbc;
}
body{
    overflow-x: hidden;
}
body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.696);

}
.section{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    gap: 50px;
    position: relative;
}
.section_page{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.After_effect::after{
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    height: 200%;
    width: 20px;
    background-color: #fff;
    filter: blur(20px);
    transform: rotate(30deg);
    transition: .6s;
}
.After_effect:hover::after{
    left: 150%;
    transform: rotate(30deg) translateY(80px);
}
a{
  display:block;
}
.sectin_page img{
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.section_title{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    gap: 30px;
}
.section_title h1{
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 6rem;
    color: var(--white-show);
    font-family: 'Marcellus' , serif;
}
.section_title h2{
    font-size: 2rem;
    font-family: 'Marcellus';
    color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    letter-spacing: 1px;
}
.section_title p{
    color: var(--pg-color);
    font-weight: 300;
    font-size: 18px;
    line-height: 2rem;
    font-weight: 500;
}
nav{
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 0 8% 0 2%;
}
.sticky_nav{
    box-shadow: 0 8px 10px #b3fbac57;
}
.ri-menu-5-fill{
    font-size: 28px;
    padding: 8px;
    border-radius: 8px;
    z-index: 9;
    color: var(--white-show);
    display: none;
}
.ri-close-large-line{
    color: var(--white-show);
    font-size: 28px;
    width: 100%;
    padding: 0;
    display: none;
    position: absolute;
    top: 1%;
    text-align: right;
    padding: 20px;
}
.ul{
    display: flex;
    align-items: center;
  
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    list-style: none;
}
.ul li{
    margin-bottom: 0;
}
.button{
    background-color: transparent;
    font-family: 'Urbanist' , sans-serif;
    color:  rgb(255, 255, 255);
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
    padding-left: 11px;
    text-align: center;
    transition: 0.1s;
    z-index: 1;
}
.button::before{
    content: '';
    border-radius: 1px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: transparent;
    left: -10px;
    top: 19px;
    cursor: pointer;
    transform: rotate(225deg);
    transition: 0.3s;
    z-index: -1;
}
.button:hover:before{
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: -1px;
    left: -2px;
    border-radius: 3px;
    background-color: #fff;
}
.ul li .button .p{
    color: var(--white-show);
    letter-spacing: 1px;
}
.ul li .button:hover .p{
    color: #222;
}
.logo{
    width: 270px;
    margin-top: 5.5vh;
    cursor: pointer;
}
.logo img{
    width: 100%;
    object-fit: contain;
}
.btn1{
    height: 50px;
    width: 180px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--subset-orange);
    font-weight: 600;
    transition: all 0.6s;
    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
    transform: scale(0.9);
    cursor: pointer;
}
.btn1:active{
    transform: scale(1.2);
}
/* =========================
   Responsive Navbar & Section
   ========================= */

/* شاشات التابلت */
@media (max-width: 992px) {
    .section {
        flex-direction: column;
        padding: 100px 6%;
        text-align: center;
    }

    .section_page,
    .section_title {
        width: 100%;
    }

    .section_title {
        align-items: center;
    }

    .section_title h1 {
        font-size: 2.2rem;
        line-height: 4rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }
}

/* شاشات الموبايل */
@media (max-width: 768px) {
    nav {
        padding: 0 5%;
    }

    .ri-menu-5-fill {
        display: block;
        cursor: pointer;
    }

    .ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        background-color: rgba(0, 0, 0, 0.95);
        transition: 0.4s ease;
        z-index: 8;
    }

    .ul.active {
        right: 0;
    }

    .ri-close-large-line {
        display: block;
        cursor: pointer;
    }

    .logo {
        width: 200px;
        margin-top: 0;
    }

    .section {
        padding: 90px 5%;
    }

    .section_title h1 {
        font-size: 2rem;
        line-height: 3.2rem;
        text-align: center;
    }

    .section_title p {
        font-size: 16px;
        text-align: center;
    }
}

/* شاشات صغيرة جداً */
@media (max-width: 480px) {
    .section_title h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.4rem;
        
    }

    .btn1 {
        width: 150px;
        font-size: 16px;
    }
}
.ul.active ~ .ri-menu-5-fill {
    display: none;
}



.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.552), rgba(0, 0, 0, 0.552)), 
                    url('../Image/3.jpg');
        background-size: cover;
    background-position: center;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
      color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn2 {
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

.btn2.primary {
          background-color: var(--subset-orange);

    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
}

.btn2.primary:hover {
    background-color: var(--subset-orange);
}

.btn2.outline {
    border: 2px solid var(--subset-orange);
    color: #fff;
}

.btn2.outline:hover {
    background-color: var(--subset-orange);
    color: #fff;
}

/* =========================
   HERO RESPONSIVE (NO DESIGN CHANGE)
   ========================= */

/* لابتوب متوسط */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

/* تابلت */
@media (max-width: 992px) {
    .hero {
        width: 100%;
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* موبايل */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 85vh;
    }

    .hero-content {
        height: auto;
        padding: 190px 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn2 {
        width: 100%;
        text-align: center;
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

.intro-section {
    text-align: center;
    padding: 80px 15px;
    background-color: var(--card-bg);
    border-top: 4px solid var(--accent-color);
   
}




.intro-section h2 {
    font-size: 2.5rem;
       color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
}

.contact-section1 {
    padding: 70px 15px 0px 25px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 7vh;


 
}
.cons{
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/2.jpg');
        background-size: cover;
}
.qr-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 20px;
}

.qr-card {
    background: var(--card-bg);
    border: 2px solid var(--subset-orange);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    max-width: 300px;
    text-align: center;
    position: relative;
  
}




.qr-card i {
    font-size: 2rem;
    color: var(--subset-orange);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #212121;
    border: 2px solid var(--subset-orange);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.qr-card img {
    width: 150px;
    height: 150px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.qr-card p {
    font-size: 1.2rem;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.social-icons a {
    margin: 0 15px;
    color: var(--subset-orange);
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #dfd4bd;
}



        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 0;
            
        }
        .con{
          background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/11.jpg');
        background-size: cover;
        }
          .container1 {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 12rem;
        }
        .form-box, .info-box {
            flex: 1;
            min-width: 300px;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            margin-top: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .form-box h3{
          color: #fff;
        }
        .container h2{
             font-size: 2.5rem;
            font-weight: bold;
               text-shadow: 1.4px 1.4px var(--white-show);
   color: #9d9a98;
        }
        .form-box p{
          color: #9d9a98;
        }
        .button {
            background-color: var(--main);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            cursor: pointer;
        }
        .info-box div {
            margin-bottom: 1.5rem;
        }
        .info-box div span {
            display: block;
            color:#9d9a98;
        }
        .info-box{
          line-height: 2rem;
        }
        .info-box p{
          color: #fff;
        }
        .info-box strong{
           text-shadow: 1.4px 1.4px var(--white-show);
   color: #9d9a98;
        }
        iframe {
            width: 100%;
            height: 300px;
            border: 0;
            margin: 2rem 0;
        }


 




    /* Footer Section */
    footer {
        background-color: #000;
        color: #fff;
        padding: 60px 40px 30px;
        font-family: Arial, sans-serif;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #333;
    }
    
    .footer-company {
        transition: transform 0.3s ease;
    }
    
    .footer-company:hover {
        transform: translateY(-13px);
    }
    
    .footer-company h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #fff;
    }
    
    .footer-company p {
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-company p:hover {
        transform: translateY(-13px);
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-social a {
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-links h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-links h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-contact h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #aaa;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: transform 0.3s ease;
    }
    
    .footer-contact li:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter p {
        color: #aaa;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter p:hover {
        transform: translateY(-13px);
    }
    
    .footer-form {
        display: flex;
        gap: 10px;
    }
    
    .footer-input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    
    .footer-input:hover {
        transform: translateY(-13px);
    }
    
    .footer-submit {
        background: #fff;
        color: #000;
        border: none;
        padding: 0 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .footer-submit:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .copyright {
        max-width: 1200px;
        margin: 30px auto 0;
        text-align: center;
        color: #777;
        font-size: 14px;
    }
    
    .copyright p {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .copyright p:hover {
        transform: translateY(-13px);
    }
    
    .copyright a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .copyright a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    /* Add this at the end of your existing CSS */

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .mainImage img {
        width: 65%;
        margin-left: 450px;
        margin-top: -400px;
    }
    
    .property-info {
        width: 90%;
    }
    
    .stats-content {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 30px;
    }
    
    .nav-links {
        margin-right: 60px;
        gap: 20px;
    }
    
    .hero {
        padding: 60px;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .mainImage img {
        width: 70%;
        margin-left: 380px;
        margin-top: -350px;
    }
    
    .stats-grid {
        width: 100%;
    }
    
    .stats-content {
        max-width: 100%;
        margin-top: 40px;
        margin-right: 0;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 36px;
        margin-left: 0;
    }
    
    .nav-links {
        display: none; /* Will be shown in mobile menu */
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 0 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        margin-left: 0;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mainImage img {
        display: none; /* Hide on smaller screens or implement alternative layout */
    }
    
    .property-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .property-info hr {
        height: 1px;
        width: 100%;
    }
    
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .featured-properties {
        padding: 60px 20px;
    }
    
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        max-width: 100%;
    }
    
    .newsletter-submit {
        border-radius: 8px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 28px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-submit {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
    display: none; /* Will be shown on mobile */
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .login-btn {
        margin-left: auto;
        margin-right: 15px;
    }
}

/* Smooth transitions for responsive changes */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}