/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins, sans-serif;
background:#dae3e6;
color:#0c234e;
line-height:1.6;
}

.container{
width:90%;
max-width:1600px;
margin:auto;
}

h1,h2,h3{
color:#0c234e;
}





/* HEADER */
header{
position:sticky;
top:0;
z-index:1000;

display:flex;
justify-content:space-between;
align-items:center;

padding:32px;
background:#dae3e6;
}

.section-divider{
  width:160px;
  height:8px;
  background:linear-gradient(to right, transparent, #b57b3c, transparent);
  margin:60px auto; /* 🔥 FIX */
  border-radius:2px;
}

.logo{
display:flex;
align-items:center;
gap:24px;
}

.logo img{
height:88px;
width:auto;
transform: translateY(4px);
}

.logo-text{
font-weight:680;
font-size:32px;
color:#0c234e;
letter-spacing:0.5px;
}

.header-btn{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}

.btn{
background:#b57b3c;
color:white;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:all 0.3s ease;
}

.icon{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}

.btn:hover{
background:#c94f3d;
transform:translateY(-4px) scale(1.03);
box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

.btn:active{
transform:scale(0.96);
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

.header-actions{
display:flex;
gap:18px;
align-items:center;
}

.header-actions a,
.header-actions button{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:white;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  text-decoration:none;
  cursor:pointer;

  /* 🔥 ADD THESE (important) */
  padding:0;
  margin:0;
  border:none;
  box-sizing:border-box;
}

.header-actions a:hover,
.header-actions button:hover{
  transform:translateY(-3px) scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* Brand hover colors */
.header-actions a:nth-child(1):hover,
.header-actions button:nth-child(1):hover{
  background:#c94f3d; /* Call */
}

.header-actions a:nth-child(2):hover{
background:#25D366; /* WhatsApp */
}

.header-actions a:nth-child(3):hover{
background:#0c234e; /* Location */
}

.header-actions a:hover .icon,
.header-actions button:hover .icon{
  filter:brightness(0) invert(1);
}






/* HERO LOAD ANIMATION */
.hero{
opacity:0;
animation:fadeInHero 1s ease forwards;
}

@keyframes fadeInHero{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}





/* HERO */

.hero{
padding:40px 0;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
max-width:550px;
}

.hero-text h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
}

.hero-text p{
color:#c94f3d;
font-size:18px;
margin-bottom:35px;
max-width:500px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-buttons .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:50px;
  height:50px;
  padding:0;
  border-radius:10%;
}

.hero-buttons .icon{
  width:24px;
  height:24px;
}

.hero img{
width:500px;
max-width:100%;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}






/* SCROLL ANIMATION BASE */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
 





/* BRANDS*/
.brands {
  padding: 40px 0;
  text-align: center;
}

.brands-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #0c234e;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.brand-logos img {
  height: 72px;
  opacity: 0.6;
  transition: 0.3s ease;
  filter: grayscale(50%);
}

.brand-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}




/* TRUST */

.trust{
padding:8px 0;
background:#dae3e6;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
}

.trust-card{
background:white;
color:#c94f3d;
padding:24px;
border-radius:10px;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
transition:transform 1s ease;
}
.trust-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}






/* CATEGORIES */

.categories{
padding:8px 0;
}

.category-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:24px;
}

.category-card{
background:white;
color:#c94f3d;
padding:32px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
width:248px;
display:flex;              /* 🔥 important */
  flex-direction:column;
  justify-content:space-between;
  transition:transform 0.3s ease;
}

.card-content{
  flex-grow:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.category-card p{
margin-bottom:16px;
}

.category-card .btn{
  outline: none;
  box-shadow: none;
border: none;
}
.category-card .btn:hover{
transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.category-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}



/* SEO */
.seo-text {
  padding: 8px 0;
}

.seo-intro {
  text-align: center;
  max-width: 696px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #0c234e;
text-align: center;
  opacity: 0.8;

}

.seo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.seo-box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
 width:260px;
}

.seo-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0c234e;
text-align: center;
}

.seo-box p {
  font-size: 14px;
  color: #c94f3d;
text-align: center;
}

.seo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.seo-text h2 {
  text-align: center;
  margin-bottom: 16px;
}



/* REVIEWS */

.review-heading{
text-align:center;
font-size:28px;
font-weight:700;
margin-bottom:22px;
}

.review-stats{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:28px;
}

.stat-pill{
background:white;
padding:10px 18px;
border-radius:999px;
font-weight:600;
box-shadow:0 6px 14px rgba(0,0,0,0.08);
color:#0c234e;
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
margin-bottom:30px;
}

.review-box{
background:white;
padding:24px;
border-radius:18px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
transition:.3s ease;
text-align:center;
}

.review-link{
text-decoration:none;
display:block;
color:inherit;
cursor:pointer;
}

.review-link:hover,
.review-link:focus,
.review-link:active{
color:inherit;
}

.review-box:hover{
transform:translateY(-6px);
box-shadow:0 16px 30px rgba(0,0,0,0.12);
}

.stars{
color:#b57b3c;
font-size:20px;
margin-bottom:12px;
letter-spacing:2px;
}

.review-box p{
color:#0c234e;
line-height:1.7;
margin-bottom:14px;
font-size:15px;
}

.review-box span{
color:#c94f3d;
font-weight:600;
}





/* CTA */
.cta{
background:#0c234e;
color:white;
text-align:center;
padding:48px 24px;
}

.cta h2{
color:white;
margin-bottom:8px;
}

.cta p{
margin-bottom:16px;
}

.cta a{
background:#b57b3c;
padding:16px 80px;
border-radius:6px;
color:white;
text-decoration:none;
margin:16px;
display:inline-block;
}






/* LOCATION */

.location{
padding:48px 0;
color:#c94f3d;
text-align:center;
}





/* FOOTER */

footer{
background:#0c234e;
color:white;
text-align:center;
padding: 24px 16px 32px; /* 🔥 less top, more bottom */
}


footer a{
color:#b57b3c;
text-decoration:none;
}

.footer-social{
display:flex;
justify-content:center;
gap:16px;
margin:16px 0;
}

.footer-social a{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:white;
color:#0c234e;
text-decoration:none;
transition:0.3s;
}

.footer-social svg{
width:24px;
height:24px;
}

.footer-social a:hover{
transform:translateY(-3px);
box-shadow:0 6px 14px rgba(0,0,0,0.2);
}

.footer-social a:nth-child(1):hover{
background:#E4405F;
color:white;
}

.footer-social a:nth-child(2):hover{
background:#1877F2;
color:white;
}




/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

/* HEADER */
header{
flex-direction:column;
gap:16px;
text-align:center;
}

.logo{
justify-content:center;
}

.social-icons{
gap:16px;
}

.social-icons a{
width:50px;
height:50px;
}

.social-icons svg{
width:28px;
height:28px;
}





/* HERO */
.hero{
flex-direction:column;
text-align:center;
padding:40px 0;
gap:30px;
}

.hero-text{
max-width:100%;
}

.hero-text h1{
font-size:28px;
}

.hero-text p{
font-size:16px;
}

.hero-buttons{
justify-content:center;
}

.hero img{
width:100%;
}

.hero-buttons .btn{
width:50px;
height:50px;
padding:0;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;
}

.hero-buttons .btn .icon{
width:24px;
height:24px;
}





/* TRUST */
.trust-grid{
grid-template-columns:1fr;
}

/* CATEGORIES */
.category-grid{
flex-direction:column;
align-items:center;
}

/* REVIEWS */
.review{
font-size:14px;
}

/* CTA */
.cta{
padding:48px 16px;
}

.cta a{
display:block;
width:100%;
max-width:280px;
margin:10px auto;
}

/* LOCATION */
.location{
padding:48px 16px;
}
}






/* =========================
   PRODUCT POPUP
========================= */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
backdrop-filter: blur(8px);
background: rgba(0,0,0,0.4);

display:flex;
align-items:center;
justify-content:center;
pointer-events: none;

opacity:0;
visibility:hidden;
transition:0.3s ease;

z-index:2000;
}

.popup.active{
opacity:1;
visibility:visible;
pointer-events: all;
}

.popup-content{
background:white;
width:70%;
max-width:900px;
max-height:85vh;
overflow-y:auto;
padding:24px;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
transform:scale(0.9);
transition:0.3s ease;
margin-bottom: 28px;   /* space below heading */
line-height: 1.3;
position: relative;   /* 🔥 IMPORTANT */
}

.popup-content h2{
margin-bottom: 24px;   /* space below heading */
line-height: 1.3;
padding-right: 50px;
}
.popup.active .popup-content{
transform:scale(1);
}

.popup-images img{
width:100%;
border-radius:8px;
margin-bottom:12px;
height:140px;
object-fit:cover;
/* POPUP IMAGE HOVER */
transition:transform 0.4s ease, box-shadow 0.3s ease;
cursor:pointer;
}


.popup-images{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
gap:12px;
position:relative;
z-index:1;
}

.close-btn{
position: absolute;
top: 16px;
right: 16px;
z-index:9999;  /* enough, no need 9999 */
background:white;

width:42px;
height:42px;

display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;

cursor:pointer;
box-shadow:0 6px 16px rgba(0,0,0,0.25);
transition:0.3s;
pointer-events:auto;
}

.close-btn:hover{
background:#c94f3d;
color:white;
transform:scale(1.1);
}

.close-btn{
user-select: none;        /* prevents text selection */
  -webkit-user-select: none;
  outline: none;            /* removes focus outline */
}
.close-btn:focus{
  outline: none;
}





/* IMAGE ZOOM VIEWER */
.image-viewer{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);

display:flex;
align-items:center;
justify-content:center;

opacity:0;
visibility:hidden;
transition:opacity 0.4s ease;
z-index:3000;
}

.image-viewer.active{
opacity:1;
visibility:visible;
}

.image-viewer img{
max-width:90%;
max-height:90%;
border-radius:12px;

transform:scale(0.85);
transition:transform 0.4s ease;
}

.image-viewer.active img{
transform:scale(1);
}

.close-viewer{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
background:none;
  border:none;
  user-select:none;
  outline:none;
}
.close-viewer:hover{
  color:#c94f3d;   /* 🔥 only arrow changes */
}



/* Dot Indicators */
.image-dots{
position:absolute;
bottom:20px;
display:flex;
gap:8px;
}

.image-dots span{
width:10px;
height:10px;
border-radius:50%;
background:rgba(255,255,255,0.4);
transition:0.3s;
}

.image-dots span.active{
background:white;
transform:scale(1.2);
}




/* navigation arrow */
.nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;

  color:white;
  cursor:pointer;

  padding:10px;

  transition:0.3s;

  background:none;
  border:none;
  user-select:none;
  outline:none;

}

.nav-arrow:hover{
  color:#c94f3d;   /* 🔥 only arrow changes */
  transform:translateY(-50%) scale(1.1);
}

.nav-arrow.left{
left:20px;
}

.nav-arrow.right{
right:20px;
}

#viewerImg{
transition:opacity 0.3s ease;
}

.nav-arrow:active{
  color:#c94f3d;
  transform:translateY(-50%) scale(0.95);
}



/* map */
.map-container {
  width: 100%;
  max-width: 1000px; /* keeps it elegant, not too stretched */
  margin: 30px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 320px; /* 🔥 control height here */
  border: 0;
  display: block;
}




@media (max-width:768px){

.close-btn{
top:12px;
right:12px;

width:48px;
height:48px;
font-size:28px;

z-index:1000; /* extra safety for mobile */
}
.header-actions{
gap:12px;
}

.header-actions a{
width:44px;
height:44px;
}

.header-actions .icon{
width:22px;
height:22px;
}

.review-heading{
font-size:22px;
}

.header-actions a,
.header-actions button{
  width:48px;
  height:48px;
}
}
