/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Poppins',sans-serif;
}

/* HEADER */
.main-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  transition:0.4s ease;
}

.header-container{
  max-width:1300px;
  margin:auto;
  padding:22px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo a{
  font-size:22px;
  font-weight:600;
  letter-spacing:1px;
  color:#fff;
  text-decoration:none;
}

/* NAV */
.nav a{
  margin:0 18px;
  font-size:14px;
  color:#fff;
  text-decoration:none;
  position:relative;
  transition:0.3s;
}

.nav a::after{
  content:'';
  width:0%;
  height:2px;
  background:#c9a24d;
  position:absolute;
  left:0;
  bottom:-6px;
  transition:0.3s;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* CTA BUTTON */
.btn-gold{
  padding:10px 22px;
  border:1px solid #c9a24d;
  color:#c9a24d;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.btn-gold:hover{
  background:#c9a24d;
  color:#000;
}

/* SCROLL EFFECT */
.main-header.scrolled{
  background:#111;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
/* HERO SECTION */
.hero-section{
  height:100vh;
  background:url('https://sobhanewproperty.com//images/hero.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  padding-left:80px;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.2)
  );
}

/* CONTENT */
.hero-content{
  position:relative;
  max-width:650px;
  color:#fff;
  z-index:2;
  animation:fadeUp 1.2s ease;
}

/* TAGLINE */
.hero-tagline{
  font-size:12px;
  letter-spacing:3px;
  color:#c9a24d;
  display:block;
  margin-bottom:20px;
}

/* HEADLINE */
.hero-content h1{
  font-size:56px;
  font-weight:500;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-content h1 span{
  color:#c9a24d;
}

/* PARAGRAPH */
.hero-content p{
  font-size:16px;
  color:#ddd;
  line-height:1.8;
  margin-bottom:35px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:20px;
}

.btn-primary{
  background:#c9a24d;
  color:#000;
  padding:14px 34px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.btn-primary:hover{
  background:#b08e3c;
}

.btn-outline{
  border:1px solid #c9a24d;
  color:#c9a24d;
  padding:14px 34px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.btn-outline:hover{
  background:#c9a24d;
  color:#000;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ABOUT SECTION */
.about-section{
  padding:120px 80px;
  background:#fff;
}

.about-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:4px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content .section-tag{
  font-size:12px;
  letter-spacing:3px;
  color:#c9a24d;
  display:block;
  margin-bottom:18px;
}

.about-content h2{
  font-size:42px;
  font-weight:500;
  line-height:1.2;
  margin-bottom:25px;
  color:#111;
}

.about-content h2 span{
  color:#c9a24d;
}

.about-content p{
  font-size:16px;
  color:#555;
  line-height:1.9;
  margin-bottom:40px;
}

/* HIGHLIGHTS */
.about-highlights{
  display:flex;
  gap:40px;
  margin-bottom:40px;
}

.highlight h3{
  font-size:32px;
  color:#111;
  margin-bottom:5px;
}

.highlight span{
  font-size:13px;
  color:#777;
  letter-spacing:1px;
}
/* PROJECTS SECTION */
.projects-section{
  padding:120px 80px;
  background:#f8f8f8;
}

.projects-container{
  max-width:1300px;
  margin:auto;
}

.section-header{
  max-width:600px;
  margin-bottom:70px;
}

.section-header .section-tag{
  font-size:12px;
  letter-spacing:3px;
  color:#c9a24d;
  display:block;
  margin-bottom:18px;
}

.section-header h2{
  font-size:42px;
  font-weight:500;
  margin-bottom:20px;
}

.section-header h2 span{
  color:#c9a24d;
}

.section-header p{
  font-size:16px;
  color:#555;
  line-height:1.8;
}

/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.project-card{
  position:relative;
  overflow:hidden;
  height:420px;
  border-radius:6px;
}

.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.project-card:hover img{
  transform:scale(1.1);
}

/* OVERLAY */
.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
  color:#fff;
}

.project-overlay span{
  font-size:12px;
  letter-spacing:2px;
  color:#c9a24d;
  margin-bottom:10px;
}

.project-overlay h3{
  font-size:24px;
  font-weight:500;
  margin-bottom:20px;
}

.project-btn{
  width:max-content;
  border:1px solid #c9a24d;
  padding:10px 22px;
  font-size:12px;
  letter-spacing:1px;
  color:#c9a24d;
  text-decoration:none;
  transition:0.3s;
}

.project-btn:hover{
  background:#c9a24d;
  color:#000;
}
.project-overlay p{
  font-size:13px;
  line-height:1.6;
  color:#ddd;
  margin-bottom:10px;
}

.project-type{
  color:#c9a24d;
  font-size:12px;
  letter-spacing:1px;
}
/* WHY SOBHA SECTION */
.why-sobha-section{
  padding:120px 80px;
  background:#fff;
}

.section-header.center{
  max-width:700px;
  margin:0 auto 80px;
  text-align:center;
}

.why-container{
  max-width:1300px;
  margin:auto;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.why-card{
  background:#f8f8f8;
  padding:40px;
  border-radius:6px;
  transition:0.4s ease;
}

.why-card:hover{
  background:#111;
  color:#fff;
  transform:translateY(-8px);
}

.why-card h3{
  font-size:20px;
  margin-bottom:15px;
}

.why-card p{
  font-size:15px;
  line-height:1.8;
  color:#666;
}

.why-card:hover p{
  color:#ddd;
}
/* POPUP OVERLAY */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* POPUP BOX */
.popup-box{
  background:#111;
  color:#fff;
  padding:50px;
  width:420px;
  position:relative;
  border-radius:6px;
  animation:popupFade 0.4s ease;
}

.popup-box h3{
  font-size:26px;
  margin-bottom:10px;
}

.popup-box p{
  font-size:14px;
  color:#ccc;
  margin-bottom:25px;
}

/* FORM */
.popup-box input,
.popup-box select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  background:#1c1c1c;
  border:1px solid #333;
  color:#fff;
  font-size:14px;
}

.popup-box button{
  width:100%;
  padding:14px;
  background:#c9a24d;
  border:none;
  color:#000;
  font-size:14px;
  letter-spacing:1px;
  cursor:pointer;
}

.popup-box button:hover{
  background:#b08e3c;
}

/* CLOSE */
.popup-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:28px;
  cursor:pointer;
}

/* ANIMATION */
@keyframes popupFade{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}
/* FOOTER */
.footer-section{
  background:#111;
  color:#ddd;
  padding:80px 80px 30px;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 2fr;
  gap:60px;
}

/* ABOUT */
.footer-about h3{
  font-size:26px;
  margin-bottom:20px;
  color:#fff;
}

.footer-about p{
  font-size:15px;
  line-height:1.8;
  margin-bottom:25px;
}

.footer-info li{
  list-style:none;
  font-size:14px;
  margin-bottom:10px;
}

/* LINKS */
.footer-links h4,
.footer-form h4{
  font-size:18px;
  margin-bottom:20px;
  color:#fff;
}

.footer-links a{
  display:block;
  color:#bbb;
  text-decoration:none;
  margin-bottom:12px;
  font-size:14px;
}

.footer-links a:hover{
  color:#c9a24d;
}

/* FORM */
.footer-form p{
  font-size:14px;
  color:#aaa;
  margin-bottom:20px;
}

.footer-form input,
.footer-form select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  background:#1c1c1c;
  border:1px solid #333;
  color:#fff;
  font-size:14px;
}

.footer-form button{
  width:100%;
  padding:14px;
  background:#c9a24d;
  border:none;
  font-size:14px;
  letter-spacing:1px;
  cursor:pointer;
  color:#000;
}

.footer-form button:hover{
  background:#b08e3c;
}

/* BOTTOM */
.footer-bottom{
  margin-top:50px;
  border-top:1px solid #222;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  color:#777;
}
/* PROJECT HERO */
.project-hero{
  height:70vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:80px;
}

.project-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.project-hero-content{
  position:relative;
  color:#fff;
}

.project-hero-content span{
  color:#c9a24d;
  letter-spacing:2px;
  font-size:13px;
}

.project-hero-content h1{
  font-size:52px;
  margin:15px 0;
}

/* DETAILS */
.project-details{
  padding:100px 80px;
}

.details-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
}

.details-left h2{
  font-size:34px;
  margin-bottom:20px;
}

.details-left p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:30px;
}

.details-left ul li{
  margin-bottom:12px;
  font-size:15px;
}

/* FORM */
.details-right{
  background:#111;
  padding:40px;
  color:#fff;
}

.details-right h3{
  margin-bottom:20px;
}

.details-right input{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  background:#1c1c1c;
  border:1px solid #333;
  color:#fff;
}

.details-right button{
  width:100%;
  padding:14px;
  background:#c9a24d;
  border:none;
  color:#000;
  font-size:14px;
  cursor:pointer;
}
/* ================= ROOT ================= */
:root{
  --gold:#c9a24d;
  --dark:#0f0f0f;
  --gray:#777;
  --light:#f6f6f6;
}

/* ================= BASE ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:#222;
}
.container{
  max-width:1280px;
  margin:auto;
}
.section-tag{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
  display:block;
}
h2{
  font-size:44px;
  font-weight:500;
  line-height:1.2;
  margin-bottom:35px;
}
h2 span{ color:var(--gold); }
p{
  font-size:16px;
  line-height:1.95;
  color:#555;
}

/* ================= BUTTON ================= */
.btn-primary{
  background:linear-gradient(135deg,#d8b25a,#b18b35);
  color:#000;
  padding:16px 38px;
  font-size:12px;
  letter-spacing:2px;
  text-decoration:none;
  display:inline-block;
  margin-top:40px;
  transition:0.4s ease;
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(201,162,77,0.35);
}

/* ================= HERO ================= */
.project-hero{
  height:90vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:90px;
}
.project-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.15)
    );
}
.project-hero-content{
  position:relative;
  max-width:800px;
  color:#fff;
}
.project-hero-content span{
  font-size:12px;
  letter-spacing:3px;
  color:var(--gold);
}
.project-hero-content h1{
  font-size:62px;
  font-weight:500;
  margin:18px 0;
}
.project-hero-content p{
  font-size:18px;
  color:#e0e0e0;
  max-width:650px;
}

/* ================= OVERVIEW ================= */
.project-overview{
  padding:140px 80px;
}
.project-overview p{
  max-width:900px;
  margin-bottom:26px;
}

/* ================= AMENITIES ================= */
.amenities-section{
  padding:140px 80px;
  background:var(--light);
}
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
  margin-top:70px;
}
.amenity{
  background:#fff;
  padding:45px 30px;
  text-align:center;
  font-size:15px;
  letter-spacing:0.6px;
  box-shadow:0 30px 70px rgba(0,0,0,0.08);
  transition:0.45s ease;
  position:relative;
}
.amenity::after{
  content:"";
  width:0;
  height:2px;
  background:var(--gold);
  position:absolute;
  bottom:0;
  left:50%;
  transition:0.4s;
}
.amenity:hover{
  transform:translateY(-12px);
}
.amenity:hover::after{
  width:60%;
  left:20%;
}

/* ================= LOCATION ================= */
.location-section{
  padding:140px 80px;
}
.location-list{
  max-width:820px;
  margin-top:35px;
}
.location-list li{
  list-style:none;
  font-size:16px;
  margin-bottom:18px;
  padding-left:36px;
  position:relative;
}
.location-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--gold);
  font-size:22px;
}

/* ================= PRICE ================= */
.price-section{
  padding:140px 80px;
  background:#0f0f0f;
  color:#fff;
}
.price-section h2,
.price-section p{
  color:#fff;
}
.price-table{
  width:100%;
  max-width:900px;
  border-collapse:collapse;
  margin-top:50px;
}
.price-table th,
.price-table td{
  padding:22px;
  border-bottom:1px solid rgba(255,255,255,0.15);
  font-size:15px;
}
.price-table th{
  color:var(--gold);
  font-weight:500;
  letter-spacing:1px;
}

/* ================= PLAN ================= */
.plan-section{
  padding:140px 80px;
}
.plan-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  margin-top:70px;
}
.plan-box img{
  width:100%;
  box-shadow:0 40px 90px rgba(0,0,0,0.2);
  transition:0.5s ease;
}
.plan-box img:hover{
  transform:scale(1.05);
}
.plan-box p{
  text-align:center;
  margin-top:18px;
  font-size:15px;
  letter-spacing:1px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
  .amenities-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .plan-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .project-hero{
    height:75vh;
    padding:40px;
  }
  .project-hero-content h1{
    font-size:40px;
  }
  .project-overview,
  .amenities-section,
  .location-section,
  .price-section,
  .plan-section{
    padding:90px 30px;
  }
}
/* ================= CONTACT HERO ================= */
.contact-hero{
  height:60vh;
  background:url('https://sobhanewproperty.com//images/contact.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  padding:80px;
}
.contact-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.35)
  );
}
.contact-hero-content{
  position:relative;
  color:#fff;
  max-width:600px;
}
.contact-hero-content span{
  font-size:12px;
  letter-spacing:3px;
  color:#c9a24d;
}
.contact-hero-content h1{
  font-size:56px;
  margin:15px 0;
}
.contact-hero-content p{
  font-size:17px;
  color:#ddd;
}

/* ================= CONTACT SECTION ================= */
.contact-section{
  padding:120px 80px;
}
.contact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

/* INFO */
.contact-info h2{
  font-size:40px;
  margin-bottom:25px;
}
.contact-info p{
  font-size:16px;
  color:#555;
  line-height:1.8;
  margin-bottom:35px;
}
.contact-details li{
  list-style:none;
  margin-bottom:25px;
  font-size:15px;
  line-height:1.7;
}

/* FORM */
.contact-form{
  background:#111;
  padding:50px;
  color:#fff;
}
.contact-form h3{
  font-size:28px;
  margin-bottom:25px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  background:#1c1c1c;
  border:1px solid #333;
  color:#fff;
  font-size:14px;
}
.contact-form textarea{
  min-height:120px;
  resize:none;
}
.contact-form button{
  width:100%;
  padding:16px;
  background:#c9a24d;
  border:none;
  font-size:14px;
  letter-spacing:1px;
  cursor:pointer;
  color:#000;
}
.contact-form button:hover{
  background:#b08e3c;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .contact-container{
    grid-template-columns:1fr;
  }
  .contact-hero-content h1{
    font-size:40px;
  }
  .contact-section{
    padding:80px 30px;
  }
}
/* ================= GLOBAL MOBILE FIX ================= */
html, body{
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ================= HERO MOBILE ================= */
@media(max-width:768px){

  .hero-section{
    height:auto;
    padding:120px 20px 80px;
    text-align:center;
  }

  .hero-content h1{
    font-size:32px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:15px;
  }

}

/* ================= PROJECT GRID MOBILE ================= */
@media(max-width:992px){
  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .projects-grid{
    grid-template-columns:1fr;
  }
}

/* ================= ABOUT SECTION MOBILE ================= */
@media(max-width:768px){
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}

/* ================= CONTACT MOBILE ================= */
@media(max-width:900px){
  .contact-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}

/* ================= FOOTER MOBILE ================= */
@media(max-width:991px){
  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}
