/* =========================================
   NAVRAJ DHOLIS — style.css
   Author: Claude for Navraj Dholis
   ========================================= */

/* ---- Google Fonts ---- */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ---- CSS Variables ---- */
:root {
  --primary:       #B11217;
  --primary-dark:  #8E0E12;
  --primary-light: #F8EAEA;
  --primary-glow:  rgba(177,18,23,0.18);

  --background:    #F9F7F4;
  --white:         #FFFFFF;
  --border:        #E5E5E5;

  --accent:        #C89B3C;
  --accent-dark:   #9A742A;
  --accent-light:  #F2E3C6;
  --accent-glow:   rgba(200,155,60,0.22);

  --text-primary:  #1A1A1A;
  --text-secondary:#555555;
  --text-muted:    #888888;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 32px rgba(177,18,23,0.25);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);

  --font-display: 'Lora', Georgia, serif;
  --font-accent:  'Poppins', Impact, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
}

/* ---- Global Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.section-pad      { padding: 90px 0; }
.section-pad-sm   { padding: 60px 0; }
.text-accent      { color: var(--accent); }
.text-primary-c   { color: var(--primary); }
.bg-cream         { background: var(--background); }
.bg-red           { background: var(--primary); }
.bg-dark          { background: #111111; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-heading span {
  color: var(--primary);
  font-style: italic;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  margin: 18px 0 28px;
}

/* ---- Scroll 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(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   NAVBAR
   ============================ */
.navbar-main {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  /* padding: 12px 0; */
  transition: box-shadow var(--transition), background var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-main.scrolled {
  box-shadow: 0 4px 24px rgba(177,18,23,0.12);
  background: rgba(255,255,255,0.99);
}

.navbar-brand img {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-left: 8px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link-main {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-primary) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link-main::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition), left var(--transition);
}

.nav-link-main:hover::after,
.nav-link-main.active::after {
  width: 60%; left: 20%;
}

.nav-link-main:hover { color: var(--primary) !important; }

.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  border: none;
}
.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 2px solid var(--primary) !important;
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  filter: invert(13%) sepia(94%) saturate(4000%) hue-rotate(344deg) brightness(80%);
}

/* Quick contact bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 0;
  letter-spacing: 0.3px;
}
.top-bar a {
  color: var(--accent-light);
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--white); }
.top-bar .sep { margin: 0 10px; opacity: 0.4; }


/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/img.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-section:hover .hero-bg { transform: scale(1.0); }

/* Dual-tone overlay — left red, right transparent-dark */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(142,14,18,0.90) 0%,
    rgba(142,14,18,0.78) 35%,
    rgba(26,26,26,0.55) 60%,
    rgba(26,26,26,0.20) 100%
  );
  z-index: 1;
}

/* Decorative pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,155,60,0.08) 1px, transparent 0);
  background-size: 30px 30px;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 0 80px;
}

/* Left content */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
  font-style: italic;
  display: inline-block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-image-wrap img {
  border: 8px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

.hero-image-wrap:hover img {
  transform: translateY(-10px);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  filter: blur(20px);
}

/* Hero floating form card */
.hero-form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  width: 100%;
  color: var(--text-primary);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary-c {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 13px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}
.btn-primary-c:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-c {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.btn-outline-c:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent-c {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}
.btn-accent-c:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 28px var(--accent-glow);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
}
.btn-whatsapp:hover {
  background: #1fb258;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  color: var(--white);
}

.btn-call {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
}
.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
  color: var(--white);
}

/* Floating action buttons */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  text-decoration: none;
  position: relative;
}

.fab-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: #222;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.fab-btn:hover::before { opacity: 1; }

.fab-btn.fab-wa  { background: #25D366; color: #fff; }
.fab-btn.fab-call{ background: var(--primary); color: #fff; }
.fab-btn:hover   { transform: scale(1.12); }

/* Mobile Bottom Action Bar — Premium UI */
.mobile-action-bar {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 64px;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px; /* Pill shape */
  padding: 0 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-action-item {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  gap: 10px;
  transition: all var(--transition);
}

.mobile-action-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-action-item.call .mobile-action-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.mobile-action-item.whatsapp .mobile-action-icon-wrap {
  background: #25D366;
  color: var(--white);
}

.mobile-action-item:active {
  transform: scale(0.95);
  opacity: 0.8;
}

.mobile-action-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* Adjusted mobile spacing for pill bar and improved navbar menu */
@media (max-width: 991.98px) {
  .fab-group { display: none; }
  .scroll-top-btn { bottom: 90px; }
  body { padding-bottom: 80px; }
  
  .navbar-collapse {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nav-link-main {
    padding: 10px 15px !important;
    font-size: 0.95rem;
  }
  .btn-nav-cta {
    display: inline-block;
    margin-top: 10px;
    margin-left: 15px;
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-img-main { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-img-accent {
  position: absolute;
  top: 20px; right: -20px;
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow-sm); }

.about-feature-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.about-feature-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}


/* ============================
   SERVICES SECTION
   ============================ */
.services-section {
  background: var(--background);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img { transform: scale(1.08); }

.service-icon-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-body {
  padding: 22px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.service-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Hidden service cards */
.service-card-extra { display: none; }
.service-card-extra.visible { display: flex; flex-direction: column; }

#showMoreBtn {
  transition: all var(--transition);
}
#showMoreBtn.loading {
  opacity: 0.7;
  pointer-events: none;
}


/* ============================
   CTA STRIP
   ============================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #5a0508 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,155,60,0.10) 1px, transparent 0);
  background-size: 24px 24px;
}

.cta-strip::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(200,155,60,0.12);
  border-radius: 50%;
}

.cta-strip-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-title em {
  color: var(--accent);
  font-style: italic;
}

.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item.tall .gallery-img { min-height: 420px; }
.gallery-item.wide .gallery-img { min-height: 240px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(142,14,18,0.85) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img    { transform: scale(1.06); }

.gallery-overlay-icon {
  color: var(--white);
  font-size: 1.5rem;
  background: rgba(255,255,255,0.2);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }


/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--primary-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-event {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Carousel nav dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}


/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
  background: var(--white);
}

.accordion-item-custom {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.accordion-item-custom:hover { box-shadow: var(--shadow-md); }

.accordion-button-custom {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 22px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}

.accordion-button-custom:hover,
.accordion-button-custom[aria-expanded="true"] {
  background: var(--primary-light);
  color: var(--primary);
}

.accordion-button-custom .acc-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--background);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--primary);
}

.accordion-button-custom[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.accordion-body-custom {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  display: none;
}
.accordion-body-custom.open { display: block; }


/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
  background: var(--background);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-info-side {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-side::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(200,155,60,0.15);
  border-radius: 50%;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-info-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

.contact-info-value {
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.contact-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.contact-form-side {
  padding: 48px 40px;
  background: var(--white);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.success-alert {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-top: 16px;
  display: none;
}


/* ============================
   FOOTER
   ============================ */
.footer-main {
  background: #111111;
  color: var(--white);
  padding-top: 70px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,155,60,0.25);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
  margin-right: 6px;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

.footer-copy span { color: var(--accent); }

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top-btn {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 990;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top-btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ============================
   MAP EMBED
   ============================ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }


/* ============================
   RESPONSIVE — MOBILE FIRST
   ============================ */

/* xs: < 576px */
@media (max-width: 575.98px) {
  .section-pad { padding: 60px 0; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats  { gap: 20px; }
  .hero-content-wrap { padding: 80px 0 60px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall  { grid-row: auto; }
  .gallery-item.wide  { grid-column: auto; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-img-main { height: 280px; }

  .contact-form-side { padding: 28px 20px; }
  .contact-info-side { padding: 32px 22px; }

  .hero-form-card { padding: 24px 18px; }

  .testimonial-card { padding: 24px 20px; }
}

/* sm: 576-767 */
@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall  { grid-row: auto; }
  .gallery-item.wide  { grid-column: auto; }

  .top-bar .d-sm-none { display: none; }

  .cta-strip { text-align: center; }
  .cta-strip .ms-auto { margin: 0 auto !important; margin-top: 20px !important; }

  .hero-subtitle { max-width: 100%; }
}

/* md: 768-991 */
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* lg: 992+ */
@media (min-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================
   LOADING ANIMATION
   ============================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-dhol {
  font-size: 3rem;
  animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-12px) scale(1.1); }
}

.loader-bar {
  width: 160px; height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: fill 1.2s ease-in-out forwards;
}

@keyframes fill {
  from { width: 0%; }
  to   { width: 100%; }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  font-style: italic;
}

/* ============================
   PULSE ANIMATION (HERO FORM)
   ============================ */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 10px transparent; }
}

.btn-primary-c.pulse { animation: pulse-gold 2.5s infinite; }

/* ============================
   SECTION TRANSITION — BG WAVES
   ============================ */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}