/* =====================
   GLOBAL THEME
===================== */
:root{
  --primary:#0f2a44;
  --gold:#caa14a;
  --soft:#f2f6fb;
  --dark:#111;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#fff;
  color:#222;
}

/* =====================
   HEADER
===================== */
header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:999;
  box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.container{
  width:90%;
  margin:auto;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:26px;
  font-weight:700;
  color:var(--primary);
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

nav a:hover{
  color:var(--gold);
}

/* =====================
   HERO
===================== */
.hero{
  position:relative;
  min-height:90vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 8%;
  color:#fff;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(15,42,68,.85),
    rgba(0,0,0,.45)
  );
  pointer-events:none; /* ⭐ THIS IS THE KEY FIX */
}


.hero-left{
  position:relative;
  max-width:45%;
}

.hero-left h1{
  font-family:'Playfair Display',serif;
  font-size:50px;
  margin-bottom:10px;
  text-shadow:0 6px 20px rgba(0,0,0,.4);
}

.hero-left p{
  font-size:18px;
  margin-bottom:20px;
}

/* =====================
   BUTTON
===================== */
.btn-gold{
  background:linear-gradient(135deg,#e5c36a,#caa14a);
  color:#111;
  padding:14px 32px;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(202,161,74,.35);
  transition:.3s;
}

.btn-gold:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(202,161,74,.55);
}

/* =====================
   FORM BOX
===================== */
.form-box{
  position:relative;
  background:#fff;
  padding:25px;
  width:320px;
  border-radius:10px;
  color:#000;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.form-box h3{
  margin-bottom:10px;
  color:var(--primary);
}

.form-box input,
.form-box textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
}

.form-box button{
  width:100%;
  background:#000;
  color:#fff;
  padding:12px;
  border:none;
}

/* =====================
   SECTIONS
===================== */
.section{
  padding:90px 10%;
  text-align:center;
  background:#fff;
}

.gray{
  background:linear-gradient(180deg,#f7f9fc,#eef3f9);
}

.title{
  font-family:'Playfair Display',serif;
  font-size:38px;
  margin-bottom:15px;
}

.title::after{
  content:'';
  display:block;
  width:70px;
  height:3px;
  background:var(--gold);
  margin:18px auto 0;
}

.text{
  max-width:850px;
  margin:auto;
  line-height:1.8;
  font-size:16px;
}

.center-text{ text-align:center; }

.left-text{
  text-align:left;
  max-width:850px;
  margin:20px auto 0;
}

/* =====================
   IMAGES
===================== */
.img-shadow{
  width:100%;
  max-width:900px;
  height:420px;
  object-fit:cover;
  margin-top:25px;
  border-radius:10px;
  box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:30px;
}

.grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

/* =====================
   USP
===================== */
.usp-grid{
  max-width:1100px;
  margin:40px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.usp-card{
  background:#fff;
  padding:30px 20px;
  border-radius:12px;
  font-size:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  text-align:center;
  border-top:4px solid var(--gold);
  transition:.3s;
}

.usp-card:hover{
  transform:translateY(-6px);
}

/* =====================
   HIGHLIGHTS
===================== */
.highlights-grid{
  max-width:1100px;
  margin:40px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.highlight-card{
  background:#fff;
  padding:25px 22px;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  text-align:left;
  border-left:4px solid var(--primary);
  transition:.3s;
}

.highlight-card span{
  font-size:14px;
  color:#777;
  display:block;
  margin-bottom:6px;
}

.highlight-card strong{
  font-size:17px;
  color:#111;
}

.highlight-card:hover{
  transform:translateY(-6px);
}

/* =====================
   PRICE
===================== */
.price-box{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:30px;
}

.price-box div{
  background:#fff;
  padding:30px;
  width:200px;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
  border-radius:12px;
  border-top:5px solid var(--gold);
}

.price-box div strong{
  color:var(--primary);
  font-size:18px;
}

/* =====================
   AMENITIES
===================== */
.amenities-grid{
  max-width:1100px;
  margin:40px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.amenity-card{
  background:linear-gradient(180deg,#fff,#f9fbfe);
  padding:35px 20px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  text-align:center;
  transition:.3s;
}

.amenity-card span{
  font-size:40px;
  display:block;
  margin-bottom:15px;
  color:var(--gold);
}

.amenity-card p{
  font-size:17px;
  font-weight:500;
}

.amenity-card:hover{
  transform:translateY(-6px);
}

/* =====================
   FAQ
===================== */
.faq{
  max-width:900px;
  margin:40px auto 0;
  text-align:left;
}

.faq details{
  background:#fff;
  margin-bottom:12px;
  padding:18px 22px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.faq summary{
  font-weight:600;
  cursor:pointer;
  color:var(--primary);
}

.faq details[open] summary{
  color:var(--gold);
}

/* =====================
   CTA
===================== */
.cta{
  background:linear-gradient(135deg,#0f2a44,#061a2d);
  color:#fff;
  padding:90px 10%;
}

/* =====================
   POPUP
===================== */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:9999;
  align-items:center;
  justify-content:center;
}

.popup-content{
  background:#fff;
  width:360px;
  padding:30px;
  border-radius:12px;
  position:relative;
  animation:scaleUp .3s ease;
}

.popup-content h3{
  margin-bottom:15px;
  color:var(--primary);
}

.popup-content input,
.popup-content textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
}

.close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

@keyframes scaleUp{
  from{ transform:scale(.8); opacity:0 }
  to{ transform:scale(1); opacity:1 }
}

/* =====================
   FOOTER
===================== */
footer{
  background:#000;
  color:#aaa;
  text-align:center;
  padding:15px;
}
/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 991px){
  .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:100px 6% 60px;
  }

  .hero-left{
    max-width:100%;
    margin-bottom:30px;
  }

  .form-box{
    width:100%;
    max-width:380px;
  }

  .price-box{
    flex-direction:column;
    align-items:center;
  }

  .price-box div{
    width:100%;
    max-width:300px;
  }

  nav{
    display:none;
  }
}

@media (max-width: 576px){
  .hero-left h1{
    font-size:36px;
  }

  .title{
    font-size:30px;
  }

  .section{
    padding:70px 6%;
  }

  .img-shadow{
    height:280px;
  }

  .grid img{
    height:200px;
  }
}
/* =====================
   WHATSAPP FLOATING CTA
===================== */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:55px;
  height:55px;
  background:#25D366;
  color:#fff;
  font-size:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  z-index:9999;
  transition:.3s;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}
.mobile-cta{
  display:none;
}

@media(max-width:768px){
  .mobile-cta{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:var(--primary);
    padding:12px;
    text-align:center;
    z-index:9998;
  }

  .mobile-cta button{
    background:var(--gold);
    border:none;
    padding:14px 30px;
    font-weight:600;
    border-radius:30px;
  }
}
/* =====================
   BLOG SECTION
===================== */
.blog-grid{
  max-width:1100px;
  margin:50px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.blog-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.blog-content{
  padding:22px;
  text-align:left;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:10px;
  color:var(--primary);
}

.blog-content p{
  font-size:15px;
  line-height:1.7;
  color:#555;
  margin-bottom:12px;
}

.blog-content a{
  color:var(--gold);
  font-weight:600;
  text-decoration:none;
}

.blog-content a:hover{
  text-decoration:underline;
}
/* =====================
   OVERVIEW DESIGN FIX
===================== */
.overview-section{
  background:linear-gradient(180deg,#ffffff,#f6f9fd);
}

.overview-box{
  max-width:1000px;
  margin:40px auto 0;
  background:#fff;
  padding:40px 45px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  text-align:left;
}

.overview-box p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:18px;
  color:#333;
}

.overview-box p strong{
  color:var(--primary);
}
/* =====================
   OVERVIEW REFINED DESIGN
===================== */

.overview-section{
  background:linear-gradient(180deg,#ffffff,#f5f8fc);
}

.overview-box{
  max-width:900px;
  margin:35px auto 0;
  background:#fff;
  padding:35px 40px;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.overview-intro{
  font-size:17px;
  line-height:1.8;
  margin-bottom:22px;
  color:#222;
}

.overview-points ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:12px 20px;
}

.overview-points li{
  position:relative;
  padding-left:26px;
  font-size:16px;
  color:#333;
}

.overview-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#caa14a;
  font-weight:700;
}

.overview-cta{
  margin-top:30px;
  text-align:center;
}
/* =====================
   OVERVIEW EXTRA SECTION
===================== */

.overview-extra{
  padding-top:0;
}

.overview-extra-box{
  max-width:1000px;
  margin:0 auto;
  padding:40px;
  background:#f9fbff;
  border-radius:18px;
  border:1px solid #eef1f6;
}

.overview-subtitle{
  font-family:'Playfair Dis
  
  /* ===== PRICE TABLE ===== */
.price-table-wrapper{
  overflow-x:auto;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-radius:10px;
  overflow:hidden;
}

.price-table thead{
  background:#c9a14a;
  color:#fff;
}

.price-table th,
.price-table td{
  padding:16px 14px;
  text-align:center;
  font-size:15px;
  border-bottom:1px solid #eee;
}

.price-table tbody tr:hover{
  background:#faf7f1;
}

.price-table td strong{
  color:#000;
}

.btn-small{
  background:#c9a14a;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
}

.btn-small:hover{
  background:#b08d3d;
}

/* Mobile Friendly */
@media(max-width:768px){
  .price-table th,
  .price-table td{
    font-size:14px;
    padding:12px 10px;
  }
}

  
  /* =====================
   FORCE FULL WIDTH FIX
===================== */

/* Override default .section padding */
.section.full-width{
  padding-left:0 !important;
  padding-right:0 !important;
  text-align:left;
}

/* Wide readable content */
.section.full-width .overview-box,
.section.full-width .overview-extra-box{
  max-width:1300px;
  width:100%;
  margin:40px auto;
  padding:50px 70px;
  background:#fff;
}

/* Improve paragraph flow */
.section.full-width p{
  font-size:18px;
  line-height:2;
  color:#222;
}

/* Second overview bullets */
.section.full-width .overview-features ul{
  max-width:1200px;
  margin:35px auto;
}

/* Mobile */
@media(max-width:768px){
  .section.full-width .overview-box,
  .section.full-width .overview-extra-box{
    padding:28px 20px;
  }

  .section.full-width p{
    font-size:16px;
    line-height:1.85;
  }
}
.center-title{
  text-align:center;
}
/* ===== FINAL LUXURY BLOG DESIGN ===== */

.blog-luxury-section{
  background:linear-gradient(180deg,#f5f8fd,#ffffff);
}

.blog-layout{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2.4fr 1fr;
  gap:45px;
}

/* LEFT CONTENT CARD */
.luxury-box{
  background:#ffffff;
  padding:55px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.blog-main h2{
  font-family:'Playfair Display',serif;
  font-size:34px;
  margin-bottom:22px;
  color:#0f2a44;
}

.blog-main h3{
  font-family:'Playfair Display',serif;
  font-size:24px;
  margin-top:35px;
  margin-bottom:12px;
  color:#0f2a44;
}

.blog-main p{
  font-size:17px;
  line-height:1.95;
  margin-bottom:18px;
  color:#333;
}

/* CONCLUSION */
.blog-conclusion{
  background:#f8fafc;
  padding:30px;
  border-left:5px solid #caa14a;
  border-radius:14px;
  margin-top:45px;
}

/* RIGHT FORM */
.blog-sidebar{
  position:sticky;
  top:120px;
}

.blog-form-box{
  background:#ffffff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 45px rgba(0,0,0,.15);
}

.blog-form-box h4{
  font-size:22px;
  margin-bottom:18px;
  color:#0f2a44;
}

.blog-form-box input,
.blog-form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:1px solid #ddd;
  border-radius:6px;
}

/* MOBILE */
@media(max-width:991px){
  .blog-layout{
    grid-template-columns:1fr;
  }

  .luxury-box{
    padding:30px;
  }

  .blog-sidebar{
    position:relative;
    top:auto;
  }
}

/* =====================
   BLOG FINAL LAYOUT FIX
===================== */
/* =====================
   BLOG HARD RESET FIX
===================== */

.blog-luxury-section,
.blog-luxury-section *{
  text-align:left !important;
}

/* force grid layout */
.blog-layout{
  display:grid !important;
  grid-template-columns:2.4fr 1fr !important;
  gap:45px !important;
  align-items:start;
}

/* left content */
.luxury-box{
  background:#ffffff;
  padding:55px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* right sidebar */
.blog-sidebar{
  position:sticky;
  top:120px;
}

.blog-form-box{
  background:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 45px rgba(0,0,0,.15);
}

/* mobile fix */
@media(max-width:991px){
  .blog-layout{
    grid-template-columns:1fr !important;
  }
  .blog-sidebar{
    position:relative;
    top:auto;
  }
}
/* ===== BLOG FORCE FIX ===== */

.blog-luxury-section{
  padding:80px 8%;
  background:linear-gradient(180deg,#f5f8fd,#ffffff);
}

.blog-layout{
  display:grid;
  grid-template-columns:2.3fr 1fr;
  gap:45px;
  align-items:start;
}

.blog-luxury-section *{
  text-align:left !important;
}

.luxury-box{
  background:#fff;
  padding:55px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.blog-sidebar{
  position:sticky;
  top:120px;
}

.blog-form-box{
  background:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 45px rgba(0,0,0,.15);
}

@media(max-width:991px){
  .blog-layout{
    grid-template-columns:1fr;
  }
  .blog-sidebar{
    position:relative;
    top:auto;
  }
}


/* ===== BLOG FINAL GUARANTEED FIX ===== */

.blog-luxury-section{
  padding:90px 8%;
  background:#f5f7fb;
}

.blog-layout{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2.3fr 1fr;
  gap:40px;
  align-items:start;
}

.blog-luxury-section *{
  text-align:left;
}

.luxury-box{
  background:#fff;
  padding:55px;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.blog-main h2{
  font-family:'Playfair Display',serif;
  font-size:34px;
  margin-bottom:20px;
  color:var(--primary);
}

.blog-main h3{
  font-size:22px;
  margin-top:30px;
  color:var(--primary);
}

.blog-main p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:18px;
}

.blog-conclusion{
  margin-top:40px;
  padding:25px;
  background:#f7f9fc;
  border-left:5px solid var(--gold);
  border-radius:10px;
}

.blog-sidebar{
  position:sticky;
  top:120px;
}

.blog-form-box{
  background:#fff;
  padding:28px;
  border-radius:16px;
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

@media(max-width:991px){
  .blog-layout{
    grid-template-columns:1fr;
  }
  .blog-sidebar{
    position:relative;
    top:auto;
  }
}
/* ================= INDUSTRIAL CONTENT STYLING ================= */

.content-section{
  max-width:1200px;
  margin:0 auto;
  padding:80px 40px;
  font-family:'Poppins', sans-serif;
}

.content-section h1{
  font-size:40px;
  font-weight:700;
  margin-bottom:25px;
  color:#111;
}

.content-section h2{
  font-size:30px;
  font-weight:600;
  margin:55px 0 20px;
  color:#1a1a1a;
  position:relative;
}

.content-section h2::after{
  content:"";
  width:80px;
  height:4px;
  background:#c9a14a;
  display:block;
  margin-top:10px;
}

.content-section h3{
  font-size:22px;
  font-weight:600;
  margin:35px 0 15px;
  color:#222;
}

.content-section p{
  font-size:17px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
}

.content-section ul{
  margin:25px 0 35px 20px;
}

.content-section ul li{
  font-size:16px;
  line-height:1.8;
  margin-bottom:10px;
  color:#333;
  position:relative;
  padding-left:10px;
}

.content-section ul li::marker{
  color:#c9a14a;
  font-size:18px;
}

/* ================= INDUSTRIAL INFO BOX ================= */
.info-box{
  background:#faf7f1;
  border-left:5px solid #c9a14a;
  padding:30px;
  margin:40px 0;
  border-radius:10px;
}

.info-box strong{
  color:#000;
}

/* ================= PRICE TABLE PROFESSIONAL ================= */

.industrial-price{
  background:#fff;
  padding:80px 30px;
}

.price-card{
  max-width:1100px;
  margin:auto;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  padding:35px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table th{
  background:#111;
  color:#fff;
  padding:18px;
  font-size:15px;
  font-weight:500;
  text-align:center;
}

.price-table td{
  padding:18px;
  text-align:center;
  font-size:15px;
  color:#333;
  border-bottom:1px solid #eee;
}

.price-table tr:hover{
  background:#faf7f1;
}

.price-tag{
  font-weight:600;
  color:#c9a14a;
}

.price-action{
  background:#c9a14a;
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:30px;
  cursor:pointer;
  font-size:14px;
  transition:.3s;
}

.price-action:hover{
  background:#000;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .content-section{
    padding:50px 20px;
  }
  .content-section h1{
    font-size:30px;
  }
  .content-section h2{
    font-size:24px;
  }
}
