/* ════════════════════════════════════════
   HERCOVITS HAIR STUDIO — style.css
   Black & Champagne Gold Theme
════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #a0782a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-light: #cccccc;
  --text-muted: #888888;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --transition: all 0.35s ease;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ─── Utility Classes ──────────────────── */
.section-pad {
  padding: 90px 0;
}

.section-dark {
  background: var(--dark-2);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-sub.light {
  color: var(--text-light);
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ─── Buttons ──────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black) !important;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-outline-light-hero {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline-light-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ─── Top Bar ──────────────────────────── */
.top-bar {
  background: rgb(0, 0, 0);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.top-bar-link {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: var(--gold);
}

.top-bar-link i {
  color: var(--gold);
  font-size: 0.75rem;
}

.top-social {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.25s;
}

.top-social:hover {
  color: var(--gold);
}

/* ─── Header / Navbar ──────────────────── */

.logos {
  width: 130px;
    height: 100px;
}

#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

#mainNavbar {
  background: rgb(0, 0, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

#mainNavbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon i {
  color: var(--black);
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px !important;
  transition: color 0.25s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--border);
  padding: 6px 10px;
  background: transparent;
}

.toggler-icon i {
  color: var(--gold);
  font-size: 1.4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark-2);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link {
    padding: 10px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .ms-lg-2 {
    margin-top: 12px;
  }
}

/* ─── Hero Carousel ────────────────────── */
#heroCarousel {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 92vh;
  min-height: 500px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.50) 60%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Carousel controls */
.custom-carousel-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.custom-carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 18px;
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--gold);
  width: 44px;
}

@media (max-width: 575px) {
  .hero-slide {
    height: 85vh;
    min-height: 420px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    padding: 0 8px;
  }

  .custom-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ─── About Section ────────────────────── */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.exp-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-number sup {
  font-size: 1rem;
}

.exp-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content {
  padding-top: 20px;
}

.about-para {
  color: #444;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.about-list {
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 500;
}

.about-list li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about-exp-badge {
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
  }

  .exp-number {
    font-size: 1.7rem;
  }
}

/* ─── Services ─────────────────────────── */
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 270px;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.service-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.service-icon i {
  color: var(--black);
  font-size: 1.2rem;
}

.service-name {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.service-body .btn-gold-outline {
  align-self: flex-start;
}

/* ─── Why Choose Us ────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid #e5e0d5;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.22));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1.5px solid var(--border);
}

.why-icon i {
  color: var(--gold);
  font-size: 1.4rem;
}

.why-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ─── Counter ──────────────────────────── */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.counter-item {
  padding: 10px;
}

.counter-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.counter-suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  font-weight: 600;
}

.counter-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* ─── Gallery ──────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover i {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.gallery-hover span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item.hidden {
  display: none;
}

/* ─── Contact ──────────────────────────── */
.contact-info-box,
.contact-form-box {
  background: var(--white);
  border: 1px solid #e5e0d5;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.contact-info-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e0d5;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.22));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-icon i {
  color: var(--gold);
  font-size: 0.95rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}

.contact-detail a {
  color: #555;
  transition: color 0.25s;
}

.contact-detail a:hover {
  color: var(--gold-dark);
}

/* Form Styles */
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}

.form-control,
.form-select {
  background: var(--off-white);
  border: 1.5px solid #d8d0c0;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--ff-body);
  color: var(--dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--white);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5e0d5;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  display: block;
}

@media (max-width: 575px) {

  .contact-info-box,
  .contact-form-box {
    padding: 24px 18px;
  }
}

/* ─── Footer ───────────────────────────── */
.site-footer {
  background: black;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.9rem;
}

.footer-contact-list a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Floating Buttons ─────────────────── */
.floating-buttons {
  position: fixed;
 right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1040;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black) !important;
}

.float-wa {
  background: #25d366;
}

.float-tooltip {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  border: 1px solid var(--border);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ─── Back To Top ──────────────────────── */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1035;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ─── Scroll Reveal Animations ─────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── Form Feedback ────────────────────── */
#formMsg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

#formMsg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* ─── Responsive Tweaks ────────────────── */
@media (max-width: 767px) {
	.cu-mb-ds-nn{
		display:none!important
	}
  .section-pad {
    padding: 60px 0;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 80px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  #backToTop {
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .about-exp-badge {
    right: 8px;
  }
}

@media (max-width: 575px) {
  .top-bar {
    /* display: none; */
  }

  .counter-section {
    padding: 50px 0;
  }

  .why-card,
  .service-card {
    margin-bottom: 0;
  }
}