:root{
  --gold: #d4af37;
  --gold-soft: #f6e6a6;
  --gold-light: #fff6d8;
  --lime: #d7ff56;
  --brown: #3a2414;
  --brown-soft: #5a3a22;
  --ink: #1b1b1b;

  --card: rgba(255,255,255,.78);
  --glass: rgba(255,255,255,.62);

  --shadow: 0 18px 45px rgba(58,36,20,.18);
  --shadow-soft: 0 12px 25px rgba(58,36,20,.12);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth;   overflow-x: hidden;}
body{
  font-family: "Poppins", sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, var(--gold-light), transparent 55%),
              radial-gradient(900px 500px at 90% 20%, rgba(215,255,86,.18), transparent 50%),
              linear-gradient(180deg, #fffdf6, #fff9e7);
  color: var(--ink);
   overflow-x: hidden;
}

/* ===== helpers ===== */
.section-pad{ padding: 80px 0; }
.section-tint{ background: linear-gradient(180deg, rgba(246,230,166,.32), rgba(255,246,216,.55)); }
.section-dark{
  background: radial-gradient(900px 500px at 20% 20%, rgba(212,175,55,.20), transparent 60%),
              linear-gradient(180deg, #2a190f, #1d120b);
}
.section-label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 10px;
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 12px;
}
.section-text{ color: rgba(27,27,27,.78); }
.section-muted{
  max-width: 720px;
  color: rgba(27,27,27,.70);
}

/* gradient text */
.text-grad{
  background: linear-gradient(90deg, var(--gold), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(90deg, rgba(58,36,20,.95), rgba(90,58,34,.92));
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .mini-info{
  display:flex; align-items:center; gap:8px;
  font-size: 13px;
}
.topbar i{ color: var(--gold-soft); }
.topbar-link{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-size: 13px;
  display:flex; align-items:center; gap:8px;
}
.topbar-link:hover{ color: var(--lime); }

/* ===== Navbar ===== */
.navbar-glass{
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58,36,20,.08);
}
.navbar-brand .brand-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}
.navbar-brand .brand-sub{
  display:block;
  font-size: 12px;
  color: rgba(58,36,20,.72);
}
.brand-mark{
  width: 38px; height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, var(--lime), transparent 45%),
              linear-gradient(135deg, var(--gold), #b8892a);
  box-shadow: 0 12px 28px rgba(212,175,55,.25);
  border: 1px solid rgba(58,36,20,.12);
}
.brand-mark.small{ width: 34px; height: 34px; border-radius: 12px; }

.navbar .nav-link{
  color: rgba(58,36,20,.82);
  font-weight: 600;
  position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: var(--brown);
}
.navbar .nav-link::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
  border-radius: 10px;
  opacity: .9;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  transform: scaleX(1);
}

.btn-brand{
  background: linear-gradient(135deg, var(--gold), #bf8f2e);
  color: #1b130b;
  border: 0;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(212,175,55,.25);
}
.btn-brand:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}
.btn-outline-brand{
  border: 2px solid rgba(212,175,55,.65);
  color: var(--brown);
  font-weight: 700;
  background: rgba(255,255,255,.55);
}
.btn-outline-brand:hover{
  background: rgba(246,230,166,.55);
  border-color: rgba(215,255,86,.8);
}

/* ===== Navbar Logo ===== */
.navbar-logo{
  height: 46px;        /* adjust if needed */
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}

/* Subtle hover effect */
.navbar-logo:hover{
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 575px){
  .navbar-logo{
    height: 38px;
  }
}


/* ===== Hero ===== */
.hero{ position: relative; }
.hero-slide{
  min-height: 78vh;
  background-position: center;
  background-size: cover;
  position: relative;
  display:flex;
  align-items:center;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 25% 35%, rgba(212,175,55,.28), transparent 55%),
    linear-gradient(90deg, rgba(58,36,20,.78), rgba(58,36,20,.30));
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
}
.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.0rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}
.hero-lead{
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 640px;
}
.hero-badge{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(246,230,166,.35);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{ filter: drop-shadow(0 10px 18px rgba(0,0,0,.35)); }

/* ===== About ===== */
.mini-card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid rgba(58,36,20,.08);
  box-shadow: var(--shadow-soft);
}
.mini-card i{
  font-size: 20px;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  padding: 10px;
  border-radius: 14px;
}
.mini-card-title{ font-weight: 800; color: var(--brown); }
.mini-card-sub{ font-size: 13px; color: rgba(58,36,20,.72); }

.about-art{
  position: relative;
  min-height: 420px;
}
.about-card{
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,246,216,.78));
  border: 1px solid rgba(58,36,20,.10);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-card-badge{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  background: rgba(215,255,86,.22);
  border: 1px solid rgba(215,255,86,.35);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 14px;
}
.about-card-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brown);
}
.about-card-text{ color: rgba(27,27,27,.76); }

.stat{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(58,36,20,.08);
  border-radius: 18px;
  padding: 16px;
}
.stat-num{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--brown);
}
.stat-label{ color: rgba(58,36,20,.70); font-weight: 600; font-size: 13px; }

.glow-orb{
  position:absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .55;
  pointer-events:none;
}
.orb-1{ width: 180px; height: 180px; background: rgba(212,175,55,.55); top: 12px; right: 30px; }
.orb-2{ width: 220px; height: 220px; background: rgba(215,255,86,.35); bottom: 10px; left: -10px; }

/* ===== About Right Side Image Only ===== */
.about-image-wrap{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58,36,20,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(246,230,166,.45));
  min-height: 460px;
}

.about-image{
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease;
}

/* Hover zoom */
.about-image-wrap:hover .about-image{
  transform: scale(1.07);
}

/* Golden overlay */
.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 280px at 20% 15%, rgba(215,255,86,.18), transparent 55%),
    linear-gradient(180deg, rgba(212,175,55,.12), rgba(58,36,20,.20));
  pointer-events:none;
}

/* Badge */
.about-image-badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 16px 35px rgba(212,175,55,.22);
}

/* Responsive */
@media (max-width: 991px){
  .about-image-wrap{ min-height: 380px; }
  .about-image{ height: 380px; }
}
@media (max-width: 575px){
  .about-image-wrap{ min-height: 280px; }
  .about-image{ /*height: 280px;*/ }
}


/* ===== Services ===== */
.service-card{
  background: var(--card);
  border: 1px solid rgba(58,36,20,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:-40% -30% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(215,255,86,.35), transparent 60%);
  transform: rotate(25deg);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-icon{
  width: 54px; height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border: 1px solid rgba(58,36,20,.10);
  box-shadow: 0 14px 30px rgba(212,175,55,.20);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-icon i{ font-size: 22px; color: #1b130b; }
.service-title{
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-text{
  color: rgba(27,27,27,.74);
  position: relative;
  z-index: 1;
}

/* ===== Service Icon 360° Rotation Effect ===== */
.service-icon{
  transition: transform .6s ease, box-shadow .6s ease;
}

/* Icon itself */
.service-icon i{
  transition: transform .6s ease;
}

/* Rotate icon when card is hovered */
.service-card:hover .service-icon i{
  transform: rotate(360deg);
}

/* Optional: slight scale + glow on icon */
.service-card:hover .service-icon{
  transform: scale(1.08);
  box-shadow: 0 18px 38px rgba(212,175,55,.35);
}


/* ===== Why ===== */
.why-list{ display:flex; flex-direction:column; gap: 14px; }
.why-item{
  display:flex;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(58,36,20,.08);
  box-shadow: var(--shadow-soft);
}
.why-item i{
  font-size: 22px;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border-radius: 14px;
  padding: 10px;
  height: 44px;
}
.why-item h4{
  font-weight: 800;
  color: var(--brown);
  margin: 0 0 6px;
}
.why-item p{ margin: 0; color: rgba(27,27,27,.72); }

.why-card{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(246,230,166,.48));
  border: 1px solid rgba(58,36,20,.10);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.promise-box{
  display:flex;
  gap: 12px;
  align-items:center;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(58,36,20,.08);
  border-radius: 18px;
  padding: 14px;
}
.promise-box i{
  font-size: 22px;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border-radius: 14px;
  padding: 10px;
}
.promise-title{ font-weight: 900; color: var(--brown); }
.promise-sub{ font-size: 13px; color: rgba(58,36,20,.72); }

/* ===== Counters ===== */
.counter-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(246,230,166,.18);
  border-radius: 22px;
  padding: 26px 18px;
  text-align:center;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.counter-card i{
  font-size: 28px;
  display:inline-grid;
  place-items:center;
  width: 56px; height: 56px;
  border-radius: 18px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  color: #1b130b;
}
.counter-num{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  line-height: 1;
}
.counter-label{
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

/* ===== Gallery ===== */
.gallery-item{
  position: relative;
  overflow:hidden;
  border-radius: 18px;
  border: 1px solid rgba(58,36,20,.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.60);
}
.gallery-item img{
  width:100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
  display:block;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 35%, rgba(58,36,20,.72));
  opacity: 0;
  transition: .35s ease;
}
.gallery-item:hover .gallery-overlay{ opacity: 1; }
.gallery-caption{
  position:absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s ease;
}
.gallery-item:hover .gallery-caption{
  opacity: 1;
  transform: translateY(0);
}
.gallery-pill{
  font-size: 12px;
  background: rgba(246,230,166,.20);
  border: 1px solid rgba(246,230,166,.25);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ===== Contact ===== */
.contact-card, .form-card{
  background: var(--card);
  border: 1px solid rgba(58,36,20,.10);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.contact-line{
  display:flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(58,36,20,.18);
}
.contact-line:last-child{ border-bottom: none; padding-bottom: 0; }
.contact-line i{
  font-size: 20px;
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border-radius: 14px;
  padding: 10px;
  height: 44px;
}
.contact-strong{ font-weight: 900; color: var(--brown); }
.contact-muted{ color: rgba(27,27,27,.75); font-size: 14px; }
.contact-muted a{ color: rgba(58,36,20,.92); font-weight: 700; text-decoration:none; }
.contact-muted a:hover{ color: #000; text-decoration: underline; }

.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(58,36,20,.18);
  background: rgba(255,255,255,.74);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(215,255,86,.75);
  box-shadow: 0 0 0 .22rem rgba(212,175,55,.18);
}
.form-hint{ font-size: 13px; color: rgba(58,36,20,.65); }

/* ===== Map ===== */
.map-wrap iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
/* ===== Location / Map Section ===== */
.location-section{
  background:
    radial-gradient(800px 360px at 20% 10%, rgba(212,175,55,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,246,216,.55), rgba(246,230,166,.35));
}

.map-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58,36,20,.12);
  background: rgba(255,255,255,.65);
}

/* Map iframe */
.map-card iframe{
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}



/* Responsive */
@media (max-width: 991px){
  .map-card iframe{ height: 380px; }
}
@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
	.jf-cn-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575px){

  .map-card iframe{ height: 300px; }
}


/* ===== Footer ===== */
.footer{
  background: radial-gradient(900px 520px at 15% 15%, rgba(212,175,55,.22), transparent 55%),
              linear-gradient(180deg, #2a190f, #1d120b);
  color: rgba(255,255,255,.88);
  padding: 70px 0 24px;
}
.footer-heading{
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
}
.footer-sub{ color: rgba(255,255,255,.65); font-size: 12px; }
.footer-text{ color: rgba(255,255,255,.72); }
.footer-links, .footer-contact{ list-style:none; padding:0; margin:0; }
.footer-links li, .footer-contact li{ margin-bottom: 10px; }
.footer-links a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  font-weight: 600;
}
.footer-links a:hover{ color: var(--lime); }
.footer-contact i{ color: var(--gold-soft); margin-right: 8px; }
.footer-contact a{ color: rgba(255,255,255,.78); text-decoration:none; font-weight: 700; }
.footer-contact a:hover{ color: var(--lime); }

.footer-hr{
  margin: 28px 0 16px;
  border-color: rgba(255,255,255,.10);
}
.socials{
  display:flex;
  gap: 10px;
}
.socials a{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(246,230,166,.14);
  color: #fff;
  transition: .2s ease;
}
.socials a:hover{
  transform: translateY(-2px);
  color: #1b130b;
  background: linear-gradient(135deg, var(--gold), var(--lime));
}


/* ===== Footer Logo ===== */
.footer-logo{
  height: 58px;          /* slightly bigger for footer */
  width: auto;
  object-fit: contain;
  display: inline-block;
  transition: transform .3s ease, filter .3s ease;
}

/* Subtle hover glow */
.footer-logo:hover{
  transform: scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(212,175,55,.45));
}

/* Mobile */
@media (max-width: 575px){
  .footer-logo{
    height: 46px;
  }
}


/* ===== Floating buttons ===== */
.float-actions{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  text-decoration:none;
  position: relative;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  overflow:hidden;
}
.float-btn i{ font-size: 22px; color: #1b130b; }
.float-tooltip{
  position:absolute;
  right: 68px;
  white-space: nowrap;
  background: rgba(58,36,20,.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: .2s ease;
  pointer-events:none;
  border: 1px solid rgba(246,230,166,.18);
}
.float-btn:hover .float-tooltip{
  opacity: 1;
  transform: translateX(0);
}
.float-whatsapp{
  background: linear-gradient(135deg, #25d366, var(--lime));
  animation: pulseGlow 1.8s ease-in-out infinite;
}
.float-call{
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  animation: pulseGlow 2.2s ease-in-out infinite;
}
@keyframes pulseGlow{
  0%,100%{ box-shadow: 0 16px 40px rgba(0,0,0,.18), 0 0 0 0 rgba(212,175,55,.35); }
  50%{ box-shadow: 0 16px 40px rgba(0,0,0,.18), 0 0 0 14px rgba(212,175,55,0); }
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991px){
  .hero-content{ padding: 90px 0 70px; }
  .hero-slide{ min-height: 72vh; }
  .gallery-item img{ height: 220px; }
}
@media (max-width: 575px){
  .section-pad{ padding: 64px 0; }
  .gallery-item img{ height: 200px; }
  .float-actions{ right: 12px; bottom: 12px; }
}
