/* ============================================
   AURA LUXE SPA — style.css
   Color Palette:
   Gold:  #FAC302
   Dark:  #111B21
   White: #FFFFFF
   Light: #F9F6F1
   Muted: #7A7A7A
============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --gold: #FAC302;
  --gold-light: #fdd44e;
  --gold-dark: #c99a00;
  --dark: #111B21;
  --dark-soft: #1e2c35;
  --white: #FFFFFF;
  --light-bg: #F9F6F1;
  --muted: #7A7A7A;
  --border: rgba(250, 195, 2, 0.25);
  --shadow: 0 8px 40px rgba(17, 27, 33, 0.10);
  --shadow-hover: 0 16px 56px rgba(17, 27, 33, 0.16);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
section { overflow: hidden; }

/* ---------- Utility ---------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-light-spa { background-color: var(--light-bg); }
.text-gold { color: var(--gold); }
.text-muted-spa { color: var(--muted); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Gold Divider */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.gold-divider.center { margin: 20px auto 28px; }

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 195, 2, 0.28);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#mainNav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0;
  border-bottom: 1px solid rgba(250, 195, 2, 0.15);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(17,27,33,0.10);
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding: 14px 0;
}
.navbar-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
}
.navbar-brand .brand-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link-custom {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 28px 14px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after { width: calc(100% - 28px); }
.nav-link-custom:hover { color: var(--gold-dark) !important; }

.navbar-toggler {
  border: 1.5px solid var(--gold);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.navbar-toggler:focus { box-shadow: none; }
.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='%23FAC302' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero / Carousel ---------- */
#heroCarousel { position: relative; }
.hero-slide {
  position: relative;
  height: 84vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.52);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.322) 0%, rgba(0, 0, 0, 0.068) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(250,195,2,0.55);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 7px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold-hero:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(250,195,2,0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0;
  transition: var(--transition);
}
#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next { opacity: 1; }
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(1) brightness(0); }

.carousel-indicators [data-bs-target] {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
}
.carousel-indicators .active { background: var(--gold); width: 40px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
}
.stat-item { text-align: center; padding: 10px 0; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  height: 50px;
  margin: auto;
}

/* ---------- About ---------- */
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 45%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-hover);
}
.about-experience-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(250,195,2,0.35);
  z-index: 2;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--dark);
}
.feature-list li i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- How It Works ---------- */
.step-card {
  background: var(--white);
  border: 1px solid rgb(223 173 0 / 45%);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgb(255 200 7);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(250,195,2,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon i { font-size: 1.4rem; color: var(--gold-dark); }
.step-card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.step-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ---------- Why Choose Us ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.feature-card .icon-box {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon-box i { font-size: 1.3rem; color: var(--dark); }
.feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 14px; }
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,27,33,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { font-size: 1.8rem; color: var(--gold); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: var(--gold); margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p { font-size: 0.95rem; color: #555; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.author-city { font-size: 0.8rem; color: var(--muted); }

/* ---------- Spa Partner Section ---------- */
.partner-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(250,195,2,0.06);
}
.partner-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 50px solid rgba(250,195,2,0.05);
}
.partner-image-wrap { position: relative; }
.partner-image-wrap img {
  border-radius: var(--radius);
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.partner-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.partner-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.partner-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

.partner-label { font-size: 11px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 12px; }
.partner-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); font-weight: 400; margin-bottom: 16px; }
.partner-subtitle { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 500px; }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(250,195,2,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-icon i { font-size: 1.3rem; color: var(--gold-dark); }
.contact-card h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 8px; }
.contact-card p, .contact-card a {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-card a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow);
}
.form-label-spa {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control-spa {
  background: var(--light-bg);
  border: 1.5px solid rgba(17,27,33,0.10);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  transition: var(--transition);
  width: 100%;
  outline: none;
  resize: none;
}
.form-control-spa:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(250,195,2,0.12);
}
.form-control-spa::placeholder { color: #b0b0b0; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 70px 0 40px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(250,195,2,0.08); }

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.95rem; }
.footer-contact-item span { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(250,195,2,0.35);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--dark); color: var(--gold); transform: translateY(-3px); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge { animation: fadeInUp 0.6s ease 0.2s both; }
.hero-title  { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-desc   { animation: fadeInUp 0.6s ease 0.6s both; }
.hero-actions { animation: fadeInUp 0.6s ease 0.8s both; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-slide { height: 85vh; }
  .about-image-accent { right: 0; bottom: -20px; width: 48%; }
  .about-experience-badge { left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .nav-link-custom { padding: 12px 0 !important; }
  .nav-link-custom::after { bottom: 4px; left: 0; }
  .nav-link-custom::after { width: 0 !important; }
  .nav-link-custom:hover::after { width: 30px !important; left: 0; }
  .stat-divider { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
  .hero-slide { height: 90vh; min-height: 500px; }
  .hero-title { font-size: 2.2rem; }
  .about-image-main { height: 300px; }
  .about-image-accent { display: none; }
  .about-experience-badge { left: 12px; top: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item.large { grid-column: span 2; }
  .partner-image-wrap img { height: 280px; }
  .partner-badge { bottom: auto; top: -16px; left: 16px; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-gold-hero, .btn-outline-hero { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .contact-form-wrap { padding: 24px 16px; }
  #backToTop { bottom: 16px; right: 16px; }
}


.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25D366;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}
