/* =============================================
   SAWA-SMART — Premium Dark Luxury Stylesheet
   Theme: Black · Gold · Cinematic
   ============================================= */

:root {
  --black:       #050508;
  --dark:        #0c0c14;
  --dark-2:      #12121e;
  --dark-3:      #1a1a2e;
  --gold:        #c9a84c;
  --gold-lite:   #e8c96d;
  --gold-dark:   #8a6f2e;
  --white:       #ffffff;
  --white-dim:   rgba(255,255,255,0.75);
  --white-faint: rgba(255,255,255,0.08);
  --gray:        rgba(255,255,255,0.45);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', sans-serif;
  --max-width:   1200px;
  --transition:  all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ---- Gold text ---- */
.gold-text { color: var(--gold); }
.italic { font-style: italic; }
.white { color: var(--white) !important; }

/* ---- Section Shared ---- */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
body:has(a:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-follower { width: 50px; height: 50px; border-color: var(--gold); }

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.loader__logo span { color: var(--gold); }
.loader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 12px;
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}
.loader__pct {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gray);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-lite);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo__main { color: var(--white); }
.logo__accent { color: var(--gold); }

.nav__list { display: flex; gap: 40px; }
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: 20px; }
.lang-selector { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.hamburger { display: none; flex-direction: column; gap: 6px; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4c6ec9, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: 3s;
}
.orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #c94c8a, transparent 70%);
  top: 50%; left: 30%;
  animation-delay: 5s;
  opacity: 0.08;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero__tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__tag-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.hero__tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title-line { display: block; }

.hero__sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.9;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats */
.hero__stats { display: flex; align-items: center; gap: 32px; }
.hero__stat { text-align: left; }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-plus { font-size: 1.2rem; color: var(--gold); }
.hero__stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.1);
}

/* Floating image card */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: floatY 6s ease-in-out infinite;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.1);
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: brightness(0.85);
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%, rgba(0,0,0,0.4) 100%);
  border-radius: var(--radius-xl);
}

/* Floating badges on image */
.float-badge {
  position: absolute;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  animation: floatBadge 4s ease-in-out infinite;
}
.float-badge i { color: var(--gold); }
.float-badge--tl { top: 20px; left: -20px; animation-delay: 0.5s; }
.float-badge--br { bottom: 30px; right: -20px; animation-delay: 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Decorative rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: spin 20s linear infinite;
}
.hero__ring--1 { width: 520px; height: 520px; }
.hero__ring--2 { width: 620px; height: 620px; border-color: rgba(201,168,76,0.06); animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 1;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  animation: lineGrow 2s ease-in-out infinite;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.3); }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.marquee-dot { color: var(--gold) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}
.service-card__glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-6px); box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.service-card:hover .service-card__glow { opacity: 1; }
.service-card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.service-card__link:hover { gap: 14px; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.about__bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,8,0.95) 45%, rgba(5,5,8,0.7) 100%);
}
.about__inner { position: relative; z-index: 1; }
.about__content { max-width: 620px; }
.about__text { color: rgba(255,255,255,0.65); margin-bottom: 16px; font-size: 1rem; line-height: 1.9; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.about__feature i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--dark-2);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 28px;
  font-family: var(--font-head);
  font-size: 6rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.testi-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.testi-card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 20px; }
.testi-card__text { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-card__author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-card__author span { display: block; color: var(--gray); font-size: 0.78rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 120px 0;
  background: var(--dark);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__sub { color: var(--gray); margin-bottom: 40px; font-size: 0.95rem; }
.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; align-items: center; gap: 16px; font-size: 0.9rem; }
.contact__list i {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem; flex-shrink: 0;
}
.contact__list a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.contact__list a:hover { color: var(--gold); }
.contact__list span { color: rgba(255,255,255,0.65); }

/* Form */
.contact__form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 52px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--dark-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand p { color: var(--gray); font-size: 0.88rem; margin-top: 12px; max-width: 260px; line-height: 1.7; }
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer__links h4, .footer__contact h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 14px; }
.footer__links a { font-size: 0.9rem; color: var(--gray); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact p { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 0.88rem; margin-bottom: 14px; }
.footer__contact i { color: var(--gold); width: 14px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* =============================================
   SERVICE CARD — IMAGE BACKGROUND VERSION
   ============================================= */
.service-card--img {
  background-image: var(--sc-bg);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,0.15) 0%, rgba(5,5,8,0.88) 100%);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-card--img:hover .service-card__img-overlay {
  background: linear-gradient(180deg, rgba(5,5,8,0.25) 0%, rgba(5,5,8,0.95) 100%);
}
.service-card__content {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.service-card--img .service-card__num {
  position: static;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-card--img .service-card__icon {
  margin-bottom: 14px;
  width: 44px; height: 44px;
}
.service-card--img h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card--img p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card--img:hover p {
  max-height: 80px;
  opacity: 1;
}

/* =============================================
   TESTIMONIAL PHOTO
   ============================================= */
.testi-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  z-index: 999;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   RTL SUPPORT
   ============================================= */
[dir="rtl"] .hero__inner { direction: rtl; }
[dir="rtl"] .nav__list { flex-direction: row-reverse; }
[dir="rtl"] .float-badge--tl { left: auto; right: -20px; }
[dir="rtl"] .float-badge--br { right: auto; left: -20px; }
[dir="rtl"] .hero__scroll { right: auto; left: 48px; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE TABLET
   ============================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero__sub { margin: 0 auto 44px; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__tag-wrap { justify-content: center; }
  .hero__visual { display: none; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__features { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE MOBILE
   ============================================= */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  button { cursor: pointer; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 36px; text-align: center; }
  .nav__link { font-size: 1.3rem; }
  .header__right .btn { display: none; }
  .hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: 1.8rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.4rem; }
  .about { padding: 80px 0; }
  .services, .testimonials, .contact { padding: 80px 0; }
}
