/* ===============================
GLOBAL RESET & VARIABLES
=============================== */
:root{
  --lux-white:#f8fafc;
  --lux-dark:#0f172a;
  --lux-mid:#111827;
  --lux-card:#1f2937;
  --lux-gold:#b48a3c;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--lux-white);
  color:#0f172a;
  line-height:1.7;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.4px;
}

/* ===============================
LAYOUT
=============================== */
.section{
  padding:90px 0;
}

.section.light{
  background:var(--lux-white);
}

.section.dark{
  background:var(--lux-dark);
  color:#e5e7eb;
}

.section.neutral{
  background:#ffffff;
}

.container{
  width:1200px;
  max-width:90%;
  margin:auto;
}

h2{
  font-size:42px;
  margin-bottom:30px;
  text-align:center;
}

/* ===============================
BUTTONS
=============================== */
.btn-green,
.btn-luxury{
  background:linear-gradient(135deg,#b48a3c,#e0c068);
  color:#111;
  border:none;
  padding:14px 32px;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  transition:.3s;
}

.btn-green:hover,
.btn-luxury:hover{
  transform:translateY(-3px);
}

/* ===============================
HERO
=============================== */
.hero{
  background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover;
  height:100vh;
  position:relative;
}

.hero-overlay{
  background:rgba(0,0,0,.65);
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
}

.hero-left{
  max-width:50%;
  color:#fff;
}

.hero-left h1{
  font-size:56px;
  margin-bottom:20px;
}

.hero-left span{
  display:block;
  margin:15px 0;
  font-size:18px;
  color:#e0c068;
}

/* ===============================
FORM
=============================== */
.lead-form{
  background:#0b1220;              /* solid dark, no transparency */
  padding:38px;
  width:360px;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.08);
}

.lead-form input,
.lead-form select,
.lead-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  background:#020617;
  border:1px solid rgba(255,255,255,0.35); /* 👈 WHITE BORDER */
  color:#ffffff;
  border-radius:8px;
  font-size:14px;
}

/* Focus state (premium touch) */
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus{
  outline:none;
  border-color:#e0c068;            /* gold focus */
  box-shadow:0 0 0 1px rgba(224,192,104,.6);
}


/* ===============================
OVERVIEW (LIGHT LUXURY)
=============================== */
.overview-section{
  background:var(--lux-white);
}

.overview-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:80px;
  align-items:center;
}

.section-tag{
  display:inline-block;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--lux-gold);
  margin-bottom:16px;
}

.overview-content{
  max-width:620px;
}

.overview-content h2{
  font-size:44px;
  line-height:1.2;
  margin-bottom:24px;
  color:#0f172a;
}

.overview-content p{
  font-size:17px;
  line-height:1.85;
  color:#334155;
  margin-bottom:18px;
}

.overview-image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
  transition:.4s;
}

.overview-image img:hover{
  transform:scale(1.02);
}

/* ===============================
GRIDS / CARDS
=============================== */
.grid-4,.grid-3{
  display:grid;
  gap:30px;
  margin-top:40px;
}

.grid-4{grid-template-columns:repeat(4,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}

.info-box{
  background:#ffffff;
  padding:32px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.info-box:hover{
  transform:translateY(-6px);
}

/* ===============================
PROJECT CARDS
=============================== */
.project-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin:80px auto;
  max-width:1100px;
}

.project-card img{
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.reverse{
  direction:rtl;
}
.reverse div{
  direction:ltr;
}

/* ===============================
CTA STRIP (DARK ACCENT)
=============================== */
.cta-strip{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  padding:80px;
  text-align:center;
  color:#fff;
}

/* ===============================
HIGHLIGHTS (DARK)
=============================== */
.highlights{
  background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
  url("https://images.unsplash.com/photo-1568605114967-8130f3a36994") center/cover;
  padding:120px 0;
  color:#fff;
}

.highlights ul{
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  list-style:none;
}

.highlights li{
  background:rgba(255,255,255,.08);
  padding:22px;
  border-radius:12px;
}

/* ===============================
TABLE
=============================== */
table{
  width:100%;
  border-collapse:collapse;
  margin-top:40px;
  background:#ffffff;
}

th,td{
  padding:16px;
  border:1px solid #e5e7eb;
  text-align:center;
}

th{
  background:#f1f5f9;
  color:#0f172a;
}

/* ===============================
GALLERY
=============================== */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.gallery img{
  width:100%;
  border-radius:16px;
  transition:.3s;
}

.gallery img:hover{
  transform:scale(1.05);
}

/* ===============================
FOOTER
=============================== */
.footer{
  background:#020617;
  padding:80px 0;
  text-align:center;
  color:#fff;
}

.footer-form{
  max-width:450px;
  margin:0 auto 40px;
}

.footer-form input,
.footer-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  background:#111827;
  border:1px solid #374151;
  color:#fff;
  border-radius:6px;
}

/* ===============================
RESPONSIVE
=============================== */
@media(max-width:900px){
.hero-overlay,
.overview-grid,
.project-card{
  grid-template-columns:1fr;
  flex-direction:column;
}
.grid-4,.grid-3,.gallery{
  grid-template-columns:1fr;
}
.hero-left{
  max-width:100%;
}
}

.lead-form input,
.lead-form select,
.lead-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  background:#020617;              /* darker than form */
  border:1px solid #374151;        /* visible border */
  color:#ffffff;
  border-radius:8px;
  font-size:14px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder{
  color:#9ca3af;                   /* visible placeholder */
}
.lead-form h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  margin-bottom:20px;
  color:#ffffff;
}
.lead-form button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:linear-gradient(135deg,#b48a3c,#e0c068);
  color:#111;
  font-weight:600;
  letter-spacing:.5px;
}
/* ===============================
INVESTMENT SECTION – LUXURY FIX
=============================== */

.investment-luxury{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

/* ===============================
INVESTMENT SECTION – WIDTH FIX
=============================== */

.investment-luxury{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.investment-box{
  max-width:1100px;              /* 🔥 WIDTH INCREASED */
  margin:auto;
  background:#ffffff;
  padding:70px 90px;
  border-radius:24px;
  box-shadow:0 40px 90px rgba(15,23,42,.12);
  position:relative;
}

/* gold accent line */
.investment-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#b48a3c,#e0c068);
  border-radius:24px 24px 0 0;
}

.investment-box h2{
  font-size:42px;
  color:#0f172a;
  text-align:center;
  margin-bottom:35px;
}

.investment-box p{
  font-size:17.5px;
  line-height:1.9;
  color:#334155;
  margin-bottom:22px;
}

/* Mobile */
@media(max-width:900px){
  .investment-box{
    padding:45px 26px;
    max-width:100%;
  }
}
/* ===============================
WHY CHOOSE – LUXURY SECTION
=============================== */

.why-luxury{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.why-box{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  padding:80px 90px;
  border-radius:26px;
  box-shadow:0 45px 90px rgba(15,23,42,.12);
  position:relative;
}

/* Gold top line */
.why-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#b48a3c,#e0c068);
  border-radius:26px 26px 0 0;
}

.why-box h2{
  text-align:center;
  font-size:42px;
  color:#0f172a;
  margin-bottom:28px;
}

.why-intro{
  max-width:900px;
  margin:0 auto 55px;
  text-align:center;
  font-size:17.5px;
  line-height:1.9;
  color:#334155;
}

/* Cards */
.why-grid{


/* gold accent line */
.investment-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#b48a3c,#e0c068);
  border-radius:22px 22px 0 0;
}

.investment-box h2{
  font-size:40px;
  color:#0f172a;
  text-align:center;
  margin-bottom:30px;
}

.investment-box p{
  font-size:17px;
  line-height:1.9;
  color:#334155;
  margin-bottom:22px;
}

/* Responsive */
@media(max-width:900px){
  .investment-box{
    padding:45px 28px;
  }
}
/* ===============================
ABOUT SAYA GROUP – LUXURY
=============================== */

.about-luxury{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.about-box{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  padding:85px 90px;
  border-radius:26px;
  box-shadow:0 45px 90px rgba(15,23,42,.12);
  position:relative;
}

/* Gold accent */
.about-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#b48a3c,#e0c068);
  border-radius:26px 26px 0 0;
}

.about-box h2{
  text-align:center;
  font-size:42px;
  color:#0f172a;
  margin-bottom:28px;
}

.about-intro{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;
  font-size:17.5px;
  line-height:1.9;
  color:#334155;
}

/* Cards */
.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  margin-bottom:55px;
}

.about-card{
  background:#f9fafb;
  padding:34px;
  border-radius:18px;
  border:1px solid #e5e7eb;
  transition:.35s ease;
}

.about-card h4{
  font-size:20px;
  margin-bottom:12px;
  color:#0f172a;
}

.about-card p{
  font-size:16px;
  line-height:1.8;
  color:#475569;
}

.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(15,23,42,.15);
  border-color:#e0c068;
}

/* CTA */
.about-cta{
  text-align:center;
}

/* Mobile */
@media(max-width:900px){
  .about-box{
    padding:50px 26px;
  }
  .about-grid{
    grid-template-columns:1fr;
  }
}

