*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

:root{
  /* LOGO BASED SINGLE THEME */
  --primary:#564472;
  --secondary:#6f5a92;
  --dark:#2f2940;
  --light:#f7f5fa;
  --soft:#efebf5;
  --white:#ffffff;
  --text:#615a72;
  --border:#ddd5ea;
  --shadow:0 10px 25px rgba(47,41,64,0.10);
  --shadow-soft:0 14px 35px rgba(47,41,64,0.08);
}

body{
  font-family:'Poppins', sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-family:'Cinzel', serif;
  font-size:38px;
  color:var(--dark);
  margin-bottom:12px;
}

.section-title p{
  max-width:720px;
  margin:auto;
  color:var(--text);
  font-size:16px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
  transition:0.3s ease;
  font-size:15px;
  border:none;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:var(--white);
  box-shadow:0 8px 20px rgba(86,68,114,0.22);
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-outline{
  border:2px solid var(--white);
  color:var(--white);
  background:transparent;
}

.btn-outline:hover{
  background:var(--white);
  color:var(--dark);
}

/* TOP BAR */
.top-bar{
  background:var(--dark);
  color:#eee;
  padding:10px 0;
  font-size:14px;
}

.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.top-contact{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.top-contact span{
  display:flex;
  align-items:center;
  gap:8px;
}

.top-contact span i{
  color:var(--secondary);
}

.top-social{
  display:flex;
  gap:14px;
}

.top-social a{
  color:#fff;
  transition:0.3s;
}

.top-social a:hover{
  color:var(--secondary);
  transform:translateY(-2px);
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 18px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  gap:20px;
  position:relative;
}

.site-logo{
  width:120px;
  height:auto;
  object-fit:contain;
  background:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
  display:block;
  flex-shrink:0;
}

.logo-text{
  min-width:240px;
  margin-right:auto;
}

.logo-text h1{
  font-family:'Cinzel', serif;
  font-size:28px;
  color:var(--dark);
  line-height:1.1;
  letter-spacing:1px;
}

.logo-text p{
  font-size:11px;
  color:var(--primary);
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:600;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-menu > li{
  position:relative;
}

.nav-menu > li > a{
  color:var(--dark);
  font-weight:500;
  font-size:15px;
  transition:0.3s;
  padding:10px 0;
  display:inline-block;
}

.nav-menu > li > a:hover{
  color:var(--primary);
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:var(--white);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.35s;
  z-index:99;
  border:1px solid var(--border);
}

.dropdown li a{
  display:block;
  padding:12px 18px;
  color:var(--dark);
  font-size:14px;
  transition:0.3s;
}

.dropdown li a:hover{
  background:#f3eff9;
  color:var(--primary);
  padding-left:24px;
}

.nav-menu li:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}


.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:var(--dark);
  line-height:1;
}

/* HERO */
.hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  min-height:700px;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}

.hero-slide .container{
  width:100%;
}

.hero-content{
  max-width:720px;
  color:#fff;
}

.hero-content h4{
  color:#d7c8ee;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:16px;
  font-size:16px;
  font-weight:600;
}

.hero-content h1{
  font-family:'Cinzel', serif;
  font-size:45px;
  line-height:1.15;
  margin-bottom:18px;
  color:#fff;
}

.hero-content p{
  font-size:18px;
  max-width:620px;
  margin-bottom:30px;
  color:#f3f0f8;
  line-height:1.8;
}

.hero-btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.slider-dots{
  position:absolute;
  bottom:35px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:5;
}

.dot{
  width:13px;
  height:13px;
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#d7c8ee;
  transform:scale(1.15);
}

/* OWNER */
.owner-section{
  padding:90px 8%;
  background:linear-gradient(135deg, #fcfbfe, #f3eff8);
  position:relative;
  overflow:hidden;
}

.owner-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:260px;
  height:260px;
  background:rgba(111,90,146,0.08);
  border-radius:50%;
}

.owner-section::after{
  content:"";
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:220px;
  height:220px;
  background:rgba(86,68,114,0.05);
  border-radius:50%;
}

.owner-section .container{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

.owner-wrapper{
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

.owner-image{
  flex:1 1 400px;
}

.owner-image-box{
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(47,41,64,0.15);
  transition:0.4s ease;
}

.owner-image-box img{
  width:100%;
  height:600px;
  object-fit:cover;
  object-position:50% 0%;
  transition:0.5s ease;
}

.owner-image-box:hover img{
  transform:scale(1.06);
}

.owner-image-box:hover{
  transform:translateY(-6px);
}

.owner-content{
  flex:1 1 520px;
}

.owner-tag{
  display:inline-block;
  padding:8px 16px;
  background:rgba(86,68,114,0.10);
  color:var(--primary);
  font-size:13px;
  font-weight:600;
  border-radius:30px;
  margin-bottom:15px;
}

.owner-content h2{
  font-size:40px;
  color:var(--dark);
  margin-bottom:8px;
}

.owner-content h3{
  font-size:20px;
  color:var(--secondary);
  margin-bottom:18px;
}

.owner-content p{
  font-size:16px;
  line-height:1.8;
  color:var(--text);
  margin-bottom:14px;
  max-width:680px;
}

.owner-highlights{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:15px;
  margin:25px 0;
}

.highlight-card{
  background:#fff;
  padding:22px;
  border-radius:16px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  transition:0.3s ease;
}

.highlight-card:hover{
  transform:translateY(-5px);
}

.highlight-card span{
  font-size:26px;
  font-weight:700;
  color:var(--primary);
}

.highlight-card p{
  font-size:14px;
  margin-top:6px;
}

.owner-info-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:15px;
}

.info-box{
  background:#fff;
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(47,41,64,0.06);
  border-left:3px solid var(--primary);
}

.info-box h4{
  font-size:16px;
  margin-bottom:6px;
}

.info-box p{
  font-size:14px;
  color:var(--text);
}

.owner-buttons{
  margin-top:25px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.owner-btn{
  padding:13px 26px;
  border-radius:30px;
  font-size:14px;
  text-decoration:none;
  transition:0.3s ease;
}

.primary-btn{
  background:var(--primary);
  color:#fff;
}

.primary-btn:hover{
  background:var(--secondary);
}

.secondary-btn{
  border:1px solid var(--primary);
  color:var(--primary);
}

.secondary-btn:hover{
  background:var(--primary);
  color:#fff;
}

/* ABOUT */
.about{
  padding:110px 0;
  background:linear-gradient(135deg, #fdfcff, #f3eef8);
  overflow:hidden;
}

.about-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

.about-text{
  flex:1 1 560px;
}

.about-img{
  flex:1 1 420px;
  display:flex;
  justify-content:flex-end;
}

.about-tag{
  display:inline-block;
  padding:10px 18px;
  background:rgba(86,68,114,0.08);
  color:var(--primary);
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  border-radius:50px;
  margin-bottom:18px;
  border:1px solid rgba(86,68,114,0.15);
}

.about-text h2{
  font-family:'Cinzel', serif;
  font-size:46px;
  color:var(--dark);
  margin-bottom:22px;
  line-height:1.2;
}

.about-text p{
  font-size:16px;
  line-height:1.9;
  color:var(--text);
  margin-bottom:18px;
}

.about-text p strong{
  color:var(--dark);
}

.about-points{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-top:28px;
}

.about-points div{
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(10px);
  padding:16px 18px;
  border-radius:18px;
  color:var(--dark);
  font-size:15px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(47,41,64,0.06);
  border-left:4px solid var(--primary);
  transition:0.35s ease;
}

.about-points div:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(47,41,64,0.10);
}

.about-info{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  margin-top:28px;
}

.about-info span{
  font-size:15px;
  color:var(--text);
  background:#fff;
  padding:12px 18px;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(47,41,64,0.06);
}

.about-img-box{
  position:relative;
  width:100%;
  max-width:470px;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(47,41,64,0.16);
}

.about-img-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(47,41,64,0.18), rgba(47,41,64,0.03));
  z-index:1;
}

.about-img img{
  width:100%;
  height:600px;
  object-fit:cover;
  display:block;
  transition:transform 0.6s ease;
}

.about-img-box:hover img{
  transform:scale(1.08);
}

/* COUNTERS */
.counter-section{
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: #fff;
  padding: 70px 0;
}

.counter-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.counter-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 30px 20px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.counter-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.counter-card h3{
  font-size: 42px;
  color: #e2d8f2;
  margin-bottom: 8px;
  font-weight: 700;
}

.counter-card p{
  font-size: 15px;
  color: #f1f1f1;
  line-height: 1.6;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px){
  .counter-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-card h3{
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .counter-section{
    padding: 50px 0;
  }

  .counter-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .counter-card{
    padding: 25px 18px;
  }

  .counter-card h3{
    font-size: 30px;
  }

  .counter-card p{
    font-size: 14px;
  }
}

/* PRODUCTS */
.products{
  background:var(--soft);
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

.product-card{
  background:var(--white);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-card-img{
  width:100%;
  height:420px;
  overflow:hidden;
}

.product-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.4s ease;
}

.product-card:hover .product-card-img img{
  transform:scale(1.08);
}

.product-tag{
  position:absolute;
  top:15px;
  left:15px;
  background:var(--primary);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:7px 12px;
  border-radius:20px;
  z-index:2;
}

.product-info{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.product-info h3{
  font-size:21px;
  color:var(--dark);
  margin-bottom:8px;
}

.product-info p{
  color:var(--text);
  font-size:14px;
  line-height:1.6;
}

.action-row{
  display:flex;
  gap:12px;
  margin-top:auto;
  width:100%;
  padding-top:18px;
}

.action-row a{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  height:48px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s ease;
  box-sizing:border-box;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.3px;
}

.action-row .call-btn{
  background:var(--primary);
  color:#fff;
  border:2px solid var(--primary);
}

.action-row .call-btn:hover{
  background:var(--secondary);
  border-color:var(--secondary);
  transform:translateY(-2px);
}

.action-row .whatsapp-btn{
  background:#fff;
  color:var(--primary);
  border:2px solid var(--primary);
}

.action-row .whatsapp-btn:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-2px);
}

/* BANNER */
.premium-banner{
  background:
    linear-gradient(rgba(47,41,64,0.70), rgba(47,41,64,0.75)),
    url('/IMAGES/Banner-img.avif') center/cover no-repeat;
  color:#fff;
  text-align:center;
  padding:120px 20px;
}

.premium-banner h2{
  font-family:'Cinzel', serif;
  font-size:48px;
  margin-bottom:18px;
}

.premium-banner p{
  max-width:760px;
  margin:auto;
  color:#f1edf8;
  font-size:17px;
  margin-bottom:28px;
}

/* VIDEO GALLERY */
.video-gallery{
  background:var(--white);
  padding:90px 0;
  overflow:hidden;
}

.video-slider-wrapper{
  overflow:hidden;
  width:100%;
  position:relative;
}

.video-slider{
  display:flex;
  gap:20px;
  width:max-content;
  animation:autoScroll 30s linear infinite;
}

.video-slider:hover{
  animation-play-state:paused;
}

.video-card{
  min-width:320px;
  max-width:320px;
  height:420px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(47,41,64,0.10);
  flex-shrink:0;
  background:#000;
}

.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}

.video-card:hover video{
  transform:scale(1.08);
}

@keyframes autoScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.82);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:0.35s ease;
  z-index:9999;
}

.video-modal.active{
  opacity:1;
  visibility:visible;
}

.video-modal-content{
  width:100%;
  max-width:900px;
  position:relative;
}

.video-modal-content video{
  width:100%;
  max-height:85vh;
  border-radius:18px;
  background:#000;
  outline:none;
}

.close-video{
  position:absolute;
  top:-45px;
  right:0;
  font-size:38px;
  color:#fff;
  cursor:pointer;
  line-height:1;
  font-weight:bold;
}

/* WHY US */
.why-us{
  background:var(--soft);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.why-card{
  background:#fff;
  padding:30px 22px;
  border-radius:22px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:0.3s;
}

.why-card:hover{
  transform:translateY(-8px);
}

.why-icon{
  width:74px;
  height:74px;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
}

.why-card h3{
  margin-bottom:12px;
  font-size:22px;
  color:var(--dark);
}

.why-card p{
  color:var(--text);
  font-size:15px;
}

.faq-section{
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #0f0f0f, #161616, #1d1d1d);
  overflow: hidden;
}

.faq-section::before{
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.faq-section::after{
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 50%;
  filter: blur(50px);
}

.faq-header{
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.faq-tag{
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
}

.faq-header h2{
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.faq-header h2 span{
  color: #d4af37;
}

.faq-header p{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.faq-wrapper{
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.faq-item{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: 0.35s ease;
}

.faq-item:hover{
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.faq-item input{
  display: none;
}

.faq-question{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.faq-question span{
  flex: 1;
  line-height: 1.5;
}

.faq-question i{
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-style: normal;
  font-size: 22px;
  font-weight: 400;
  transition: 0.35s ease;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
}

.faq-answer p{
  padding: 0 28px 24px;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
}

.faq-item input:checked + .faq-question{
  color: #d4af37;
}

.faq-item input:checked + .faq-question i{
  transform: rotate(45deg);
  background: #d4af37;
  color: #111;
}

.faq-item input:checked + .faq-question + .faq-answer{
  max-height: 220px;
}

.faq-item::before{
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}

.faq-item:hover::before{
  width: 100%;
}

/* Fade Up Animation */
.fade-up{
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2){ animation-delay: 0.1s; }
.fade-up:nth-child(3){ animation-delay: 0.2s; }
.fade-up:nth-child(4){ animation-delay: 0.3s; }
.fade-up:nth-child(5){ animation-delay: 0.4s; }
.fade-up:nth-child(6){ animation-delay: 0.5s; }
.fade-up:nth-child(7){ animation-delay: 0.6s; }

@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px){
  .faq-section{
    padding: 90px 0;
  }

  .faq-header h2{
    font-size: 34px;
  }

  .faq-question{
    font-size: 17px;
    padding: 22px 24px;
  }

  .faq-answer p{
    padding: 18px 24px 22px;
  }
}

@media (max-width: 768px){
  .faq-section{
    padding: 75px 0;
  }

  .faq-header{
    margin-bottom: 40px;
  }

  .faq-header h2{
    font-size: 28px;
  }

  .faq-header p{
    font-size: 15px;
  }

  .faq-question{
    padding: 18px 18px;
    font-size: 16px;
    gap: 12px;
  }

  .faq-question i{
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 20px;
  }

  .faq-answer p{
    font-size: 14px;
    line-height: 1.8;
    padding: 16px 18px 20px;
  }

  .faq-wrapper{
    gap: 16px;
  }
}

@media (max-width: 480px){
  .faq-header h2{
    font-size: 24px;
  }

  .faq-tag{
    font-size: 11px;
    padding: 7px 14px;
  }

  .faq-question{
    font-size: 15px;
  }
}

/* TESTIMONIAL */
.testimonials{
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  padding: 120px 0;
  overflow: hidden;
}

/* slider */
.testimonial-slider{
  overflow: hidden;
  position: relative;
}

/* smooth infinite scroll */
.testimonial-track{
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* pause on hover */
.testimonial-slider:hover .testimonial-track{
  animation-play-state: paused;
}

/* card design */
.testimonial-card{
  min-width: 320px;
  max-width: 320px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top border for premium feel */
.testimonial-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #df2121;
}

/* hover effect */
.testimonial-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* stars */
.stars{
  color: #df2121;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* review text */
.testimonial-card p{
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* customer name */
.testimonial-card h4{
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

/* optional role style (agar add kare future me) */
.testimonial-card span{
  font-size: 13px;
  color: #888;
}

/* animation */
@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* CTA SECTION */
.luxury-contact-cta{
  position:relative;
  padding:120px 10%;
  background:url('/IMAGES/BANNER/banner 1 img.avif') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(32,26,44,0.76), rgba(32,26,44,0.90));
}

.cta-content{
  position:relative;
  z-index:2;
  max-width:800px;
  color:#ffffff;
}

.cta-tag{
  color:#d7c8ee;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:15px;
  font-size:14px;
}

.cta-content h2{
  font-size:48px;
  margin-bottom:20px;
  line-height:1.2;
  font-family:'Cinzel', serif;
}

.cta-desc{
  font-size:18px;
  color:#e8e3f2;
  line-height:1.8;
  margin-bottom:35px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-buttons .call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-weight:600;
  transition:0.4s ease;
  border:none;
}

.cta-buttons .call-btn i{
  font-size:16px;
}

.cta-buttons .call-btn:hover{
  background:var(--secondary);
  transform:translateY(-3px);
}

.cta-buttons .whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border:1px solid #d7c8ee;
  color:#ffffff;
  text-decoration:none;
  border-radius:40px;
  font-weight:600;
  transition:0.4s ease;
  background:transparent;
}

.cta-buttons .whatsapp-btn i{
  font-size:18px;
  color:#ffffff;
}

.cta-buttons .whatsapp-btn:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  transform:translateY(-3px);
}

/* CONTACT */
.contact{
  background:var(--dark);
  color:#fff;
}

.contact-wrapper{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.contact-info,
.contact-form{
  flex:1 1 460px;
}

.contact-info h2,
.contact-form h2{
  font-family:'Cinzel', serif;
  font-size:35px;
  color:#d7c8ee;
  margin-bottom:16px;
}

.contact-info p{
  color:#ddd8e8;
  margin-bottom:16px;
}

.contact-details div{
  margin-bottom:14px;
  font-size:15px;
  color:#f1f1f1;
}

.contact-details i{
  color:#d7c8ee;
  margin-right:10px;
  width:20px;
}

.contact-form form{
  display:grid;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px 16px;
  border:none;
  outline:none;
  border-radius:14px;
  font-size:15px;
  font-family:'Poppins', sans-serif;
}

.contact-form textarea{
  height:150px;
  resize:none;
}

.contact-social{
  display:flex;
  gap:14px;
  margin-top:22px;
  flex-wrap:wrap;
}

.contact-social a{
  width:45px;
  height:45px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.08);
}

.contact-social a:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-4px);
}
.form-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
}

.form-check input[type="checkbox"]{
  margin-top: 4px;
  accent-color: #df2121;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-check label{
  font-size: 14px;
  color: white;
  line-height: 1.6;
  cursor: pointer;
}

/* MAP */
.map-section{
  padding:60px 10%;
  background:#faf8fd;
}

.map-heading{
  text-align:center;
  margin-bottom:30px;
}

.map-heading h2{
  font-size:32px;
  color:var(--dark);
}

.map-heading p{
  color:var(--text);
}

.map-box{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(47,41,64,0.10);
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
}

/* FOOTER */
.footer{
  background: linear-gradient(135deg, #241f31 0%, #2f2940 45%, #564472 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 25px;
}

.footer::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.footer::after{
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(215,200,238,0.08);
  border-radius: 50%;
}

.footer .container{
  position: relative;
  z-index: 2;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-col h4{
  font-size: 20px;
  margin-bottom: 22px;
  color: #fff;
  font-family: 'Cinzel', serif;
  position: relative;
}

.footer-col h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 45px;
  height: 2px;
  background: #d7c8ee;
  border-radius: 10px;
}

.footer-logo{
  width: 95px;
  margin-bottom: 14px;
}

.footer-brand h3{
  font-family: 'Cinzel', serif;
  font-size: 30px;
  margin-bottom: 6px;
  color: #fff;
}

.footer-tagline{
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d7c8ee;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-desc{
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.9;
  max-width: 340px;
}

.footer-col ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  transition: 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a:hover{
  color: #d7c8ee;
  padding-left: 6px;
}

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s ease;
  font-size: 15px;
}

.footer-social a:hover{
  background: #d7c8ee;
  color: var(--dark);
  transform: translateY(-4px);
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact p{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i{
  color: #d7c8ee;
  margin-top: 4px;
  min-width: 16px;
}

.footer-bottom{
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p{
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.footer-bottom-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover{
  color: #d7c8ee;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1100px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .footer{
    padding: 65px 0 22px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand h3{
    font-size: 26px;
  }

  .footer-col h4{
    font-size: 18px;
    margin-bottom: 18px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links{
    gap: 14px;
  }
}

@media (max-width: 480px){
  .footer{
    padding: 55px 0 20px;
  }

  .footer-logo{
    width: 82px;
  }

  .footer-brand h3{
    font-size: 24px;
  }

  .footer-desc,
  .footer-contact p,
  .footer-col ul li a,
  .footer-bottom p,
  .footer-bottom-links a{
    font-size: 13px;
  }

  .footer-social a{
    width: 38px;
    height: 38px;
  }
}

/* FLOATING BUTTONS */.floating-buttons{
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-buttons a{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}


.call-float{
  background: #564472;
}


.whatsapp-float{
  background: #564472;
}
.map-float{
  background:#564472;
}
.floating-buttons a:hover{
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){
  .product-grid,
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .counter-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-content h1{
    font-size:52px;
  }
}

@media (max-width:992px){
  .top-bar{
    display:none;
  }

  section{
    padding:80px 0;
  }

  .menu-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 5%;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    gap:0;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-menu > li{
    width:100%;
    border-bottom:1px solid #f1edf7;
  }

  .nav-menu > li > a{
    width:100%;
    padding:14px 0;
  }

  .dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    padding:0 0 0 15px;
    display:none;
    margin-top:5px;
    background:transparent;
    min-width:100%;
    border-radius:0;
    border:none;
  }

  .nav-menu li.open .dropdown{
    display:block;
  }

  .nav-menu li:hover .dropdown{
    transform:none;
  }

  .nav-right{
    display:none;
  }

  .logo-text{
    min-width:auto;
  }

  .logo-text h1{
    font-size:24px;
  }

  .hero-slider{
    height:85vh;
    min-height:620px;
  }

  .hero-content h1{
    font-size:46px;
  }

  .hero-content p{
    font-size:17px;
  }

  .owner-wrapper{
    flex-direction:column;
  }

  .owner-image-box img{
    height:500px;
  }

  .about{
    padding:80px 0;
  }

  .about-wrapper{
    flex-direction:column-reverse;
    gap:40px;
  }

  .about-text h2{
    font-size:36px;
  }

  .about-img{
    justify-content:center;
  }

  .about-img img{
    height:500px;
  }

  .video-card{
    min-width:280px;
    max-width:280px;
    height:380px;
  }

  .premium-banner h2,
  .cta-content h2{
    font-size:40px;
  }

  .contact-wrapper{
    flex-direction:column;
  }
}

@media (max-width:768px){
  .container{
    width:92%;
  }

  section{
    padding:70px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h2,
  .about-text h2,
  .premium-banner h2,
  .contact-info h2,
  .contact-form h2{
    font-size:30px;
  }

  .site-logo{
    width:90px;
  }

  .logo-text h1{
    font-size:22px;
  }

  .logo-text p{
    font-size:10px;
    letter-spacing:1px;
  }

  .hero-slider{
    height:auto;
    min-height:auto;
  }

  .hero-slide{
    position:relative;
    min-height:85vh;
    padding:110px 0 90px;
  }

  .hero-slide:not(.active){
    display:none;
  }

  .hero-content h4{
    font-size:14px;
    letter-spacing:2px;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.7;
  }

  .hero-btns{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-btns .btn{
    width:100%;
    text-align:center;
  }

  .slider-dots{
    bottom:20px;
  }

  .owner-section{
    padding:70px 20px;
  }

  .owner-content h2{
    font-size:30px;
  }

  .owner-highlights{
    grid-template-columns:1fr;
  }

  .owner-info-grid{
    grid-template-columns:1fr;
  }

  .owner-buttons{
    flex-direction:column;
  }

  .owner-btn{
    text-align:center;
  }

  .owner-image-box img{
    height:400px;
  }

  .about-points{
    grid-template-columns:1fr;
  }

  .about-text p{
    font-size:15px;
  }

  .about-img img{
    height:420px;
  }

  .about-info{
    flex-direction:column;
    gap:14px;
  }

  .counter-grid,
  .product-grid,
  .why-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .product-card-img{
    height:340px;
  }

  .video-gallery{
    padding:70px 0;
  }

  .video-card{
    min-width:240px;
    max-width:240px;
    height:320px;
  }

  .premium-banner{
    padding:90px 20px;
  }

  .premium-banner p{
    font-size:15px;
  }

  .cta-content h2{
    font-size:30px;
  }

  .cta-desc{
    font-size:16px;
  }

  .cta-buttons{
    flex-direction:column;
    gap:15px;
  }

  .cta-buttons a{
    width:100%;
    justify-content:center;
  }

  .map-box iframe{
    height:320px;
  }

  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-right{
    justify-content:center;
  }

  .floating-buttons{
    right:12px;
    bottom:15px;
  }

  .float-btn{
    width:50px;
    height:50px;
    font-size:21px;
  }
}

@media (max-width:576px){
  .navbar{
    gap:12px;
    padding:10px 0;
  }

  .site-logo{
    width:78px;
  }

  .logo-text h1{
    font-size:20px;
  }

  .logo-text p{
    font-size:9px;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-content p{
    font-size:15px;
  }

  .product-card-img{
    height:300px;
  }

  .action-row{
    flex-direction:column;
  }

  .action-row a{
    width:100%;
  }

  .video-card{
    min-width:220px;
    max-width:220px;
    height:290px;
  }

  .close-video{
    top:-38px;
    font-size:32px;
  }

  .map-section{
    padding:50px 5%;
  }

  .map-box iframe{
    height:280px;
  }
}

@media (max-width:400px){
  .container{
    width:94%;
  }

  .section-title h2,
  .about-text h2,
  .premium-banner h2,
  .contact-info h2,
  .contact-form h2,
  .cta-content h2{
    font-size:26px;
  }

  .hero-slide{
    padding:95px 0 80px;
  }

  .hero-content h1{
    font-size:27px;
  }

  .hero-content h4{
    font-size:13px;
  }

  .owner-image-box img,
  .about-img img{
    height:340px;
  }

  .product-card-img{
    height:260px;
  }
}