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

/* ---------- ROOT VARIABLES ---------- */
:root {

  --primary: #a84192;
  --primary-light: #c95ab1;
  --primary-dark: #842f71;

  --secondary: #1f1a1d;
  --secondary-light: #2e2730;

  --white: #ffffff;
  --off-white: #faf7fb;
  --cream: #f7eef5;

  --text: #3e3340;
  --text-light: #7d6c79;

  --border: rgba(168, 65, 146, 0.15);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 35px rgba(0,0,0,0.12);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.18);

  --radius: 6px;
  --transition: all 0.35s ease;

}

/* ---------- GLOBAL ---------- */

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

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

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

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

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

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

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

.container{
  position:relative;
  z-index:2;
}

/* ---------- SECTIONS ---------- */

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

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

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

/* ---------- SECTION HEADINGS ---------- */

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

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

.section-title{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:18px;
  color:inherit;
}

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

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

.section-desc{
  color:var(--text-light);
  font-size:15px;
  font-weight:300;
  line-height:1.9;
}

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

/* ---------- BUTTONS ---------- */

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

.btn-primary-gold:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(168,65,146,0.35);
}

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

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

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

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


/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #140f14;
  padding: 9px 0;
  border-bottom: 1px solid rgba(168, 65, 146, 0.25);
}

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

.topbar-link:hover {
  color: #a84192;
}

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

.topbar-social a:hover {
  color: #a84192;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(168, 65, 146, 0.12);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.navbar {
  padding: 14px 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  background: #a84192;
  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: #1f1a1d;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #a84192;
  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: #a84192;
  transition: var(--transition);
  transform-origin: center;
}

.nav-link:hover {
  color: #a84192 !important;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.toggler-icon {
  color: #1f1a1d;
  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(20, 15, 20, 0.82) 0%,
    rgba(20, 15, 20, 0.60) 60%,
    rgba(168, 65, 146, 0.22) 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: #d96bc2;
  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: #d96bc2;
}

.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: #a84192;
  border-color: #a84192;
}

.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: #a84192;
  width: 50px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: #a84192;
  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.65);
  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(168, 65, 146, 0.10);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  height: 100%;
}

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

.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(168, 65, 146, 0.35));
}

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

.service-icon {
  width: 44px;
  height: 44px;
  background: #faf5f9;
  border: 1px solid rgba(168, 65, 146, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a84192;
  font-size: 18px;
  margin-bottom: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(168, 65, 146, 0.18);
}

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

.service-desc {
  font-size: 13.5px;
  color: black;
  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: #a84192;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover {
  color: #8d3579;
  gap: 10px;
}

/* ============================================================
   COUNTER
   ============================================================ */
.counter-section {
  background: #a84192;
  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.82);
  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 rgba(168, 65, 146, 0.14);
  border-radius: var(--radius);
  background: #fcf7fb;
  transition: var(--transition);
}

.why-item:hover {
  border-color: #a84192;
  box-shadow: 0 4px 20px rgba(168, 65, 146, 0.14);
  transform: translateX(4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #a84192;
  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: black;
  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;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1b141c;
  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: #a84192;
  border-color: #a84192;
  color: #fff;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a84192;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(168, 65, 146, 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: #a84192;
  font-size: 16px;
  line-height: 1;
}

.footer-links a:hover {
  color: #d96bc2;
  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: #a84192;
  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: #d96bc2;
}

.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: #a84192;
}

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

.float-email {
  background: #d44638;
}

.float-top {
  background: #1b141c;
}

.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) {
  .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;
  }

  .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;
  }
}

@media(max-width:374px)
{
	.brand-sub {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #a84192;
    line-height: 1.9;
}
}