/* Base Reset */
@font-face {
  font-family: 'Batangas';
  src: url('fonts/BatangasBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #5c433e;
  overflow-x: hidden;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  background-color: #2a2a2a;
  min-height: 200px;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* TOP SOCIAL BAR */
.top-social-bar {
  background: linear-gradient(90deg, #3b2a24, #1e1c1c);
  padding: 6px 0;
}

.top-social-bar .social-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 25px;
}

.top-social-bar a {
  color: #f4c86a;
  margin-left: 15px;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.top-social-bar a:hover {
  color: #fff;
  text-shadow: 0 0 8px #f4c86a;
  transform: scale(1.2);
}

/* Center icons on mobile */
@media (max-width: 768px) {
  .top-social-bar .social-container {
    justify-content: center;
    padding: 0;
  }
}

/* HEADER STYLING */
header {
  background: #fff5ee;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}



.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: logoTextShine 5s infinite ease-in-out;
}

@keyframes logoTextShine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ffedbf;
  background: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 10px;
  animation: fadeInUp 1.4s ease-out both;
}


 

.hero-book-btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 40px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #59413d;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  animation: bounceBtn 1s infinite ease-in-out; /* ðŸ”¥ bounce added */
}

.hero-book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg, 
    transparent, 
    rgba(255,255,255,0.7), 
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 1.0s infinite;
}

/* shimmer line */
@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* bounce effect */
@keyframes bounceBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* HEADER FIXED TOP */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: none;
  padding: 15px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

header.sticky {
  background: #1c1c1c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1201;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  border-radius: 50%;
}

.book-btn {
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  padding: 10px 20px;
  color: #59413d;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: pulseBtn 2s infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  white-space: nowrap;
  z-index: 1202;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 1;
}


.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1301;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #59413d;
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  /*right: 0;*/
  width: 100%;
  height: 100vh;
  background: rgba(45, 23, 11, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*transform: translateX(100%);*/
  transition: transform 0.5s ease-in-out;
  z-index: 1300;
  opacity: 0;
  padding: 80px 20px 40px;
  gap: 8px;
}

.navbar.active {
  background-color: #fff5ee;
  width: 70%;
  transform: translateX(0);
  opacity: 1;
}

/* ===== MOBILE NAVBAR (LEFT SLIDE) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100vh;

  background: linear-gradient(
    180deg,
    #fff5ee 0%,
    #f6e6d8 100%
  );

  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(.77,0,.18,1);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 14px;
  z-index: 1300;
  box-shadow: 8px 0 40px rgba(0,0,0,0.35);
}

/* ACTIVE */
.navbar.active {
  transform: translateX(0);
}

.navbar a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #59413d;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.35s ease;
}

.navbar a:hover {
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #fff;
  transform: translateX(6px);
}
.menu-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.close-btn {
  left: auto;
}
.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;

  font-size: 2.2rem;
  color: #59413d;
  cursor: pointer;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #fff;
}

.navbar a {
  color: #c59b54;;
  font-size: 1rem;
  font-weight: bold;
  padding: 6px 16px;
  margin: 1px 0;
  border-radius: 5px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #fff;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2rem;
  color: #59413d;
  cursor: pointer;
  z-index: 1401;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 50%;
    flex-direction: column;
    position: relative;
  }

  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .video-container video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }


  .hero-content {
    margin-top: 10px;
    position: relative;
    z-index: 3;
    padding: 70px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 10px 15px;
    margin-bottom: 20px;
  }

  .hero-content .hero-book-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}



@media (min-width: 769px) {
  .menu-toggle, .close-btn {
    display: none;
  }


  .navbar {
    transform: none !important;
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    height: auto;
    opacity: 1 !important;
    padding: 0;
    gap: 0;
  }

  .navbar a {
    font-size: 1rem;
    margin: 0 15px;
    color: #c59b54;
    background: none;
    padding: 0;
  }

  .book-btn {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }
}


/* BRANCHES SECTION */
.branches-section {
  padding: 80px 20px;
  background: #282424;
  color: #fff0d1;
  text-align: center;
}

.section-heading h2 {
  font-family: 'Batangas', sans-serif;
  font-size: 3rem;
  background: linear-gradient(90deg, #f4c86a, #a77d45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: shineText 3s infinite alternate;
}

.section-heading p {
  font-size: 1.2rem;
  color: #ffedbf;
  margin-bottom: 50px;
}

/* Branches Container */
.branches-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
}

/* Branch Card */
.branch-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  max-width: 350px;
}

.branch-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255,198,111,0.5);
}

.branch-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img {
  transform: scale(1.1);
}

.branch-info {
  padding: 20px;
  text-align: center;
}

.branch-info h3 {
  font-family: 'Batangas', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f4c86a;
}

.branch-info p {
  font-size: 1rem;
  color: #fff0d1;
  margin-bottom: 15px;
}

.branch-call-btn {
  display: inline-block;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  color: #59413d;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(244,198,111,0.7);
}

/* Text Shine Animation */
@keyframes shineText {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Responsive */
@media(max-width: 768px) {
  .section-heading h2 {
    font-size: 2.2rem;
  }
  .section-heading p {
    font-size: 1rem;
  }
  .branch-image img {
    height: 180px;
  }
  .branch-info h3 {
    font-size: 1.3rem;
  }
}

/* Coming Soon Card */
.branch-card.coming-soon {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed #f4c86a;
  border-radius: 20px;
  max-width: 350px;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f4c86a;
  font-family: 'Batangas', sans-serif;
}

.branch-card.coming-soon:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(244,198,111,0.4);
}

.branch-card.coming-soon h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.branch-card.coming-soon p {
  font-size: 1.1rem;
}

/* === POPUP OVERLAY === */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(6px);
}

/* Show popup when active */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Popup Box */
.popup-content {
  background: linear-gradient(145deg, #1b1b1b, #262626);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 206, 147, 0.4);
  max-width: 90%;
  width: 380px;
  animation: popFade 0.4s ease;
  position: relative;
}

/* Popup Title & Text */
.popup-content h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: #f5ce85;
  margin-bottom: 0.5rem;
}
.popup-content p {
  font-size: 0.95rem;
  color: #d8d8d8;
  margin-bottom: 1.5rem;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-close:hover {
  color: #f5ce85;
}

/* Branch Option Buttons */
.branch-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.branch-option {
  background: linear-gradient(90deg, #f5ce85, #d4a95f);
  color: #222;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.branch-option:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ffd58c, #e1b263);
}

/* Popup Animation */
@keyframes popFade {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    width: 90%;
    padding: 1.5rem;
  }
  .popup-content h2 {
    font-size: 1.6rem;
  }
}


/* ABOUT FEATURES SECTION */

/* ABOUT SECTION */

.about-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  font-size: 2.8rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingPulse 3s infinite alternate;
}


@keyframes headingPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.highlight-text {
  color: #59413d; /* Different solid color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

@keyframes headingShine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}
.font-text{
  font-family: 'Batangas', sans-serif;
}

.about-dark-section {
  background: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
}

section[id] {
  scroll-margin-top: 100px; /* Adjust to your sticky header height */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-line {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFD700;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  animation: fadeInUp 1.5s ease-out forwards;
}

.highlight-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #f6d365, #fda085);
  box-shadow: 0 0 8px rgba(253, 160, 133, 0.6);
  border-radius: 2px;
  animation: underlineGlow 2.5s infinite alternate;
}

@keyframes underlineGlow {
  0% {
    box-shadow: 0 0 5px rgba(253, 160, 133, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(253, 160, 133, 0.9);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.tagline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFD700;
  text-align: center;
  margin-top: 20px;
}

.tagline span {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
}

.tagline span:nth-child(1) { animation-delay: 0.3s; }
.tagline span:nth-child(2) { animation-delay: 1s; }
.tagline span:nth-child(3) { animation-delay: 1.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(-45deg, #4e2a2a, #3d1f1f, #5c3b3b, #2e1d1d);
  background-size: 400% 400%;
  animation: bgAnimate 10s ease infinite;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes bgAnimate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.about-text {
  flex: 1 1 50%;
  padding-left: 35px;
  padding-right: 20px;
}

.about-text h2 {
  font-family: 'Batangas', sans-serif;
  color: #c59b54;
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-text ul li::before {
  content: 'â€“';
  color: #c59b54;
  position: absolute;
  left: 0;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 20px 20px 20px rgba(255, 215, 0, 0.2);
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
img[loading="lazy"].loaded {
  opacity: 1;
}


/* Flip Animation Styles */
.flip-left-anim {
  animation: flipLeft 2.5s ease forwards;
}

.flip-right-anim {
  animation: flipRight 2.5s ease forwards;
}


@keyframes flipLeft {
  0% {
    transform: perspective(800px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) rotateY(0);
    opacity: 1;
  }
}

@keyframes flipRight {
  0% {
    transform: perspective(800px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) rotateY(0);
    opacity: 1;
  }
}

.animated-line {
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #f4c86a);
  background-size: 200% auto;
  margin: 30px auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(244, 200, 106, 0.7);
  transition: width 1s ease, background-position 1s linear;
}

.animated-line.active {
  width: 80%;
  animation: moveGradient 1s infinite linear;
}

@keyframes moveGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}




/* Responsive */
@media (min-width: 769px) {
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .about-text {
    flex: 1 1 50%;
    padding-right: 40px;
  }

  .about-image {
    flex: 1 1 45%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 100px;
  }
}




/* Features Section */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px 20px;

}

.feature-box {
  width: 300px;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow:  0 10px 20px rgba(255, 198, 111, 0.7);
  animation: glowEffect 3s ease-in-out infinite alternate;
  transition: transform 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.feature-box:nth-child(1) {
  background-image: url('images/img2.jpg');
}

.feature-box:nth-child(2) {
  background-image: url('images/pic2.jpg');
}

.feature-box:nth-child(3) {
  background-image: url('images/pic3.webp');
}

.feature-box:nth-child(4) {
  background-image: url('images/pic4.jpg');
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

.feature-box:hover .feature-overlay {
  background: rgba(0,0,0,0.6);
}

.feature-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-family: 'Batangas', sans-serif;
}

.feature-content p {
  font-size: 1rem;
  margin-top: 10px;
}

@keyframes glowEffect {
  from { box-shadow: 0 0 15px rgba(255, 198, 111, 0.5); }
  to { box-shadow: 0 0 35px rgba(255, 198, 111, 1); }
}

/* Responsive */
@media(max-width: 768px) {
  .features-section {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    left: 5%;
    width: 90%;
    height: 350px;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.2rem;
  }
}

.gradient-highlight {
  background: linear-gradient(90deg, #f6d365, #fda085);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 0 8px rgba(253, 160, 133, 0.4);
}


/* Features Section Animated Bubbles */
.cta-section{
  top: 10px;
}
.features-section {
  position: relative;

  overflow: hidden;
}

/* .features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 200, 106, 0.2);
  animation: bubbleAnim 10s infinite alternate;
  z-index: 0;
}

.features-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.features-section::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -80px;
} */

@keyframes bubbleAnim {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Make Feature Boxes Slightly Shake on Hover */
.feature-box:hover {
  animation: slightShake 0.8s infinite alternate;
}

@keyframes slightShake {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Book Now Button (More Animated and Glowing) */

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;

}

.final-book-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #59413d;
  margin-top: 30px; 
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  animation: glowPulse 1.5s infinite alternate, floatingBtn 3s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.final-book-btn:hover {
  transform: scale(1.1) rotate(2deg);
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(255,198,111,0.5); }
  100% { box-shadow: 0 0 40px rgba(255,198,111,1); }
}

@keyframes floatingBtn {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
 

/* gallw */
.gallery-section {
  padding: 70px 30px;
  background-color: #1b1a1a;
  text-align: center;
}

.gallery-title {
  font-size: 3rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseHeading 3s infinite alternate;
}

.gallery-intro {
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1.2s ease forwards;
}

.gallery-highlight-heading {
  color: #f4c86a;
  font-size: 2rem;
  margin-bottom: 10px;
  animation: glowText 2s infinite alternate;
}

.gallery-subtext {
  color: #d1c7b3;
  font-size: 1rem;
  margin-top: 0;
}

.gallery-flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-block {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  animation: floatUp 1s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

.gallery-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
}

.gallery-block:hover img {
  transform: scale(1.1) rotate(0.5deg);
  filter: brightness(1.2);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowText {
  0% { text-shadow: 0 0 5px #f4c86a; }
  100% { text-shadow: 0 0 15px #f4c86a; }
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {

  .gallery-highlight-heading {
    font-size: 1.3rem;
  }
  .gallery-subtext {
    font-size: 0.95rem;
  }
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  color: #fff0d1;
  min-width: 150px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  animation: borderGlow 3s linear infinite;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-card i {
  font-size: 2rem;
  color: #f4c86a;
  margin-bottom: 10px;
}

.stat-card .counter {
  font-size: 2rem;
  font-weight: bold;
  color: #f4c86a;
}

.stat-card .plus {
  font-size: 1.5rem;
  color: #f4c86a;
}

.stat-card p {
  margin-top: 5px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .portfolio-stats {
    gap: 20px;
  }
  .stat-card {
    flex: 1 1 100px;
  }
}


.services-section {
  padding: 10px 20px;
  background: #1c1c1c;
  text-align: center;
}

.services-title {
  font-size: 3rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseHeading 3s infinite alternate;
}

.services-description {
  color: #ffedbf;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 2s ease-in-out both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  animation: fadeInCard 1s ease-out both;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px rgba(255, 198, 111, 0.4);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  color: #fff8e6;
  padding: 15px 10px;
  font-size: 1.2rem;
  font-family: 'Batangas', sans-serif;
  background: rgba(0,0,0,0.3);
  margin: 0;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Advanced Service Card Flip Style --- */
.service-card {
  perspective: 1000px;
  height: 300px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.service-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.service-card:hover .service-inner {
  transform: rotateY(180deg);
}

.service-front, .service-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.service-front {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.service-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-front h3 {
  color: #fff8e6;
  padding: 15px 10px;
  font-size: 1.2rem;
  font-family: 'Batangas', sans-serif;
  background: rgba(0,0,0,0.3);
  margin: 0;
}

.service-back {
  background: linear-gradient(145deg, #f4c86a, #a77d45);
  color: #1c1c1c;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(255, 198, 111, 0.5);
}

.service-back p {
  font-family: 'Raleway', sans-serif;        /* modern clean */
  font-size: 1rem;
  line-height: 1.4;

}

.testimonial-section {
  background: #282424;
  color: #fff0d1;
  padding: 200px 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 3rem;
  margin-top: -20px;
  margin-bottom: 30px;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-subtext{
  font-family: 'Great Vibes', cursive;
   color: #f4c86a;
  letter-spacing: 1px;   /* spacing between letters */
  word-spacing: 3px; 
  font-size: 1.4rem;
  margin-bottom: 10px;
  animation: glowText 2s infinite alternate;
}

.testimonial-carousel .testimonial-card {
  background: linear-gradient(145deg, #3a2e2e, #1e1b1b);
  border-radius: 20px;
  padding: 30px 25px;
  margin: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.testimonial-carousel .testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-name {
  font-weight: bold;
  color: #ffe6b8;
}

@keyframes glowText {
  0% { text-shadow: 0 0 8px #f4c86a; }
  100% { text-shadow: 0 0 20px #f4c86a; }
}


.testimonial-section {
  background: #282424;
  color: #fff0d1;
  padding: 200px 20px;
  text-align: center;
}


/* --- Optimized Mobile View for Testimonial Section --- */
@media (max-width: 600px) {
  .testimonial-section {
    padding: 80px 15px;
  }

  .testimonial-title {
    font-size: 2.7rem;
    margin-bottom: 20px;
  }

  .testimonial-subtext {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .testimonial-carousel .testimonial-card {
    padding: 20px 15px;
    margin: 10px 0;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .client-name {
    font-size: 1rem;
  }
}


/* === Contact Section Modern Style === */
.contact-section {
  background: linear-gradient(145deg, #111, #1e1e1e);
  color: #fff0d1;
  text-align: center;
  padding: 80px 20px;
}

.contact-title {
  font-size: 2.3rem;
  font-family: 'Batangas', sans-serif;
   background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #ffedbf;
  font-size: 1rem;
  margin-bottom: 25px;
}

.branch-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.branch-btn {
  background: transparent;
  border: 2px solid #e8c48f;
  color: #e8c48f;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.branch-btn.active,
.branch-btn:hover {
  background: #e8c48f;
  color: #111;
}

.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(100,70,30,0.15));
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.contact-card.hidden {
  display: none;
}

.contact-card h3 {
  color: #e8c48f;
  margin-bottom: 15px;
}

.contact-card p {
  margin: 10px 0;
  font-size: 1rem;
  color: #ccc;
}

.contact-card i {
  color: #e8c48f;
  margin-right: 8px;
}

.contact-card a {
  color: #e8c48f;
  text-decoration: none;
}

.contact-card iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
  margin-top: 15px;
}

.contact-footer {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-card {
    width: 100%;
  }
  .branch-toggle {
    flex-direction: column;
  }
}

.footer { 
  color: #fff;                  
  text-align: center;          
  padding: 15px 0;              
  font-size: 14px;              
  margin-top: 20px;
}

.footer p {
  margin: 0;
}

@media (min-width: 769px) {
  .navbar a:hover {
    padding: 6px 12px;        /* space around text */
    border-radius: 8px;       /* smooth corners */
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.video-transcript-inner::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f4c86a, #a77d45);
  margin-bottom: 15px;
  border-radius: 5px;
}


.video-transcript {
  background: #1c1c1c;
  padding: 50px 20px;
}

.video-transcript-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f4c86a;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-transcript h2 {
  font-family: 'Batangas', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-transcript p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff0d1;
}

@media (max-width: 768px) {
  .video-transcript {
    padding: 35px 15px;
  }

  .video-transcript-inner {
    padding: 20px;
  }

  .video-transcript h2 {
    font-size: 1.4rem;
  }

  .video-transcript p {
    font-size: 0.95rem;
  }
}

/* Video Caption Styling */
video::cue {
  background: rgba(0, 0, 0, 0.65);
  color: #f4c86a;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 8px;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}


/* ==============================
   THENI INNER PAGE STYLES
   ============================== */

/* HERO SECTION */
.theni-hero {
  min-height: 80vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.75)
    ),
    url("/images/theni.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.theni-hero .hero-content {
  max-width: 900px;
}

.theni-hero h1 {
  font-family: 'Batangas', serif;
  font-size: 3rem;
  color: #f4c86a;
  margin-bottom: 15px;
}

.theni-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
}

/* HERO CTA */
/*.hero-book-btn {*/
/*  display: inline-block;*/
/*  padding: 14px 34px;*/
/*  border-radius: 40px;*/
/*  background: linear-gradient(135deg, #f4c86a, #a77d45);*/
/*  color: #111;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.hero-book-btn:hover {*/
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 10px 25px rgba(244, 200, 106, 0.4);*/
/*}*/

/* ==============================
   CONTENT SECTIONS
   ============================== */

.content-section,
.services-section {
  padding: 70px 20px;
  background: #111;
  color: #f2f2f2;
}

.content-section:nth-child(even),
.services-section:nth-child(even) {
  background: #161616;
}

.content-section h2,
.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #f4c86a, #a77d45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-section h3,
.service-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #f4c86a;
}

.content-section p,
.service-block p {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}

/* ==============================
   SERVICES BLOCK
   ============================== */

.service-block {
  max-width: 1000px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-left: 4px solid #f4c86a;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* CTA links inside content */
.cta-link {
  display: inline-block;
  margin-top: 10px;
  color: #f4c86a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-link:hover {
  color: #fff;
}

/* ==============================
   FINAL CTA SECTION
   ============================== */

.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1c1c1c, #0e0e0e);
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f4c86a, #a77d45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.final-book-btn {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  border-radius: 50px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(244, 200, 106, 0.45);
}

/* ==============================
   CONTACT SECTION
   ============================== */

h2:last-of-type {
  text-align: center;
  margin-top: 20px;
  color: #f4c86a;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 768px) {
  .theni-hero h1 {
    font-size: 2.2rem;
  }

  .content-section h2,
  .services-section h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .service-block {
    padding: 22px;
  }
}

/* ================================
   BOOK NOW – RESPONSIVE BEHAVIOUR
   ================================ */

/* Desktop default (no change needed) */
/* book-btn already styled correctly */


/* MOBILE ONLY */

/* DESKTOP – hide Book Now completely */
@media (min-width: 769px) {
  .navbar .book-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {

  /* Mobile menu spacing */
  .navbar {
    padding-bottom: 20px;
  }

  /* Premium CTA inside menu */
  .navbar.active .book-btn {
    display: inline-flex;

    position: static;
    transform: none;

    margin-top: 25px;   /* space from Contact Us */
    margin-bottom: 10px;

    align-self: center;
    justify-content: center;

    padding: 14px 34px;
    border-radius: 999px;

    background: rgba(230,184,106,0.18);
    border: 1px solid rgba(230,184,106,0.55);

    color: #c59b54; !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px
    text-decoration: none;

    backdrop-filter: blur(6px);

    transition: all 0.35s ease;
  }

  /* subtle premium hover */
  .navbar.active .book-btn:hover {
    background: rgba(230,184,106,0.32);
    transform: translateY(-2px);
  }
}



/* ===============================
   LUXURY EDITORIAL HERO
================================ */

.lux-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  /* background: #000; */
  overflow: hidden;
}

/* Media */
.lux-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lux-hero-media video,
.lux-hero-media img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.lux-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.45)
  ); */
  z-index: 2;
}

/* Content */
.lux-hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 0 60px;
  color: #fff;
}

/* Eyebrow */
.lux-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a77d45;
}

/* Heading */
.lux-hero-title {
  font-size: 3rem;
  font-family: 'Batangas', serif;
  color: #a77d45;
  margin-bottom: 18px;
  line-height: 1.15;

}



/* Sub */
.lux-hero-sub {
  font-size: 1.05rem;
  color: #59413d;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Lead bar */
.lux-lead-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lux-lead-item,.lux-lead-item-call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgb(135 87 6 / 79%);
  color: #59413d;
  text-decoration: none;
  transition: all .35s ease;
}

.lux-lead-item:hover,.lux-lead-item-call:hover {
  background: rgba(230,184,106,0.15);
  transform: translateY(-3px);
}

.lux-lead-item .icon,.lux-lead-item-call .icon {
  font-size: 1.4rem;
}

.lux-lead-item small,.lux-lead-item-call small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
}

.lux-lead-item strong,.lux-lead-item-call strong {
  font-size: 0.95rem;
  color: #a77d45;
}

/* MOBILE */
@media (max-width: 768px) {
  .lux-hero {
    min-height: 100vh;
  }

  .lux-hero-content {
    padding: 80px 24px;
  }

  .lux-hero-title {
    font-size: 2rem;
  }

  .lux-lead-bar {
    flex-direction: column;
  }
}


/* WhatsApp Icon – Premium */
.wa-icon {
  color: #a77d45;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional subtle glow on hover */
.lux-lead-item:hover .wa-icon {
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6));
}

.call-icon {
  color: #a77d45;
  align-items: center;
  justify-content: center;
}

/* subtle hover glow */
.lux-lead-item-call:hover .call-icon {
  filter: drop-shadow(0 0 6px rgba(230, 184, 106, 0.6));
}


/* ===============================
   WHATSAPP BRANCH POPUP
================================ */

.wa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.wa-popup.active {
  display: flex;
}

.wa-popup-box {
  position: relative;
  width: 92%;
  max-width: 420px;
  padding: 36px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(230,184,106,0.18), transparent 45%),
    #0b0a09;
  border: 1px solid rgba(230,184,106,0.4);
  text-align: center;
  color: #fff;
}

.wa-popup-box h3 {
  color: #f0c77a;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.wa-popup-box p {
  font-size: 0.9rem;
  color: #d6d6d6;
  margin-bottom: 28px;
}

/* Close */
.wa-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #e6b86a;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Branch cards */
.wa-branch-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-branch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230,184,106,0.35);
  text-decoration: none;
  color: #fff;
  transition: all .3s ease;
}

.wa-branch:hover {
  background: rgba(230,184,106,0.15);
  transform: translateY(-2px);
}

.wa-branch .city {
  font-weight: 600;
  color: #f0c77a;
}

.wa-branch .phone {
  font-size: 0.85rem;
  color: #dcdcdc;
}

.typewriter {
  position: relative;
  display: block;
  max-width: 100%;
  line-height: 1.2;
  color: #a77d45;
}

/* Actual typing text */
.typewriter-text {
  display: inline;
  border-right: 2px solid rgba(230,184,106,0.7);
  padding-right: 6px;
  animation: blinkCursor 0.9s step-end infinite;
}

/* Ghost text – reserves space */
.typewriter-ghost {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.typewriter-text,
.typewriter-ghost {
  font-family: 'Batangas', serif;
}

/* Cursor blink */
@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .typewriter-text {
    border-right-width: 1.5px;
  }
}

@media (max-width: 768px) {

  .lux-lead-bar {
    align-items: center;
  }

  .lux-lead-item,
  .lux-lead-item-call {
    width: 100%;
    max-width: 200px;
    padding: 14px 16px;
  }

}

