/* ============================================
   SKY-LIFTED MASSAGE THERAPY — LUXURY GOLD THEME
   ============================================ */

:root {
  --gold-primary: #C9A84C;
  --gold-light: #E8C96A;
  --gold-bright: #FFD700;
  --gold-dark: #8B6914;
  --gold-pale: #F5E6B8;
  --gold-glow: rgba(201, 168, 76, 0.4);
  --dark-bg: #0A0804;
  --dark-surface: #110E07;
  --dark-card: #1A1508;
  --dark-border: #2A2010;
  --dark-elevated: #221C0C;
  --text-primary: #F5E6B8;
  --text-secondary: #B8A070;
  --text-muted: #6B5A35;
  --white: #FEFDF8;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
body::after {
  content: '';
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  top: var(--cy, 50%);
  left: var(--cx, 50%);
}

/* PARTICLE CANVAS */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
p { line-height: 1.7; }
a { text-decoration: none; color: inherit; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 40%, var(--gold-primary) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
  color: var(--dark-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-large { padding: 16px 40px; font-size: 0.95rem; }

/* ============ SECTION COMMON ============ */
section { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--gold-dark);
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 16px;
  background: rgba(201, 168, 76, 0.05);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 8, 4, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-emblem {
  font-size: 1.8rem;
  color: var(--gold-primary);
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}

.logo-emblem.large { font-size: 2.5rem; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold-primary); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  overflow: hidden;
}

.hero-bg-3d {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,105,20,0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold-dark);
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(201, 168, 76, 0.05);
  animation: fade-up 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; color: var(--text-primary); }
.title-line:nth-child(2) { animation-delay: 0.4s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  animation: fade-up 0.8s ease 1s forwards;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

/* 3D HERO CARD */
.hero-3d-card {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  opacity: 0;
  animation: fade-up 1s ease 0.5s forwards;
}

.card-3d {
  width: 320px;
  height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  cursor: none;
}

.card-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--dark-elevated) 0%, var(--dark-card) 50%, #0D0A04 100%);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(201,168,76,0.1);
}

.card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -50px; left: 50%;
  transform: translateX(-50%);
  filter: blur(30px);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.card-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  text-align: center;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 1;
}

.card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.card-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  animation: line-shimmer 2s ease-in-out infinite;
}

.card-lines span:nth-child(2) { animation-delay: 0.3s; width: 80%; margin: 0 auto; }
.card-lines span:nth-child(3) { animation-delay: 0.6s; width: 60%; margin: 0 auto; }

@keyframes line-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fade-up 1s ease 1.5s forwards;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ MARQUEE ============ */
.marquee-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--dark-card), var(--dark-elevated), var(--dark-card));
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  padding: 0 40px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-family: var(--font-body);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, var(--dark-elevated) 0%, var(--dark-card) 100%);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  transform-style: preserve-3d;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--gold-dark);
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}

.service-card-corner {
  position: absolute;
  bottom: 16px; right: 16px;
  font-size: 3rem;
  opacity: 0.05;
  font-family: var(--font-display);
  color: var(--gold-primary);
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-corner { opacity: 0.1; }

/* ============ ABOUT ============ */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-3d-scene {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  animation: ring-rotate 10s linear infinite;
}

.ring-1 {
  width: 300px; height: 300px;
  border-color: rgba(201,168,76,0.3);
  animation-duration: 12s;
}

.ring-2 {
  width: 220px; height: 220px;
  border-color: rgba(201,168,76,0.2);
  animation-duration: 8s;
  animation-direction: reverse;
}

.ring-3 {
  width: 140px; height: 140px;
  border-color: rgba(201,168,76,0.4);
  animation-duration: 5s;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg) rotateX(60deg); }
  to { transform: rotate(360deg) rotateX(60deg); }
}

.about-center-icon {
  font-size: 5rem;
  color: var(--gold-primary);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(201,168,76,0.5);
  animation: float-icon 4s ease-in-out infinite;
}

.about-content .section-badge { text-align: left; display: inline-block; }
.about-content .section-title { text-align: left; }

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 60px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, var(--dark-elevated), var(--dark-card));
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-dark);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
  flex-shrink: 0;
}

.client-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.client-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dark-border);
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--gold-primary);
  width: 20px;
  border-radius: 3px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.contact .section-header { position: relative; z-index: 1; }

.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 48px;
  background: linear-gradient(145deg, var(--dark-elevated), var(--dark-card));
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  min-width: 320px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transition: transform 0.4s ease;
  transform: scaleX(0);
}

.whatsapp-card::before { background: linear-gradient(90deg, transparent, #25D366, transparent); }
.instagram-card::before { background: linear-gradient(90deg, transparent, #E1306C, transparent); }

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.contact-card:hover::before { transform: scaleX(1); }

.whatsapp-card:hover { border-color: rgba(37, 211, 102, 0.3); }
.instagram-card:hover { border-color: rgba(225, 48, 108, 0.3); }

.whatsapp-card .contact-card-icon { color: #25D366; }
.instagram-card .contact-card-icon { color: #E1306C; }

.contact-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-card-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact-cta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.contact-note {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-note p {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 60px 60px 30px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

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

.social-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--dark-border);
  border-radius: 2px;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline { color: var(--gold-dark) !important; }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: white;
}

.float-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE NAV ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 8, 4, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold-primary); }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; }
  .hero-3d-card { display: none; }
  .about { grid-template-columns: 1fr; padding: 80px 40px; }
  .about-visual { display: none; }
  .navbar { padding: 20px 40px; }
  .navbar.scrolled { padding: 14px 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .services { padding: 80px 24px; }
  .about { padding: 80px 24px; }
  .testimonials { padding: 80px 24px; }
  .contact { padding: 80px 24px; }
  .footer { padding: 40px 24px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-card { min-width: unset; width: 100%; }
  .contact-cards { flex-direction: column; align-items: center; }
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
}