/* =====================================================================
   Dr. Nayanar's Aesthetic Loft — The PMU Studio & Diet Hub
   Full Design System | style.css
   ===================================================================== */

/* ── Google Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────────── */
:root {
  --royal-purple: #6B21A8;
  --deep-purple:  #4C1D95;
  --mid-purple:   #7C3AED;
  --light-purple: #A855F7;
  --pale-purple:  #EDE9FE;
  --gold:         #D4A017;
  --gold-light:   #F0C040;
  --gold-pale:    #FEF3C7;
  --dark:         #0F0A1E;
  --dark-2:       #1A1030;
  --dark-3:       #261A44;
  --white:        #FFFFFF;
  --off-white:    #F9F8FF;
  --gray:         #9CA3AF;
  --gray-light:   #F3F4F6;

  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'Poppins', sans-serif;
  --font-fancy: 'Dancing Script', cursive;

  --shadow-sm:  0 2px 8px rgba(107,33,168,.15);
  --shadow-md:  0 8px 32px rgba(107,33,168,.25);
  --shadow-lg:  0 16px 64px rgba(107,33,168,.35);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────────────── */
.section-pad  { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.tag-line {
  font-family: var(--font-fancy);
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep-purple);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: .95rem;
  color: var(--gray);
  max-width: 580px;
  margin: .8rem auto 0;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,.75); }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--light-purple));
  border-radius: 2px;
  margin: 1rem auto 0;
}

.divider.left { margin-left: 0; }

.btn-primary-custom {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
  color: var(--white);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(107,33,168,.4);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(107,33,168,.5);
  color: var(--white);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(212,160,23,.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,160,23,.5);
  color: var(--dark);
}

.btn-outline-purple {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-purple:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(15,10,30,.95);
  backdrop-filter: blur(16px);
  padding: .8rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.nav-brand {
  display: flex; align-items: center; gap: .75rem;
}

.nav-brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(107,33,168,.4);
}

.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-brand-sub {
  font-size: .65rem;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .35rem .6rem;
  border-radius: var(--radius-sm);
}
.navbar-toggler-icon { filter: brightness(10); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .4rem .9rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: .9rem; right: .9rem; }
.navbar-nav .nav-link.active { color: var(--gold-light) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  border-radius: 50px;
  padding: .45rem 1.2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(212,160,23,.4);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* ── Hero Section ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_banner.png');
  background-size: cover;
  background-position: center top;
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15,10,30,.92) 0%,
    rgba(76,29,149,.75) 50%,
    rgba(15,10,30,.5) 100%
  );
}

.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle, rgba(212,160,23,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: particleDrift 30s linear infinite;
}

@keyframes particleDrift {
  from { background-position: 0 0; }
  to   { background-position: 120px 120px; }
}

.hero-content {
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.4);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .78rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--light-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .78rem;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}

.hero-pill i { color: var(--gold-light); font-size: .8rem; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(15,10,30,.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,160,23,.2);
  padding: 1.25rem 0;
}

.hero-stats .row > div {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--light-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,160,23,.25);
  align-self: center;
}

/* ── Feature Strip ──────────────────────────────────────────────────── */
.feature-strip {
  background: linear-gradient(135deg, var(--deep-purple), var(--dark-3));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,.12) 0%, transparent 70%);
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,.12);
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(212,160,23,.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(107,33,168,.5), rgba(212,160,23,.3));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(212,160,23,.2);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  box-shadow: 0 8px 24px rgba(212,160,23,.3);
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: .5rem;
}

.feature-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ── Services Section ───────────────────────────────────────────────── */
.services-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,33,168,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(107,33,168,.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(15,10,30,.8);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(212,160,23,.3);
}

.service-body { padding: 1.5rem; }

.service-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: .5rem;
}

.service-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  border-top: 1px solid var(--gray-light);
  padding-top: 1rem;
  display: flex; flex-direction: column; gap: .4rem;
}

.service-feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem;
  color: var(--dark);
}

.service-feature-item i {
  color: var(--mid-purple);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ── About Section ──────────────────────────────────────────────────── */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 4px solid var(--white);
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge-text {
  font-size: .55rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .2rem;
  font-weight: 600;
}

.about-checks { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }

.about-check {
  display: flex; align-items: flex-start; gap: .75rem;
}

.check-icon {
  width: 28px; height: 28px;
  background: var(--pale-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--royal-purple);
  font-size: .75rem;
}

.check-text {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.6;
}

.check-text strong { color: var(--deep-purple); }

.opening-hours {
  background: linear-gradient(135deg, var(--deep-purple), var(--dark-3));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.opening-hours h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}

.hours-row {
  display: flex; justify-content: space-between;
  font-size: .82rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gold-light); font-weight: 500; }

/* ── Treatments Section ─────────────────────────────────────────────── */
.treatments-section {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.treatments-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,160,23,.08) 0%, transparent 60%);
}

.treatment-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex; gap: 1rem; align-items: flex-start;
}

.treatment-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(212,160,23,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.treatment-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(107,33,168,.6), rgba(212,160,23,.3));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  flex-shrink: 0;
  border: 1px solid rgba(212,160,23,.15);
}

.treatment-info { flex: 1; }

.treatment-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .3rem;
}

.treatment-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── Testimonials ───────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,33,168,.05) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,33,168,.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--pale-purple);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}

.testimonial-text {
  font-size: .88rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  position: relative; z-index: 1;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
  position: relative; z-index: 1;
  border-top: 1px solid var(--gray-light);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}

.author-from {
  font-size: .72rem;
  color: var(--gray);
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-section .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--deep-purple);
  background: var(--white);
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--pale-purple);
  color: var(--royal-purple);
}

.faq-section .accordion-button::after {
  filter: invert(30%) sepia(80%) saturate(1000%) hue-rotate(260deg);
}

.faq-section .accordion-item {
  border: 1px solid rgba(107,33,168,.1);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-section .accordion-body {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.8;
  background: var(--white);
}

/* ── CTA Banner ─────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--royal-purple) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,160,23,.15) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Services Page ──────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep-purple) 60%, var(--dark-3) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,160,23,.1) 0%, transparent 60%);
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb { justify-content: center; margin-top: 1rem; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* Filter Tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }

.filter-tab {
  background: transparent;
  border: 1.5px solid rgba(107,33,168,.3);
  color: var(--mid-purple);
  border-radius: 50px;
  padding: .5rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,33,168,.3);
}

/* Service List Card */
.service-list-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  border: 1px solid rgba(107,33,168,.06);
  transition: var(--transition);
  height: 100%;
}

.service-list-card:hover {
  border-color: rgba(107,33,168,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-list-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--pale-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--royal-purple);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-list-card:hover .service-list-icon {
  background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
  color: var(--white);
}

.service-list-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: .4rem;
}

.service-list-desc {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-list-tag {
  display: inline-block;
  background: var(--pale-purple);
  color: var(--royal-purple);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
}

/* ── Gallery Page ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,10,30,.9) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0; transition: opacity .35s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: .4rem;
}

.gallery-zoom {
  width: 36px; height: 36px;
  background: rgba(212,160,23,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: .9rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: lightboxOpen .3s ease;
}

@keyframes lightboxOpen {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: fixed; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--gold-light); }

/* ── Contact Page ───────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,33,168,.07);
}

.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--deep-purple);
  margin-bottom: .4rem;
}

.form-control, .form-select {
  border: 1.5px solid rgba(107,33,168,.15);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .88rem;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--royal-purple);
  box-shadow: 0 0 0 3px rgba(107,33,168,.12);
  outline: none;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--deep-purple), var(--dark-3));
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: .2rem;
}

.contact-info-value {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  margin-top: 1.5rem;
  background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.map-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,.6);
}

.map-pin {
  font-size: 2.5rem;
  color: var(--gold-light);
  animation: pinBounce 2s ease-in-out infinite;
  display: block; margin-bottom: .5rem;
}

@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,160,23,.15);
  padding: 70px 0 0;
}

.footer-brand {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex; gap: .6rem;
}

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .6rem;
}

.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-link:hover { color: var(--gold-light); padding-left: 4px; }
.footer-link i { font-size: .65rem; color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .65rem;
}

.footer-contact-item i {
  color: var(--gold-light);
  font-size: .85rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

.footer-bottom span { color: var(--gold); }

/* ── Scroll-to-Top ──────────────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--royal-purple), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  box-shadow: 0 6px 20px rgba(107,33,168,.4);
  cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  border: none;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(107,33,168,.5); }

/* ── Form Alert ─────────────────────────────────────────────────────── */
.form-success {
  background: rgba(107,33,168,.08);
  border: 1px solid rgba(107,33,168,.2);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-size: .9rem;
  color: var(--deep-purple);
  font-weight: 500;
  display: none;
}

/* ── Animations ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .gallery-item.wide { grid-column: span 1; }
  .about-img-wrap { margin-bottom: 2rem; }
  .about-badge { width: 90px; height: 90px; bottom: -10px; right: -10px; }
  .about-badge-num { font-size: 1.5rem; }
  .navbar-collapse {
    background: rgba(15,10,30,.97);
    backdrop-filter: blur(16px);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: .5rem;
  }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { position: relative; }
  .hero { min-height: auto; padding: 120px 0 0; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: auto; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-info-card { margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
