/* HERO */

.contact-hero{
height:45vh;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("../image/wall.jpg");
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:40px;
}

.contact-hero h1{
font-size:60px;
margin-bottom:10px;
}

.contact-hero p{
font-size:18px;
max-width:600px;
opacity:0.9;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:1rem 4rem;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(6px);
z-index:1000;
box-sizing:border-box;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
text-decoration:none;
font-size:20px;
font-weight:600;
}

.logo img{
height:40px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.nav-links a:hover{
opacity:0.7;
}
@media (max-width:768px){

  .navbar{
    padding: 0.8rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo{
    margin-bottom: 10px;
  }

  .nav-links{
    display: flex;
    overflow-x: auto;      /* ✅ enables scroll */
    white-space: nowrap;
    gap: 12px;
    width: 100%;
    padding-bottom: 5px;
  }

  /* HIDE SCROLLBAR */
  .nav-links::-webkit-scrollbar{
    display: none;
  }

  .nav-links a{
    flex: 0 0 auto;       /* ❗ VERY IMPORTANT */
    margin: 0;
    padding: 6px 12px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
  }

}

/* CONTACT FORM SECTION */

.contact-section{
padding:100px 10%;
background:#f4f6f8;
display:flex;
justify-content:center;
}

.contact-form-box{
background:white;
padding:50px;
max-width:700px;
width:100%;
border-radius:12px;
box-shadow:0 25px 60px rgba(0,0,0,0.2);
border:4px solid #eee;
text-align:center;
}

.contact-form-box h2{
font-size:32px;
margin-bottom:10px;
}

.contact-form-box p{
margin-bottom:30px;
color:#555;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.input-group{
text-align:left;
}

.input-group label{
font-weight:600;
margin-bottom:5px;
display:block;
}

.input-group input,
.input-group textarea{
width:100%;
padding:14px;
border:2px solid #ddd;
border-radius:8px;
font-size:14px;
transition:0.3s;
}

.input-group input:focus,
.input-group textarea:focus{
outline:none;
border-color:#0d2b3e;
box-shadow:0 0 8px rgba(0,0,0,0.1);
}



/* BUTTON */

.submit-btn{
background:#0d2b3e;
color:white;
padding:16px;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
background:#173f5f;
transform:translateY(-2px);
}



/* MAP SECTION */

.map-section{
padding:100px 10%;
background:white;
}

.map-wrapper{
display:flex;
gap:60px;
align-items:center;
}

.map{
flex:1;
}

.map iframe{
width:100%;
height:380px;
border:0;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.map-details{
flex:1;
}

.map-details h2{
font-size:36px;
margin-bottom:10px;
}

.desc{
margin-bottom:25px;
color:#555;
}

.detail-item{
display:flex;
align-items:center;
gap:12px;
margin-bottom:15px;
font-size:16px;
}

.detail-item i{
color:#0d2b3e;
font-size:18px;
}

.detail-item a{
text-decoration:none;
color:#0d2b3e;
font-weight:600;
}

.detail-item a:hover{
text-decoration:underline;
}



/* FOOTER */

.footer{
  text-align:center;
  padding:25px;
  background:#111;
  color:white;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px; /* reduced gap overall */
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-left h3 {
  font-size: 1.9rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #ffffff;
}

.footer-left p {
  color: #dce8ff;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* Center Section */
.footer-center {
  flex: 1.3;
  display: flex;
  justify-content: space-around;
  min-width: 280px;
  gap: 50px; /* 🔹 reduced the space between Quick Links & Products */
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  position: relative;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbe6ff;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* 🌈 COOL HOVER EFFECT */
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  color: #ffffff;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffffff;
  color: #031a6b;
  transform: scale(1.15) rotate(6deg);
}

.shop-timing p {
  color: #dbe6ff;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cbd5ff;
}

.popup{
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:0.4s;
}

.popup.active{
opacity:1;
pointer-events:auto;
}

.popup-box{
background:white;
padding:40px;
border-radius:10px;
text-align:center;
max-width:400px;
width:90%;
}

.popup-box h2{
margin-bottom:10px;
}

.popup-box button{
margin-top:15px;
padding:10px 20px;
border:none;
background:#122C4F;
color:white;
cursor:pointer;
}
/* =========================
   📱 MOBILE FIX - MAP SECTION
========================= */
@media (max-width:768px){

  .map-section{
    padding: 50px 20px;
  }

  /* MAIN FIX */
  .map-wrapper{
    flex-direction: column;   /* 🔥 STACK */
    gap: 30px;
  }

  .map{
    width: 100%;
  }

  .map iframe{
    width: 100%;
    height: 250px;   /* perfect mobile height */
  }

  .map-details{
    width: 100%;
    text-align: center;
  }

  .map-details h2{
    font-size: 24px;
  }

  .desc{
    font-size: 14px;
  }

  .detail-item{
    justify-content: center;
    font-size: 14px;
  }

}

/* FLOATING CONTACT BUTTONS */

.floating-contact{
  position:fixed;
  right:20px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366;
  color:white;
  font-size:22px;
  padding:14px;
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
}

/* CALL */
.call-btn{
  background:#0d2b3e;
  color:white;
  font-size:20px;
  padding:14px;
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.call-btn:hover{
  transform:scale(1.1);
}