/* ============================= */
/* GLOBAL */
/* ============================= */
/**{
  box-sizing:border-box;
}*/

*{
  max-width: 100%;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.carousel {
  width: 100%;
  overflow: hidden;
}
body {
  margin: 0;
  padding:0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 35%, #ffffff 70%, #f5f7fa 100%);
  background: #0b0f1a;
  color: white;
}

/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
  width: 100%;
  background: rgba(2,6,23,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* TOP BAR */
/* .top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 8px 30px;
  font-size: 13px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.05);
} */

/* ===== PREMIUM HEADER UI ===== */

body{
  margin:0;
  font-family: 'Poppins', sans-serif;
}

/* Top Contact Bar */
.top-bar{
  background: linear-gradient(90deg,#020617,#06142e);
  color:#fff;
  padding:10px 40px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:30px;
  /* border-bottom:1px solid rgba(183, 51, 51, 0.799); */
}
.logo-img img{
  width:48px;
  margin:0;
  background:#a5b6ce
  height: auto;
  display: block;
  align-items: right;
}


.top-bar a{
  color:#f8fafc;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.3px;
  transition:all .3s ease;
}

.top-bar a:hover{
  color:#d4af37;
}

/* Main Navbar */
.nav-main{
  background: rgba(1,10,28,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
  position:sticky;
  top:0;
  min-height:72px;
  z-index:999;
}

.nav-main img{
  width:40px;
  height:40px;
  object-fit:contain;
  display:block;
  padding:0;
}

/* Logo Section */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-img{
  width:52px;
  height:52px;
  padding:0;
  display:block;
  object-fit:contain;
}

.logo-text{
  margin:0;
  font-size:52px;
  font-weight:700;
  color:#d4af37;
  padding:0;
  letter-spacing:0.5px;
}

/* Navigation Menu */
.nav-links{
  display:flex;
  gap:38px;
  align-items:center;
}

.nav-links a{
  color:#ffffff;
  text-decoration:none;
  font-size:18px;
  font-weight:500;
  position:relative;
  transition:all .3s ease;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:2px;
  background:#d4af37;
  transition:0.3s;
}

.nav-links a:hover{
  color:#d4af37;
}

.nav-links a:hover::after{
  width:100%;
}

/* Mobile Responsive */
@media(max-width:768px){

/* .top-bar{
  justify-content:center;
  flex-direction:column;
  gap:8px;
  padding:10px 15px;
  text-align:center;
} */

.nav-main{
  flex-direction:column;
  gap:18px;
  padding:14px 18px;
}

.logo-text{
  font-size:28px;
}

.logo-img{
  width:42px;
  height:42px;
}

.nav-links{
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-links a{
  font-size:16px;
}

}

/* MAIN NAV */
.nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background:#020b1f;
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  background: linear-gradient(90deg, #facc15, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-img{
  width:65px;          /* adjust logo size */
  height:65px;
  object-fit:contain;  /* keeps proper ratio */
  display:block;
}

/* Logo wrapper */
.logo-wrap{
  display:flex;
  align-items:center;
  overflow:hidden;
}



/* NAV LINKS */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 15px;
  transition: 0.3s;
}

/* HOVER EFFECT */
nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #facc15;
  transition: 0.3s;
}

nav a:hover {
  color: #facc15;
}

nav a:hover::after {
  width: 100%;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .top-bar {
    display:flex;
    justify-content: center-end;
    align-items: center;
    gap: 30px;
    padding: 6px 20px;
    font-size: 13px;
    color: #fff
    flex-direction: column;
    text-align: center;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* separator line */
.top-bar span + span::before {
  content: "|";
  margin: 0 10px;
  color: #475569;
}
  .nav-main {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================= */
/* CAROUSEL */
/* ============================= */
.carousel {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform:scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  animation: zoomSlow 10s linear infinite;
}

.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* TEXT POSITION */
.caption {
  position: absolute;
  bottom: 25%;
  left: 10%;
  max-width: 500px;
}

/* TEXT REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: all 1s ease;
}

/* ACTIVE TEXT */
.slide.active .reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* DELAY EFFECT */
.slide.active h2 {
  transition-delay: 0.3s;
}

.slide.active p {
  transition-delay: 0.6s;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #94a3b8;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #facc15;
  transform: scale(1.3);
}

/* CAPTION */
.caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  max-width: 500px;
}

/* HEADING */
.caption h2 {
  font-size: 50px;
  font-family: 'Playfair Display', serif;

  background: linear-gradient(90deg, #facc15, #d4af37, #facc15);
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 4s linear infinite;

  text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* TEXT */
.caption p {
  font-size: 18px;
  color: #e2e8f0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* ANIMATION */
@keyframes shine {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ============================= */
/* SECTION */
/* ============================= */
.section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section h3{
  font-size: 12px;
  font-weight: lighter;
  /*font-family: sd;*/
  font-weight: light;
}

.dark {
  background: #020617;
}

/* ============================= */
/* CARDS (FINAL CLEAN) */
/* ============================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
  justify-items: center;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}



/* OVERLAY */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 01px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  /*color: white;*/
  text-align: center;
  color: #facc15;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.card-p {
font-size: 13px;
margin: 5px 0 0;
color: #e2e8f0;

}

/* HOVER */
.card:hover img {
  transform: scale(1.1);
}

.card:hover .card-overlay {
  background: linear-gradient(to top, rgba(212,175,55,0.8), transparent);
}

/* ============================= */
/* GALLERY */
/* ============================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.neon-text {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}
.neon-text {
  animation: flicker 1.5s infinite alternate;
}
.neon-text {
  font-weight: bold;
  color: #22c55e;

  text-shadow:
    0 0 5px #22c55e,
    0 0 10px #22c55e,
    0 0 20px #22c55e,
    0 0 40px #16a34a;
}
@keyframes flicker {
  from {
    text-shadow:
      0 0 5px #22c55e,
      0 0 10px #22c55e,
      0 0 20px #22c55e;
  }
  to {
    text-shadow:
      0 0 10px #22c55e,
      0 0 20px #22c55e,
      0 0 40px #16a34a;
  }
}

/* ============================= */
/* LIGHTBOX */
/* ============================= */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

/* LIGHTBOX ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================= */
/* FORM */
/* ============================= */
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #020617;
  border: 1px solid #334155;
  color: white;
}
.form-title{
  text-align: center;
  margin-bottom:30px;
}
/* FULL WIDTH SECTION */
.contact-section {
  width: 100%;
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center; /* centers horizontally */
}

/* SIDE-BY-SIDE LAYOUT */
.contact-container {
  display: flex;
  flex-wrap: wrap; /* IMPORTANT */
  width: 100%;
  max-width: 1200px;   /* IMPORTANT */
  gap: 30px;
  margin: 0 auto;      /* centers the block */
  padding: 0 20px;     /* prevents edge sticking */
  align-items: stretch;
}

/* LEFT (MAP) */
#contact {
  width: 100%;
  padding: 60px 20px;
}
.contact-map {
  flex: 1 1 500px;
  flex: 1;
  min-width:400px;
  min-height:300px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
   box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 0 none;
}

/* RIGHT (FORM) */
.contact-form {
  flex: 1 1 500px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

/* DETAILS */
.contact-details {
  margin-top: 20px;
  color: #94a3b8;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

/* FORM BOX */
.form-box {
  width: 100% !important;
  max-width: 500px;
  margin: 0 auto;
}

/* DETAILS */
.contact-details {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 14px;
}
  .btn-submit {
  margin-top: 25px;
  padding: 20px 40px;
  width: 100%;

  background: linear-gradient(135deg, #facc15, #d4af37);
  color: #000;

  font-size: 20px;
  font-weight: 600;

  border: none;
  border-radius: 10px;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 10px 30px rgba(237, 184, 8, 0.4);
}
.btn-submit:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(212,175,55,0.5);
}
.btn-submit:active {
  transform: scale(0.98);
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(143, 59, 59, 0.5), transparent);
  transition: 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit {
  position: relative;
  overflow: hidden;
}
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .caption {
    left: 5%;
    right: 5%;
  }

  .caption h2 {
    font-size: 26px;
  }

  .caption p {
    font-size: 14px;
  }
}

iframe {
  width: 100%;
  max-width: 100%;
  border: none;
}
/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map {
    height: 300px;
  }

  .form-box {
    max-width: 100%;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .contact-section {
    padding: 40px 15px;
  }

  .contact-map {
    height: 250px;
  }

  .form-title {
    font-size: 22px;
  }

  .contact-details {
    text-align: center;
  }
}

/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
  background: #020617;
  color: #94a3b8;
  padding-top: 50px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* BRAND */
.footer-brand h2 {
  color: #facc15;
  font-family: 'Playfair Display';
}

.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #facc15;
}

/* CONTACT */
.footer-contact p {
  margin: 6px 0;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 30px;
  font-size: 14px;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .footer-container {
    text-align: center;
  }

}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  background: #25D366;
  color: white;

  padding: 10px 14px;
  border-radius: 50px;

  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;

  transition: 0.3s ease;
}



/* HOVER */
.whatsapp-widget:hover {
  transform: scale(1.05);
  background: #22c55e;
}

/* TEXT HIDE ON MOBILE */
@media (max-width: 768px) {
  .whatsapp-widget span {
    display: none;
  }

  .whatsapp-widget {
    padding: 12px;
    font-size: 18px;
  }
}

.whatsapp-widget {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* Mobile */
@media(max-width:768px){

.nav-main{
  flex-direction:column;
  gap:15px;
}

.logo-img{
  width:48px;
  height:48px;
}

.logo-text{
  font-size:22px;
}

nav{
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

}