/* ============================================================
   BANGALORE MEHANDI ARTIST — Main Stylesheet
   Traditional Indian Bridal Mehendi | Bangalore
   ============================================================ */

/* === GOOGLE FONTS loaded in HTML === */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
  --maroon: #8b1a1a;
  --dark-maroon: #5c1010;
  --light-maroon: #a52020;
  --gold: #c9a227;
  --light-gold: #e8c547;
  --pale-gold: #f5e6a3;
  --green: #4a6741;
  --dark-green: #2d4a28;
  --light-green: #6b8f62;
  --cream: #fff8e7;
  --light-cream: #fffdf5;
  --warm-cream: #faf0dc;
  --dark-cream: #f5e6c8;
  --brown: #2c1810;
  --text-dark: #1a0a00;
  --text-med: #4a2c1a;
  --text-light: #8b6b4c;
  --white: #ffffff;

  --shadow: 0 6px 30px rgba(139, 26, 26, 0.15);
  --shadow-gold: 0 6px 25px rgba(201, 162, 39, 0.3);
  --border-gold: 1px solid rgba(201, 162, 39, 0.3);
  --transition: all 0.3s ease;

  --font-head: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
  --section-pad: 90px 0;
  --max-w: 1200px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: var(--section-pad);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
p {
  font-size: 0.97rem;
  color: var(--text-med);
  margin-bottom: 1rem;
}

/* ============================================================
   4. SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .sub-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--maroon);
  margin-bottom: 15px;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.title-ornament::before,
.title-ornament::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.title-ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.title-ornament span {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--maroon);
  color: var(--gold);
  border: 2px solid var(--maroon);
}
.btn-primary:hover {
  background: var(--dark-maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(201, 162, 39, 0.7);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-secondary:hover {
  background: var(--maroon);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}
.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}

/* ============================================================
   6. DECORATIVE ELEMENTS
   ============================================================ */
.gold-line {
  width: 55px;
  height: 2px;
  background: var(--gold);
}
.gold-line.center {
  margin: 15px auto;
}
.gold-line.left {
  margin: 15px 0;
}

.corner-deco {
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: rgba(201, 162, 39, 0.25);
  border-style: solid;
}
.corner-deco.tl {
  top: 15px;
  left: 15px;
  border-width: 2px 0 0 2px;
}
.corner-deco.tr {
  top: 15px;
  right: 15px;
  border-width: 2px 2px 0 0;
}
.corner-deco.bl {
  bottom: 15px;
  left: 15px;
  border-width: 0 0 2px 2px;
}
.corner-deco.br {
  bottom: 15px;
  right: 15px;
  border-width: 0 2px 2px 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brown), var(--maroon));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='24' fill='none' stroke='%23C9A227' stroke-width='0.3' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='14' fill='none' stroke='%23C9A227' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 15px;
}
.cta-banner p {
  color: rgba(255, 248, 231, 0.8);
  max-width: 550px;
  margin: 0 auto 35px;
  font-size: 1rem;
}
.cta-banner-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(44, 24, 16, 0.97);
  padding: 11px 0;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  overflow: hidden;
  object-fit: cover;
}
.brand-text .brand-main {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
.brand-text .brand-sub {
  font-size: 0.58rem;
  color: rgba(201, 162, 39, 0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links .btn {
  padding: 9px 20px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav — visibility/opacity transition (works with CSS animations) */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(44, 24, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open a:nth-child(2)  { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(4)  { transition-delay: 0.14s; }
.mobile-nav.open a:nth-child(6)  { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(8)  { transition-delay: 0.26s; }
.mobile-nav.open a:nth-child(10) { transition-delay: 0.32s; }
.mobile-nav.open a:last-of-type  { transition-delay: 0.38s; }
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-nav-close:hover {
  background: var(--gold);
  color: var(--brown);
}
.mobile-nav-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 162, 39, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.mobile-nav.open .mobile-nav-divider {
  opacity: 1;
}

/* ============================================================
   8. HERO SECTION (HOME)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(44, 24, 16, 0.93) 0%,
      rgba(92, 16, 16, 0.88) 45%,
      rgba(45, 74, 40, 0.85) 100%
    ),
    url("../assets/bridal-mehandi/bridal-mehandi-design-bangalore-7.jpeg") center/cover no-repeat;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='0.35' opacity='0.12'%3E%3Ccircle cx='40' cy='40' r='32'/%3E%3Ccircle cx='40' cy='40' r='22'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cpath d='M8 40 L40 8 L72 40 L40 72 Z'/%3E%3Cpath d='M20 40 L40 20 L60 40 L40 60 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.8s ease infinite;
}
.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light-gold);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 22px;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(245, 230, 200, 0.9);
  max-width: 520px;
  margin-bottom: 42px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 230, 200, 0.55);
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: mouseWheel 1.6s ease infinite;
}
@keyframes mouseWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  z-index: 2;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 24px 15px;
  border-right: 1px solid rgba(201, 162, 39, 0.12);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.3rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-cream);
  opacity: 0.75;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   9. SERVICES SECTION (HOME OVERVIEW)
   ============================================================ */
.services-overview {
  background: var(--light-cream);
  position: relative;
}
.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: var(--white);
  border: var(--border-gold);
  border-radius: 3px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  z-index: 1;
}
.svc-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 45px rgba(139, 26, 26, 0.14);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card-img {
  height: 210px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.09);
}
.svc-card-body {
  padding: 24px 22px;
}
.svc-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}
.svc-card-body h3 {
  color: var(--maroon);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.65;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.svc-link:hover {
  gap: 10px;
  color: var(--maroon);
}

/* ============================================================
   10. ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--cream);
  overflow: hidden;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap .main-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(201, 162, 39, 0.28);
  border-radius: 3px;
  z-index: -1;
}
.exp-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--maroon);
  padding: 24px 22px;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow);
}
.exp-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.exp-lbl {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-cream);
}

.about-preview-content .sect-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.about-preview-content h2 {
  color: var(--maroon);
  margin-bottom: 18px;
}
.about-preview-content .lead {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 18px;
  font-weight: 500;
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.feat-item i {
  color: var(--gold);
  font-size: 0.85rem;
}
.feat-item span {
  font-size: 0.88rem;
  color: var(--text-med);
}

/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(
    135deg,
    var(--brown) 0%,
    var(--maroon) 55%,
    var(--dark-green) 100%
  );
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='28' fill='none' stroke='%23C9A227' stroke-width='0.3' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 70px 70px;
}
.testimonials .section-title h2,
.testimonials .section-title .sub-label {
  color: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.18);
  padding: 32px 28px;
  border-radius: 3px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}
.stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--dark-cream);
  line-height: 1.85;
  margin-bottom: 26px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 700;
  overflow: hidden;
}
.author-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  display: block;
}
.author-event {
  font-size: 0.72rem;
  color: rgba(245, 230, 200, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   12. LOCATIONS
   ============================================================ */
.locations {
  background: var(--warm-cream);
  text-align: center;
  padding: 70px 0;
}
.loc-title {
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
  display: block;
}
.loc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 9px 19px;
  border-radius: 30px;
  font-size: 0.88rem;
  color: var(--text-med);
  transition: var(--transition);
}
.loc-tag i {
  color: var(--maroon);
  font-size: 0.78rem;
}
.loc-tag:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  transform: translateY(-2px);
}
.loc-tag:hover i {
  color: var(--gold);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 75px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--maroon),
    var(--gold),
    var(--green)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  color: rgba(255, 248, 231, 0.65);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 14px 0 24px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 231, 0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}
.soc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
  transform: translateY(-3px);
}

.footer-h {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: rgba(255, 248, 231, 0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: "›";
  color: var(--gold);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-row i {
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-row span,
.footer-contact-row a {
  color: rgba(255, 248, 231, 0.65);
  font-size: 0.88rem;
}
.footer-contact-row a:hover {
  color: var(--gold);
}

.footer-seo {
  background: rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  border-radius: 3px;
  border-left: 3px solid rgba(201, 162, 39, 0.5);
  margin-top: 25px;
}
.footer-seo p {
  font-size: 0.78rem;
  color: rgba(255, 248, 231, 0.42);
  margin: 0;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 248, 231, 0.42);
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
}
.footer-bottom a:hover {
  color: var(--light-gold);
}

/* ============================================================
   14. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--brown) 0%,
    var(--maroon) 60%,
    var(--dark-green) 100%
  );
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='0.35' opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='32'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3Cpath d='M8 40 L40 8 L72 40 L40 72 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero-inner h1 {
  color: var(--cream);
  margin-bottom: 14px;
}
.page-hero-inner h1 em {
  color: var(--gold);
  font-style: italic;
}
.page-hero-inner p {
  color: rgba(245, 230, 200, 0.88);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 22px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 248, 231, 0.55);
  margin-top: 18px;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb a:hover {
  color: var(--light-gold);
}
.breadcrumb .sep {
  color: rgba(201, 162, 39, 0.35);
}

/* ============================================================
   15. SERVICES DETAIL PAGE
   ============================================================ */
.svc-detail-sect {
  padding: 85px 0;
}
.svc-detail-sect:nth-child(even) {
  background: var(--warm-cream);
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.svc-detail-grid.rev {
  direction: rtl;
}
.svc-detail-grid.rev > * {
  direction: ltr;
}
.svc-detail-content .svc-num {
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  display: block;
  margin-bottom: -38px;
}
.svc-detail-content h2 {
  color: var(--maroon);
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.svc-detail-content p {
  font-size: 0.94rem;
}
.svc-feat-list {
  margin: 20px 0;
}
.svc-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 11px;
  font-size: 0.9rem;
  color: var(--text-med);
}
.svc-feat-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.svc-detail-img-wrap {
  position: relative;
}
.svc-main-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.svc-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 7px;
}
.svc-mini-grid img {
  height: 95px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s;
  cursor: zoom-in;
}
.svc-mini-grid img:hover {
  transform: scale(1.04);
}

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--light-cream);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-imgs {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.about-img-sec {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 195px;
  height: 195px;
  object-fit: cover;
  border-radius: 3px;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-content .sub-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.about-content h2 {
  color: var(--maroon);
  margin-bottom: 20px;
}
.about-content .lead {
  font-family: var(--font-head);
  font-size: 1.06rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 18px;
}

.values-list {
  margin: 32px 0;
}
.val-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.val-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.val-content h4 {
  color: var(--maroon);
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.val-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* Experience Stats */
.exp-stats {
  background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
  padding: 65px 0;
}
.exp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.exp-stat-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.exp-stat-lbl {
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark-cream);
  opacity: 0.78;
}

/* Why Choose Us */
.why-choose {
  background: var(--cream);
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.choose-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: var(--border-gold);
  border-radius: 3px;
  transition: var(--transition);
}
.choose-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}
.choose-ico {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--cream), var(--dark-cream));
  border: 2px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--maroon);
}
.choose-card h4 {
  color: var(--maroon);
  margin-bottom: 10px;
}
.choose-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-sect {
  background: var(--light-cream);
}
.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.fil-btn {
  padding: 9px 24px;
  border: 2px solid rgba(139, 26, 26, 0.2);
  background: transparent;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-med);
  transition: var(--transition);
}
.fil-btn:hover,
.fil-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 1;
}
.gal-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gal-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gal-item:hover img {
  transform: scale(1.09);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 16, 16, 0.88),
    rgba(44, 24, 16, 0.92)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay i {
  font-size: 1.4rem;
  color: var(--gold);
}
.gal-overlay span {
  font-family: var(--font-head);
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-cream);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lb-content {
  position: relative;
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.18);
}
.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-close:hover {
  background: var(--gold);
  color: var(--brown);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.38);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-nav:hover {
  background: var(--gold);
  color: var(--brown);
}
.lb-nav.prev {
  left: -58px;
}
.lb-nav.next {
  right: -58px;
}
.lb-caption {
  margin-top: 14px;
  color: var(--dark-cream);
  font-family: var(--font-head);
  font-size: 0.95rem;
  opacity: 0.78;
  text-align: center;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-wrap {
  background: var(--light-cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-box h3 {
  color: var(--maroon);
  margin-bottom: 8px;
}
.contact-form-box > p {
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-med);
  margin-bottom: 7px;
}
.form-group label .req {
  color: var(--maroon);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  background: var(--white);
  border: 1.5px solid rgba(139, 26, 26, 0.14);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.form-group textarea {
  min-height: 115px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-success {
  display: none;
  background: rgba(74, 103, 65, 0.1);
  border: 1px solid var(--green);
  padding: 14px 18px;
  border-radius: 3px;
  color: var(--dark-green);
  font-size: 0.9rem;
  margin-top: 14px;
}

.contact-info-box {
  position: sticky;
  top: 100px;
}
.contact-card {
  background: var(--white);
  border: var(--border-gold);
  padding: 32px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.contact-card h4 {
  color: var(--maroon);
  margin-bottom: 20px;
  font-size: 1.15rem;
}
.con-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.con-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.con-detail-txt label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.con-detail-txt a,
.con-detail-txt span {
  font-size: 0.92rem;
  color: var(--text-dark);
}
.con-detail-txt a:hover {
  color: var(--maroon);
}

.hours-list {
  margin-top: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  font-size: 0.88rem;
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list li span:first-child {
  color: var(--text-light);
}
.hours-list li span:last-child {
  color: var(--maroon);
  font-weight: 500;
}

.map-wrap {
  border: var(--border-gold);
  border-radius: 3px;
  overflow: hidden;
  height: 270px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   19. WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-btn {
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: waPulse 2.2s infinite;
}
.wa-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}
.wa-tooltip {
  background: var(--brown);
  color: var(--cream);
  padding: 7px 13px;
  border-radius: 3px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.72);
  }
}

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-detail-grid.rev {
    direction: ltr;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .exp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gal-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  /* Compress nav at tablet widths before hamburger kicks in */
  .nav-links {
    gap: 20px;
  }
  .brand-text .brand-main {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 55px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .exp-badge {
    bottom: 10px;
    right: 10px;
  }
  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-feats {
    grid-template-columns: 1fr;
  }
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-btns {
    flex-direction: column;
    align-items: center;
  }
  .lb-nav.prev {
    left: 5px;
  }
  .lb-nav.next {
    right: 5px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats .container {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 18px 10px;
  }
  .stat-num {
    font-size: 1.9rem;
  }
  .exp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp-stat-num {
    font-size: 2.6rem;
  }
  .brand-text .brand-main {
    font-size: 1rem;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
  }
  .navbar {
    padding: 12px 0;
  }
}

/* ============================================================
   21. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 90px;
  height: 90px;
  animation: preloaderSpin 2.5s linear infinite;
}
@keyframes preloaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.preloader-ring {
  width: 70px;
  height: 70px;
  border: 2.5px solid rgba(201, 162, 39, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
  position: absolute;
}
.preloader-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  animation: preloaderPulse 1.8s ease infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ============================================================
   22. SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--maroon), var(--gold), var(--light-gold));
  z-index: 10001;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   23. NAV OVERLAY & BODY LOCK
   ============================================================ */
#navOverlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#navOverlay.active {
  opacity: 1;
  visibility: visible;
}
body.no-scroll {
  overflow: hidden;
}

/* ============================================================
   24. NAVBAR AUTO-HIDE
   ============================================================ */
.navbar {
  transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.nav-hidden {
  transform: translateY(-100%);
}

/* ============================================================
   25. BRAND ICON — SVG LOGO
   ============================================================ */
.brand-icon img,
.brand-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.brand-icon {
  background: transparent;
  border: none;
  position: relative;
  overflow: visible;
}
.brand-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  animation: brandRing 3s ease infinite;
}
@keyframes brandRing {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.08); opacity: 1;   }
}

/* ============================================================
   26. CUSTOM CURSOR (desktop only)
   ============================================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .fil-btn, .hamburger { cursor: none; }

  #cursor {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201, 162, 39, 0.7);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    mix-blend-mode: difference;
  }
  #cursor.cursor-grow {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
  }
  #cursor.cursor-click {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 39, 0.25);
  }
  #cursorDot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
  }
}

/* ============================================================
   27. BUTTON RIPPLE
   ============================================================ */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  transform: scale(0);
  animation: rippleAnim 0.65s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: scale(40);
    opacity: 0;
  }
}

/* ============================================================
   28. HERO PARTICLES
   ============================================================ */
#heroParticles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  bottom: 0;
  color: var(--gold);
  pointer-events: none;
  animation: floatParticle linear forwards;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ============================================================
   29. GSAP ANIMATION INIT STATE
   ============================================================ */
[data-gsap] {
  opacity: 0;
}

/* ============================================================
   30. CARD 3D TILT
   ============================================================ */
.svc-card,
.choose-card,
.testi-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================================
   31. IMAGE BLUR-UP LAZY LOAD
   ============================================================ */
img.lazy {
  filter: blur(12px);
  transition: filter 0.6s ease;
}
img.lazy.loaded {
  filter: blur(0);
}

/* ============================================================
   32. CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--brown);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--maroon), var(--gold));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================================
   33. SECTION REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   34. GALLERY HOVER ENHANCED
   ============================================================ */
.gal-item {
  transform: translateZ(0);
}
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: border-color 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.gal-item:hover::after {
  border-color: rgba(201, 162, 39, 0.5);
}

/* ============================================================
   35. MOBILE NAV GOLD ORNAMENT
   ============================================================ */
.mobile-nav::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mobile-nav::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 162, 39, 0.07);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
