/* =========================================================
   AURAM LUXE SPA — style.css
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #CF9020;
  --gold-light: #e8b44a;
  --gold-dark: #a07010;
  --rose: #BA004E;
  --white: #ffffff;
  --off-white: #FAF8F5;
  --cream: #F5EFE6;
  --dark: #1A1410;
  --dark2: #2C2418;
  --text: #3D3020;
  --text-muted: #7A6A52;
  --border: #E8D9C0;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --transition: all 0.35s ease;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
}

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

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

.section-cream {
  background: var(--cream);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: inherit;
  margin-bottom: 18px;
}

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

.section-dark .section-title em { color: var(--gold-light); }

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* ---- Buttons ---- */
.btn-primary-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  padding: 13px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207,144,32,0.35);
}

.btn-book {
  background: var(--gold);
  color: #fff !important;
  border: 2px solid var(--gold);
  padding: 9px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.btn-outline-hero {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 36px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(207,144,32,0.2);
}

.topbar-link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  transition: var(--transition);
}

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

.topbar-social a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

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

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.navbar { padding: 14px 0; }

.brand-logo {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.brand-logo.small { width: 38px; height: 38px; font-size: 17px; }

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  line-height: 1.4;
}

.nav-link {
  color: var(--text) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}

.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.toggler-icon {
  color: var(--dark);
  font-size: 24px;
  border: none;
  background: none;
}

.navbar-toggler { border: none; box-shadow: none !important; padding: 4px 8px; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-section { position: relative; }

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,20,16,0.78) 0%, rgba(26,20,16,0.55) 60%, rgba(207,144,32,0.15) 100%);
}

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

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

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

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}

.carousel-item.active .hero-tag,
.carousel-item.active .hero-title,
.carousel-item.active .hero-desc,
.carousel-item.active .hero-btns {
  animation-play-state: running;
}

.carousel-ctrl {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-control-prev:hover .carousel-ctrl,
.carousel-control-next:hover .carousel-ctrl {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-indicators { bottom: 30px; }

.hero-indicators button {
  width: 30px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  border: none;
  transition: var(--transition);
}

.hero-indicators button.active { background: var(--gold); width: 50px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 36px;
}

.marquee-track span i { color: rgba(255,255,255,0.6); font-size: 10px; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   ABOUT US
   ============================================================ */
.about-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-img-main img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--gold);
  color: #fff;
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.4;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.about-feat:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(207,144,32,0.15);
}

.about-feat i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

.service-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,20,16,0.6));
}

.service-body {
  padding: 24px 22px 22px;
  background: #fff;
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(207,144,32,0.2);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  font-weight: 300;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================================
   COUNTER
   ============================================================ */
.counter-section {
  background: var(--gold);
  padding: 60px 0;
}

.counter-item { padding: 10px; }

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  opacity: 0.8;
}

.counter-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(207,144,32,0.12);
  transform: translateX(4px);
}

.why-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.why-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.why-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; font-weight: 300; }

.why-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.why-img-big {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-img-big img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }

.why-img-sm-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-img-sm {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-img-sm img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

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

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(26,20,16,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-modal-content {
  background: var(--dark);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.gallery-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: var(--gold);
  opacity: 1;
  border-radius: 50%;
  width: 34px; height: 34px;
  filter: none;
}

.gallery-modal-close:hover { background: var(--gold-dark); }

/* ============================================================
   FAQs
   ============================================================ */
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark) !important;
  background: var(--white) !important;
  padding: 18px 22px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--gold) !important;
  background: var(--cream) !important;
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CF9020'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-body {
  background: var(--off-white);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(207,144,32,0.25);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(207,144,32,0.15);
  transform: translateY(-4px);
}

.contact-icon {
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  margin: 0 auto 18px;
}

.contact-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-weight: 300;
}

.contact-card a {
  color: var(--gold-light);
  font-weight: 500;
}

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

.contact-hours { font-size: 12px !important; margin-top: 6px !important; color: rgba(255,255,255,0.45) !important; }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(207,144,32,0.2);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}

.contact-input {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(207,144,32,0.25) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  font-weight: 300;
  transition: var(--transition);
}

.contact-input::placeholder { color: rgba(255,255,255,0.4) !important; }

.contact-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(207,144,32,0.15) !important;
  background: rgba(255,255,255,0.1) !important;
  outline: none;
}

.contact-input option { background: var(--dark2); color: #fff; }

.success-msg {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 500;
  padding: 14px;
  border: 1px solid rgba(207,144,32,0.3);
  border-radius: var(--radius);
  background: rgba(207,144,32,0.1);
}

.success-msg i { margin-right: 8px; color: #4CAF50; }

/* ============================================================
   MAP
   ============================================================ */
.map-section { overflow: hidden; }

.map-header {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.map-address-text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}

.map-address-text i { color: var(--gold); }

.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
}

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

.footer-brand .brand-name { color: var(--white); }

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(207,144,32,0.25);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  font-weight: 300;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   FLOATING ICONS (LEFT SIDE)
   ============================================================ */
.floating-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.float-call { background: var(--gold); }
.float-whatsapp { background: #25D366; }
.float-email { background: #EA4335; }
.float-top { background: var(--dark2); }

.float-label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: inherit;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border-radius: 0 2px 2px 0;
}

.float-icon:hover .float-label { opacity: 1; }

.float-icon:hover { width: 54px; }

#backToTop { display: none; }
#backToTop.visible { display: flex; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="80"] { transition-delay: 0.08s; }
[data-aos][data-aos-delay="160"] { transition-delay: 0.16s; }
[data-aos][data-aos-delay="240"] { transition-delay: 0.24s; }

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate { transform: translateX(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {

  .hero-slide { min-height: 85vh; }

  .about-img-main img { height: 380px; }
  .about-img-badge { padding: 18px 20px; }
  .badge-num { font-size: 2.2rem; }

  .why-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .why-img-big { min-height: 250px; }

  .contact-form-wrap { padding: 30px 24px; }

  .section-pad { padding: 70px 0; }
}

@media (max-width: 767px) {
	.cu-mb-ds-nn{
		display:none!important
	}
  .hero-slide { min-height: 92vh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .top-bar .topbar-left { font-size: 11px; gap: 12px !important;justify-content: center; }

  .about-img-wrap { padding-right: 20px; padding-bottom: 28px; }
  .about-img-main img { height: 300px; }

  .why-img-grid { grid-template-columns: 1fr; }
  .why-img-big { grid-column: 1; grid-row: 1; }
  .why-img-sm-wrap { grid-column: 1; grid-row: 2; flex-direction: row; }
  .why-img-sm { flex: 1; }

  .counter-section { padding: 45px 0; }
  .counter-num { font-size: 2.2rem; }

  .contact-form-wrap { padding: 24px 16px; }

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

  .floating-icons { gap: 0; }
  .float-icon { width: 42px; height: 42px; font-size: 16px; }
  .float-label { display: none; }
  .float-icon:hover { width: 42px; }

  .section-pad { padding: 55px 0; }
}

@media (max-width: 480px) {
  .hero-slide { min-height: 100svh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary-gold, .btn-outline-hero { width: 100%; max-width: 280px; text-align: center; }
  .topbar-social { display: none !important; }
  .about-img-main img { height: 250px; }
}
