/* =============================================
   GLAMHOLIC FAMILY SALON - Custom Stylesheet
   Theme: Luxury Black & Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #e0c48a;
  --gold-dark: #9a7a45;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f5f5f5;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s ease;
  --shadow: 0 10px 40px rgba(0,0,0,0.3);
  --gold-shadow: 0 5px 25px rgba(201,169,110,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--black); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo { text-align: center; }
.preloader-logo img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border: 1px solid rgba(201,169,110,0.4);
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-logo h2 {
  font-family: var(--font-heading); color: var(--gold); font-size: 2rem;
  letter-spacing: 10px; font-weight: 300; margin: 0;
}
.preloader-line {
  width: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 12px auto 0;
  animation: lineGrow 1.5s ease-in-out infinite;
}
.preloader-tagline {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}
@keyframes lineGrow { 0%,100%{width:0} 50%{width:100px} }
@keyframes pulse { 0%,100%{opacity:0.7} 50%{opacity:1} }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Navbar ---- */
#mainNav {
  background: transparent;
  padding: 15px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(10,10,10,0.97) !important;
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-brand img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  padding: 2px;
  background: var(--black);
  transition: var(--transition);
}
.navbar-brand:hover img {
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201,169,110,0.4);
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand-text .brand-name {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.navbar-brand-text .brand-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  border-radius: 0 !important;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.navbar-toggler { border: 1px solid var(--gold); border-radius: 0; padding: 6px 10px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,169,110,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero Slider ---- */
#heroSlider { position: relative; }
.hero-slide {
  height: 100vh; min-height: 650px;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: center;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding-left: 60px;
  animation: heroIn 1.2s ease forwards;
}
.hero-tag {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-content h1 {
  font-family: var(--font-heading); color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 300; line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); font-style: italic; }
.hero-content p {
  color: rgba(255,255,255,0.75); font-size: 0.95rem; letter-spacing: 0.5px;
  max-width: 480px; line-height: 1.8; margin-bottom: 35px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); border: none; border-radius: 0;
  padding: 14px 35px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: var(--transition); text-decoration: none; display: inline-block;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 0;
  padding: 14px 35px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: var(--transition); text-decoration: none; display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--black); transform: translateY(-2px);
}
@keyframes heroIn { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }

.carousel-control-prev, .carousel-control-next {
  width: 55px; height: 55px; top: 50%; transform: translateY(-50%);
  bottom: auto; background: rgba(201,169,110,0.15);
  border: 1px solid var(--gold); border-radius: 0;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--gold); }
.carousel-control-prev { left: 25px; }
.carousel-control-next { right: 25px; }
.carousel-indicators { bottom: 30px; }
.carousel-indicators button {
  width: 30px; height: 2px; background: rgba(255,255,255,0.4);
  border: none; border-radius: 0;
}
.carousel-indicators button.active { background: var(--gold); width: 60px; }

/* ---- Section Common ---- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--dark);
}
.section-heading.white { color: var(--white); }
.section-heading span { color: var(--gold); font-style: italic; }
.section-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 20px 0 30px;
}
.section-divider.center { margin: 20px auto 30px; }
.section-desc { color: var(--gray); line-height: 1.9; font-size: 0.92rem; }

/* ---- Marquee Strip ---- */
.marquee-strip {
  background: var(--gold); padding: 14px 0; overflow: hidden;
}
.marquee-inner {
  display: flex; animation: marquee 20s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); font-weight: 700; padding: 0 35px;
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::after { content: '✦'; opacity: 0.5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- About Section ---- */
.about-img-wrap {
  position: relative; padding: 20px 20px 0 0;
}
.about-img-wrap::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: calc(100% - 25px); height: calc(100% - 25px);
  border: 1px solid var(--gold); z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1; width: 100%;
  max-height: 500px; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -15px; left: 30px; z-index: 2;
  background: var(--gold); color: var(--black);
  padding: 18px 25px; text-align: center;
}
.about-badge strong { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 600; display: block; line-height: 1; }
.about-badge span { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }
.about-feature {
  display: flex; gap: 15px; padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
  width: 45px; height: 45px; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon i { color: var(--gold); font-size: 1.1rem; }
.about-feature h6 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 3px; }
.about-feature p { font-size: 0.78rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ---- Services ---- */
.services-dark { background: var(--dark); }
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 0; overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card-img {
  width: 100%; height: 230px; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 25px 22px; }
.service-card-icon {
  width: 48px; height: 48px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
}
.service-card-icon i { color: var(--black); font-size: 1.2rem; }
.service-card h5 {
  font-family: var(--font-heading); color: var(--white);
  font-size: 1.35rem; font-weight: 400; margin-bottom: 10px;
}
.service-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.75; margin-bottom: 18px; }
.service-link {
  color: var(--gold); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.service-link:hover { gap: 14px; color: var(--gold-light); }

/* ---- Stats Counter ---- */
.stats-section { background: var(--gold); padding: 60px 0; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 600;
  color: var(--black); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.6); margin-top: 8px;
}
.stat-divider { width: 1px; background: rgba(0,0,0,0.2); height: 60px; margin: 0 auto; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 2rem; }

/* ---- Why Choose Us ---- */
.why-us { background: var(--light-gray); }
.why-card {
  background: var(--white); padding: 35px 28px;
  border-bottom: 3px solid transparent;
  transition: var(--transition); height: 100%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.why-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.why-icon {
  width: 60px; height: 60px; background: var(--black);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon i { color: var(--gold); font-size: 1.4rem; }
.why-card h5 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; }
.why-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.8; }

/* ---- Testimonials ---- */
.testimonials-dark { background: var(--dark); }
.testimonial-card {
  background: var(--dark2); padding: 35px 30px;
  border: 1px solid rgba(201,169,110,0.12);
  position: relative; height: 100%;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-heading); font-size: 6rem;
  color: var(--gold); opacity: 0.15; position: absolute; top: -15px; left: 20px; line-height: 1;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 45px; height: 45px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); color: var(--black); font-size: 1.2rem; font-weight: 600;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.author-loc { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.5px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 100%);
  padding: 80px 0; text-align: center;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.cta-banner h2 { font-family: var(--font-heading); color: var(--white); font-size: clamp(2rem, 3vw, 3rem); font-weight: 300; }
.cta-banner h2 span { color: var(--gold); font-style: italic; }
.cta-banner p { color: var(--gray); margin: 15px auto 35px; max-width: 500px; font-size: 0.9rem; line-height: 1.8; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 1.5rem; font-family: var(--font-heading);
  text-decoration: none; transition: var(--transition);
}
.cta-phone:hover { color: var(--gold-light); transform: scale(1.04); }

/* ---- Contact ---- */
.contact-info-box {
  background: var(--dark); padding: 50px 40px; height: 100%;
}
.contact-detail {
  display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start;
}
.contact-icon {
  width: 50px; height: 50px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon i { color: var(--black); font-size: 1.1rem; }
.contact-detail h6 { color: var(--gold); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.contact-detail p, .contact-detail a { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; text-decoration: none; margin: 0; }
.contact-detail a:hover { color: var(--gold); }
.contact-form-box { background: var(--light-gray); padding: 50px 40px; }
.form-control, .form-select {
  border: 1px solid #e0e0e0; border-radius: 0; padding: 13px 16px;
  font-size: 0.85rem; font-family: var(--font-body);
  background: var(--white); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  outline: none;
}
.form-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.map-wrapper { position: relative; overflow: hidden; }
.map-wrapper iframe { display: block; }

/* ---- Footer ---- */
footer {
  background: var(--black); border-top: 1px solid rgba(201,169,110,0.2);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 25px; }
.footer-brand img { height: 65px; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.8; max-width: 280px; margin: 15px 0 25px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; transition: var(--transition); font-size: 0.9rem;
}
.social-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-heading {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.82rem; text-decoration: none;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '→'; color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact li span { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); margin-top: 50px; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ---- Page Banner ---- */
.page-banner {
  background: var(--dark); padding: 130px 0 70px;
  position: relative; text-align: center; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.15;
}
.page-banner h1 {
  font-family: var(--font-heading); color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; position: relative; z-index: 1;
}
.page-banner h1 span { color: var(--gold); font-style: italic; }
.breadcrumb { background: none; justify-content: center; padding: 0; margin-top: 15px; position: relative; z-index: 1; }
.breadcrumb-item a { color: var(--gold); text-decoration: none; font-size: 0.8rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- Service List Page ---- */
.service-list-item {
  background: var(--white); border: 1px solid #ebebeb;
  padding: 30px; display: flex; gap: 25px; align-items: flex-start;
  margin-bottom: 20px; transition: var(--transition);
}
.service-list-item:hover { border-left: 3px solid var(--gold); padding-left: 28px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); }
.service-list-icon {
  width: 55px; height: 55px; background: var(--black); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.service-list-icon i { color: var(--gold); font-size: 1.3rem; }
.service-list-item h4 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; }
.service-list-item p { color: var(--gray); font-size: 0.85rem; line-height: 1.75; margin: 0; }
.price-tag {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold);
  font-weight: 500; white-space: nowrap; margin-left: auto;
}

/* ---- Back to Top ---- */
#backToTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 45px; height: 45px; background: var(--gold); color: var(--black);
  border: none; display: none; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1rem;
}
#backToTop:hover { background: var(--gold-dark); }
#backToTop.show { display: flex; }

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 30px; z-index: 999;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: waBounce 2s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ---- Lightbox Overlay ---- */
#lightboxOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
#lightboxOverlay.active { display: flex; }
#lightboxImg { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lightboxClose {
  position: absolute; top: 20px; right: 25px; color: var(--gold);
  font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-content { padding-left: 30px; }
  #mainNav { background: rgba(10,10,10,0.97) !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 767px) {
  .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero-content h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-box, .contact-form-box { padding: 35px 25px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .service-list-item { flex-wrap: wrap; }
  .price-tag { margin-left: 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 60px 0; }
}

/* ---- Navbar Brand Responsive ---- */
@media (max-width: 576px) {
  .navbar-brand-text { display: none; }
  .navbar-brand img { height: 45px; width: 45px; }
}
