/* ============================================================
   SEVERINA BEAUTY SALON — style.css
   Minimalist black & white identity with champagne accent.
   ------------------------------------------------------------
   BRAND COLORS (edit in :root below):
     --black       #111111   primary text / dark sections
     --white       #FFFFFF   backgrounds
     --light-gray  #F7F7F7   alternate section backgrounds
     --medium-gray #777777   secondary text
     --champagne   #D8C3A5   luxury accent (buttons, icons, lines)
     --border      #E5E5E5   thin dividers
============================================================ */

:root {
  --black: #111111;
  --white: #FFFFFF;
  --light-gray: #F7F7F7;
  --medium-gray: #777777;
  --champagne: #D8C3A5;
  --champagne-dark: #c3ab88;
  --border: #E5E5E5;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.06);
  --shadow-lift: 0 18px 40px rgba(17, 17, 17, 0.12);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
}

p { color: var(--medium-gray); }

a { color: var(--black); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--champagne-dark); }

img { max-width: 100%; }

.rounded-10 { border-radius: var(--radius); }

/* Accessible focus outline */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--champagne-dark);
  outline-offset: 2px;
}

/* ---------- Loading screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  width: 110px;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-line {
  width: 140px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--champagne);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: var(--radius);
  padding: 0.75rem 1.8rem;
  transition: all 0.35s ease;
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.85rem; }

/* Champagne accent button */
.btn-champagne {
  background-color: var(--champagne);
  border: 1px solid var(--champagne);
  color: var(--black);
}

.btn-champagne:hover, .btn-champagne:focus {
  background-color: var(--champagne-dark);
  border-color: var(--champagne-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Solid black button */
.btn-dark-elegant {
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.btn-dark-elegant:hover, .btn-dark-elegant:focus {
  background-color: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

/* Thin outline button (service cards) */
.btn-outline-elegant {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  padding: 0.55rem 1.5rem;
}

.btn-outline-elegant:hover, .btn-outline-elegant:focus {
  background-color: var(--black);
  color: var(--white);
}

.btn-outline-light:hover { color: var(--black); }

/* Champagne text link with arrow */
.link-champagne {
  color: var(--black);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px;
}

.link-champagne i { margin-left: 8px; transition: transform 0.3s ease; }
.link-champagne:hover i { transform: translateX(6px); }

/* ---------- Navigation ---------- */
#mainNav {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#mainNav.scrolled {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.05);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { height: 52px; width: auto; transition: height 0.3s ease; }
#mainNav.scrolled .navbar-brand img { height: 44px; }

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

/* "Beauty Salon" tagline under the brand name */
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--medium-gray);
}

.navbar-nav .nav-link {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0.6rem;
  padding: 0.4rem 0;
  position: relative;
}

/* Champagne underline for hover + active section */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne-dark);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }

.navbar-nav .nav-link.active { color: var(--champagne-dark); }

.navbar-toggler { border: none; font-size: 1.3rem; color: var(--black); }
.navbar-toggler:focus { box-shadow: none; }

.btn-sm-nav { padding: 0.55rem 1.4rem; font-size: 0.75rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  /* EDIT HERE: hero background image */
  background: url('../images/hero.jpg') center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.65));
}

.hero-label {
  color: var(--champagne);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.2rem;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Sections (shared) ---------- */
.section { padding: 100px 0; }

.bg-light-gray { background-color: var(--light-gray); }

.section-label {
  color: var(--champagne-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-title.text-start { text-align: left; }

/* Thin champagne divider under section titles */
.divider-line {
  width: 70px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto 3rem;
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
}

/* ---------- About ---------- */
.about-image-wrap { position: relative; }

.about-image-wrap img { box-shadow: var(--shadow-soft); }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lift);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--champagne);
}

.badge-text { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; max-width: 120px; line-height: 1.5; }

.about-list { margin: 1.5rem 0 2rem; }

.about-list li { margin-bottom: 0.6rem; color: var(--black); font-weight: 400; }

.about-list i {
  color: var(--champagne-dark);
  margin-right: 12px;
  font-size: 0.8rem;
}

/* ---------- Statistics ---------- */
.stats-section {
  background: var(--black);
  padding: 70px 0;
}

.stat-number, .stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--champagne);
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0.4rem 0 0;
}

/* ---------- Featured services ---------- */
.featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-soft);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover img { transform: scale(1.06); }

.featured-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.88));
  color: var(--white);
}

.featured-card-body h3 { color: var(--white); font-size: 1.5rem; }
.featured-card-body p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin-bottom: 1rem; }
.featured-card-body .link-champagne { color: var(--champagne); border-color: var(--champagne); }
.featured-card-body .link-champagne:hover { color: var(--white); }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.service-img { height: 210px; overflow: hidden; }

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.08); }

.service-body { padding: 28px 26px 30px; position: relative; }

.service-icon {
  position: absolute;
  top: -26px;
  left: 26px;
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-dark);
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.service-body h3 { font-size: 1.25rem; margin: 14px 0 8px; }
.service-body p { font-size: 0.88rem; margin-bottom: 0.8rem; }

.service-price {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 1.1rem;
}

/* ---------- Why choose us ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 42px 26px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--champagne);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--champagne-dark);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: background 0.35s ease, color 0.35s ease;
}

.feature-card:hover .feature-icon {
  background: var(--champagne);
  color: var(--black);
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.feature-card p { font-size: 0.87rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '\2b';                                /* plus sign overlay */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(17, 17, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 86vw;
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--black);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Special offers ---------- */
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.offer-card-featured { border: 1px solid var(--champagne); }

.offer-tag {
  display: inline-block;
  background: var(--black);
  color: var(--champagne);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 1.2rem;
}

.offer-card h3 { font-size: 1.5rem; }
.offer-card p { font-size: 0.9rem; }

.offer-validity {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin: 0.8rem 0 1.4rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  margin: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.stars { color: var(--champagne-dark); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 3px; }

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testimonial-card figcaption { display: flex; align-items: center; gap: 14px; }

/* Customer photo placeholder — replace <i> with an <img> to use real photos */
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-dark);
  flex-shrink: 0;
}

.testimonial-name { display: block; font-weight: 500; font-size: 0.95rem; }
.testimonial-role { display: block; font-size: 0.75rem; color: var(--medium-gray); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Instagram ---------- */
.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--champagne-dark);
  margin-bottom: 1.4rem;
}

.instagram-text { max-width: 560px; margin-bottom: 2rem; }

/* ---------- FAQ ---------- */
.elegant-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}

.elegant-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: none;
}

.elegant-accordion .accordion-button:not(.collapsed) {
  color: var(--champagne-dark);
  background: var(--white);
}

.elegant-accordion .accordion-button:focus { box-shadow: none; }

.elegant-accordion .accordion-button::after {
  background-image: none;
  content: '\2b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  width: auto;
  height: auto;
  color: var(--champagne-dark);
}

.elegant-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068';
  transform: none;
}

.elegant-accordion .accordion-body {
  color: var(--medium-gray);
  font-size: 0.92rem;
  padding: 0 1.5rem 1.4rem;
}

/* ---------- Call to action ---------- */
.cta-section {
  background: var(--black);
  padding: 110px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 2.2rem;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.contact-heading { font-size: 1.5rem; margin-bottom: 1.6rem; }

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--medium-gray);
}

.contact-list li:last-child { margin-bottom: 0; }
.contact-list strong { color: var(--black); font-weight: 500; }
.contact-list a { color: var(--medium-gray); }
.contact-list a:hover { color: var(--champagne-dark); }

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-dark);
}

.map-wrap {
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
}

.footer-logo {
  height: 84px;
  margin-bottom: 1.2rem;
}

.footer-about { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover { color: var(--champagne); padding-left: 6px; }

.footer-contact li {
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact i { color: var(--champagne); width: 22px; }

.footer-social { display: flex; gap: 12px; margin-top: 1.4rem; }

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--black);
  transform: translateY(-3px);
}

.newsletter-form { display: flex; gap: 10px; }

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
}

.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.45); }

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--champagne);
  box-shadow: none;
  color: var(--white);
}

.newsletter-form .btn { padding: 0.65rem 1.1rem; }

.newsletter-msg { font-size: 0.8rem; color: var(--champagne); margin: 0.6rem 0 0; min-height: 1.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 60px;
  padding: 24px 0;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin: 0; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ---------- Scroll to top button ---------- */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--black);
  color: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 50%;
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.scroll-top:hover { background: var(--champagne); color: var(--black); }

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll, .loader-logo, .loader-line::after { animation: none; }
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.4rem 1.4rem;
    margin-top: 0.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link { margin: 0.2rem 0; }
  .btn-sm-nav { margin-top: 0.8rem; display: inline-block; }
}

@media (max-width: 767.98px) {
  .section { padding: 70px 0; }
  .featured-card { height: 340px; }
  .gallery-item img { height: 190px; }
  .about-badge { right: 12px; padding: 14px 18px; }
  .badge-number { font-size: 1.5rem; }
  .stat-number, .stat-suffix { font-size: 2.1rem; }
  .cta-section { padding: 80px 0; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .scroll-top { bottom: 84px; right: 23px; }
}
