/* ========================================
   Ma Siddheshwari Jewellers - Custom Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Root Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --maroon: #7B1C2E;
  --maroon-dark: #5A1020;
  --ivory: #FAF7F0;
  --ivory-dark: #F2EDE3;
  --charcoal: #1E1E1E;
  --charcoal-mid: #3A3A3A;
  --charcoal-light: #6B6B6B;
  --white: #FFFFFF;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- Typography ---- */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h4, h5, h6 { font-family: 'Inter', sans-serif; }

/* ---- Gold Gradient ---- */
.gold-gradient {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 40%, #C9A84C 65%, #A07830 100%);
}
.gold-text {
  background: linear-gradient(135deg, #C9A84C, #E8C97A, #A07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.maroon-gradient {
  background: linear-gradient(135deg, #7B1C2E 0%, #A0293F 50%, #5A1020 100%);
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1rem 0;
}
#navbar.scrolled {
  background: rgba(30,20,10,0.97) !important;
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
#navbar.scrolled .nav-logo { color: var(--gold-light); }
.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-light); }

/* ---- Hamburger ---- */
.hamburger { cursor: pointer; }
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { margin: 5px 0; width: 20px; }
.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-menu {
  display: none;
  background: rgba(20,10,5,0.97);
  backdrop-filter: blur(16px);
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s;
}
#mobile-menu a:hover { color: var(--gold-light); padding-left: 2rem; }

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C9A84C, #E8C97A, #A07830);
  color: #1E1E1E;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8C97A, #C9A84C);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: #1E1E1E;
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.875rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.4s ease; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ---- Section Titles ---- */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: inline-block;
  width: 2rem; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2; color: var(--charcoal);
}
.section-title.light { color: var(--white); }
.gold-divider {
  width: 4rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero-bg.zooming { transform: scale(1.08); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,10,5,0.82) 0%,
    rgba(20,8,4,0.65) 50%,
    rgba(123,28,46,0.4) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Cards ---- */
.jewel-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}
.jewel-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.45s ease;
}
.jewel-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-color: rgba(201,168,76,0.4); }
.jewel-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 72px; height: 72px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  transition: all 0.4s ease;
  position: relative;
}
.service-icon-wrap::after {
  content: ''; position: absolute; inset: -4px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
}
.jewel-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border-color: var(--gold);
  transform: rotate(5deg);
}

/* ---- Trust Badges ---- */
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.trust-badge:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-4px); }

/* ---- Gallery ---- */
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: #111;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,5,0.85) 0%, rgba(0,0,0,0) 60%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px; height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  opacity: 0;
  background: rgba(0,0,0,0.4);
}
.gallery-item:hover .gallery-zoom-icon {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* ---- Lightbox ---- */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
#lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
#lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,0.8); }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.8); font-size: 2rem; cursor: pointer;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  transition: all 0.3s;
}
#lightbox-close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; color: rgba(201,168,76,0.1);
  line-height: 1; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: rgba(201,168,76,0.35); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; }

/* ---- FAQ Accordion ---- */
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.2); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; text-align: left; background: none; border: none;
  cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--charcoal);
  transition: color 0.3s;
}
.faq-question:hover, .faq-question.active { color: var(--gold-dark); }
.faq-icon {
  width: 32px; height: 32px; min-width: 32px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; font-weight: 300;
  transition: all 0.35s ease;
}
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.35s ease;
  color: var(--charcoal-light); font-size: 0.9rem; line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }

/* ---- Forms ---- */
.form-field {
  position: relative; margin-bottom: 1.5rem;
}
.form-field label {
  display: block; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  color: var(--charcoal-light); margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.875rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--charcoal);
  outline: none; transition: all 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-field .error-msg {
  font-size: 0.75rem; color: #DC2626; margin-top: 0.35rem;
  display: none;
}
.form-field.invalid .error-msg { display: block; }
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea { border-color: #DC2626; }
.form-field.valid input,
.form-field.valid select,
.form-field.valid textarea { border-color: #16A34A; }

/* ---- Page Banners ---- */
.page-banner {
  position: relative; height: 460px;
  display: flex; align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 3rem; overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: panBg 15s ease-in-out infinite alternate;
}
@keyframes panBg {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.05) translateX(-2%); }
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.8) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
}
.page-banner-content { position: relative; z-index: 2; }

/* ---- WhatsApp Float ---- */
#whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse-green 2.5s infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float svg { width: 28px; height: 28px; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ---- Footer ---- */
.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block; padding: 0.2rem 0;
}
.footer-link:hover { color: var(--gold-light); }
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  transition: all 0.35s ease; text-decoration: none;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); transform: translateY(-3px); }
.footer-divider { border-color: rgba(201,168,76,0.15); }

/* ---- Animations ---- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up { animation: fadeUp 0.8s ease both; }
.animate-fade-in { animation: fadeIn 0.8s ease both; }
.animate-scale-in { animation: scaleIn 0.8s ease both; }

[data-aos] { opacity: 0; transition-property: transform, opacity; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ---- Carousel (custom) ---- */
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--gold); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
}
.carousel-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ---- Marquee ---- */
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Filter Buttons ---- */
.filter-btn {
  padding: 0.5rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent; color: var(--charcoal-light);
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: var(--charcoal); border-color: transparent;
}

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span.sep { color: var(--gold); }

/* ---- Counters ---- */
.counter-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }

/* ---- About Timeline ---- */
.timeline-item { position: relative; padding-left: 3rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.timeline-dot {
  position: absolute; left: -7px; top: 6px;
  width: 15px; height: 15px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

/* ---- Scroll to Top ---- */
#scroll-top {
  position: fixed; bottom: 5.5rem; right: 1.75rem;
  z-index: 890;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #C9A84C, #A07830);
  color: #1E1E1E; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

/* ---- Notification Toast ---- */
#toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal); color: var(--white);
  padding: 1rem 2rem; border-left: 3px solid var(--gold);
  font-size: 0.875rem; z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .hero-section { min-height: 100svh; }
  .page-banner { height: 360px; }
  .counter-num { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .btn-gold, .btn-outline-gold, .btn-outline-white { 
    padding: 0.75rem 1.5rem; font-size: 0.72rem;
  }
}

/* ---- Loading Overlay ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 60px; height: 60px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
