/* ============================================
   KaSamana - Premium Design System
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --champagne: #C5A467;
  --champagne-dark: #A8894F;
  --champagne-light: #D4BA7A;
  --cream: #FAF8F5;
  --sand: #F5F0E8;
  --charcoal: #4A4A4A;
  --gray-soft: #8A8A8A;
  --border-light: #E8E2D9;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection { background: rgba(197,164,103,0.3); color: var(--charcoal); }

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

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-light));
  z-index: 9999; transition: width 0.1s;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 24px 0;
  transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 14px 0;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter 0.5s;
  filter: brightness(0) invert(1);
}
.navbar.scrolled .logo-img { filter: none; }
.logo-img--footer { filter: none; height: 54px; }

.nav-links { display: none; align-items: center; gap: 40px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 500;
  color: rgba(255,255,255,0.85); position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -2px; left: 50%; width: 0; height: 1px;
  background: var(--champagne);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--champagne); }
.navbar.scrolled .nav-link { color: rgba(74,74,74,0.8); }

.nav-link--active { color: var(--champagne) !important; }
.nav-link--active::after { width: 100%; }

.nav-cta {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600; padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.4); color: white;
  transition: all 0.5s; position: relative; overflow: hidden;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-cta {
  border-color: var(--champagne); color: var(--champagne);
}
.navbar.scrolled .nav-cta:hover { background: var(--champagne); color: white; }

/* Language Switcher */
.lang-switch { margin-left: 12px; display: flex; align-items: center; gap: 0; border: 1px solid rgba(255,255,255,0.4); border-radius: 20px; padding: 2px 4px; }
.lang-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 10px; border: none; background: none;
  color: rgba(255,255,255,0.55); border-radius: 16px;
  transition: all 0.3s; text-transform: uppercase; text-decoration: none;
}
.lang-btn--active { color: white; font-weight: 700; background: rgba(255,255,255,0.15); }
.lang-btn:hover { color: white; }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 10px; font-weight: 300; margin: 0 1px; }
.navbar.scrolled .lang-switch { border-color: var(--champagne); }
.navbar.scrolled .lang-btn { color: rgba(0,0,0,0.35); }
.navbar.scrolled .lang-btn--active { color: var(--champagne); background: rgba(197,164,103,0.1); }
.navbar.scrolled .lang-btn:hover { color: var(--champagne); }
.navbar.scrolled .lang-sep { color: rgba(0,0,0,0.2); }

/* Mobile lang switcher */
.mobile-lang { display: flex; align-items: center; gap: 0; border: 1px solid rgba(255,255,255,0.4); border-radius: 20px; padding: 2px 4px; }
.lang-btn--mobile { display: inline-flex; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; padding: 4px 10px; border: none; background: none; color: rgba(255,255,255,0.55); border-radius: 16px; transition: all 0.3s; text-transform: uppercase; text-decoration: none; }
.lang-btn--mobile.lang-btn--active { color: white; font-weight: 700; background: rgba(255,255,255,0.15); }
.lang-sep--mobile { color: rgba(255,255,255,0.3); font-size: 10px; font-weight: 300; margin: 0 1px; display: inline; }
.navbar.scrolled .mobile-lang { border-color: var(--champagne); }
.navbar.scrolled .lang-btn--mobile { color: rgba(0,0,0,0.35); }
.navbar.scrolled .lang-btn--mobile.lang-btn--active { color: var(--champagne); background: rgba(197,164,103,0.1); }
@media (min-width: 1024px) { .mobile-lang { display: none; } }

/* Mobile Right */
.mobile-right {
  display: flex; align-items: center; gap: 12px;
}
@media (min-width: 1024px) { .mobile-right { display: none; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 6px;
  width: 28px; cursor: pointer; z-index: 110;
  background: none; border: none; padding: 4px 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
@media (max-width: 1023px) { .mobile-right .hamburger { display: flex; } }
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: white; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--charcoal); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--charcoal); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu nav { text-align: center; }
.mobile-menu a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--charcoal);
  padding: 12px 0; transition: color 0.3s; letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--champagne); }
.mobile-menu-contact {
  margin-top: 48px; font-size: 14px;
  color: var(--gray-soft); letter-spacing: 0.1em;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(74,74,74,0.7), rgba(74,74,74,0.4), rgba(74,74,74,0.8));
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 800px;
}
.hero-line {
  width: 64px; height: 1px; background: var(--champagne);
  margin: 0 auto 32px; transform: scaleX(0);
}
.hero-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--champagne); margin-bottom: 24px; font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 300;
  color: white; margin-bottom: 32px; letter-spacing: -0.01em;
  line-height: 1.05;
}
.hero h1 em { font-weight: 500; font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 48px; line-height: 1.7;
}
.hero-ctas { display: flex; flex-direction: column; gap: 16px; align-items: center; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollBounce 2s infinite ease-in-out;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600; padding: 16px 40px;
  transition: all 0.5s; text-align: center;
  position: relative; overflow: hidden;
}
.btn::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.6s;
}
.btn:hover::before { left: 100%; }

.btn--primary { background: var(--champagne); color: white; }
.btn--primary:hover { background: var(--champagne-dark); }
.btn--outline { border: 1px solid rgba(255,255,255,0.25); color: white; }
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--outline-gold { border: 1px solid rgba(197,164,103,0.3); color: var(--champagne); }
.btn--outline-gold:hover { background: rgba(197,164,103,0.05); }

/* ===== SECTION STYLES ===== */
.section { padding: 112px 0; }
@media (min-width: 768px) { .section { padding: 144px 0; } }

.section-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--champagne); margin-bottom: 16px; font-weight: 500;
  text-align: center;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300;
  text-align: center; margin-bottom: 24px;
}
.section-title em { font-weight: 500; font-style: italic; }
.section-line {
  width: 48px; height: 1px; background: var(--champagne);
  margin: 0 auto 24px;
}
.section-subtitle {
  text-align: center; color: var(--gray-soft);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.bg-sand { background: var(--sand); }

/* ===== VALUE CARDS ===== */
.values-grid {
  display: grid; gap: 32px; margin-top: 80px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.value-card { text-align: center; }
.value-icon {
  color: var(--champagne); margin-bottom: 24px;
  font-size: 40px; transition: transform 0.5s;
}
.value-card:hover .value-icon { transform: scale(1.1); }
.value-card h3 {
  font-size: 1.35rem; font-weight: 500; margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.value-card p { color: var(--gray-soft); font-size: 14px; line-height: 1.7; }

/* ===== STATS ===== */
.stats-bar {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0; margin-top: 96px;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--champagne); margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-soft); font-weight: 500;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; gap: 24px; margin-top: 80px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.service-card {
  background: var(--white); padding: 40px;
  border: 1px solid var(--border-light);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover {
  border-color: rgba(197,164,103,0.4);
  transform: perspective(1000px) rotateX(-1deg) rotateY(1deg) translateY(-8px);
  box-shadow: 0 25px 60px rgba(197,164,103,0.12), 0 8px 20px rgba(0,0,0,0.06);
}
.service-icon {
  width: 80px; height: 80px; margin-bottom: 20px;
  display: block; transition: transform 0.5s;
}
.service-icon img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 {
  font-size: 1.35rem; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.02em;
}
.service-card > p { color: var(--gray-soft); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.service-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(74,74,74,0.7); padding: 4px 0;
}
.service-features li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--champagne); flex-shrink: 0;
}
.service-card-cta {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border-light);
}
.service-card-cta span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--champagne); font-weight: 500;
  transition: letter-spacing 0.5s;
}
.service-card:hover .service-card-cta span { letter-spacing: 0.2em; }

/* ===== PARALLAX SECTION ===== */
.parallax-section {
  position: relative; padding: 144px 0;
  overflow: hidden; background: var(--charcoal);
}
@media (min-width: 768px) { .parallax-section { padding: 192px 0; } }
.parallax-bg {
  position: absolute; inset: 0; opacity: 0.2;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
@media (pointer: coarse) { .parallax-bg { background-attachment: scroll; } }
.parallax-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.parallax-section .section-tag { color: rgba(197,164,103,0.8); }
.parallax-section h2 {
  color: white;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 32px;
}
.parallax-section h2 em {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-light), var(--champagne));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 500; font-style: italic;
}
.parallax-section p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.parallax-line-top, .parallax-line-bottom {
  position: absolute; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,164,103,0.2), transparent);
}
.parallax-line-top { top: 0; }
.parallax-line-bottom { bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-list { margin-top: 80px; }
.testimonial {
  max-width: 640px; margin-bottom: 80px;
}
.testimonial:nth-child(odd) { margin-right: auto; text-align: left; }
.testimonial:nth-child(even) { margin-left: auto; text-align: right; }
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; color: rgba(197,164,103,0.3); line-height: 1;
  margin-bottom: 8px;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 300;
  font-style: italic; line-height: 1.6; margin-bottom: 24px;
  color: var(--charcoal);
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial:nth-child(even) .testimonial-author { justify-content: flex-end; }
.testimonial-author-line { width: 32px; height: 1px; background: var(--champagne); }
.testimonial-author-name { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
.testimonial-author-role { font-size: 11px; color: var(--gray-soft); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== CTA FINAL ===== */
.cta-section {
  position: relative; padding: 128px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--sand), #EDE6D9);
}
@media (min-width: 768px) { .cta-section { padding: 176px 0; } }
.cta-glow-1, .cta-glow-2 {
  position: absolute; border-radius: 50%;
  background: rgba(197,164,103,0.05); filter: blur(60px);
}
.cta-glow-1 { top: 80px; right: 15%; width: 256px; height: 256px; }
.cta-glow-2 { bottom: 40px; left: 10%; width: 320px; height: 320px; }
.cta-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 640px; margin: 0 auto; padding: 0 24px;
}
.cta-note {
  margin-top: 32px; font-size: 11px; color: rgba(138,138,138,0.6);
  letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); }
.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,164,103,0.4), transparent);
}
.footer-inner { padding: 80px 0; }
.footer-grid {
  display: grid; gap: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 3fr; gap: 32px; } }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; max-width: 360px; margin: 24px 0 32px; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3); transition: color 0.3s;
}
.footer-social a:hover { color: var(--champagne); }
.footer-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--champagne); font-weight: 500; margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4); font-size: 14px;
  padding: 4px 0; transition: color 0.3s;
}
.footer-col a:hover { color: white; }
.footer-contact { margin-top: 32px; }
.footer-contact a { display: block; color: rgba(255,255,255,0.4); font-size: 14px; padding: 4px 0; }
.footer-contact a:hover { color: white; }
.footer-bottom {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 12px; letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.2); font-size: 12px; letter-spacing: 0.05em; }
.footer-legal a:hover { color: rgba(255,255,255,0.4); }
.footer-credit {
  margin-top: 24px; text-align: center;
  font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 0.1em;
}
.footer-credit a { color: rgba(197,164,103,0.4); transition: color 0.3s; }
.footer-credit a:hover { color: var(--champagne); }

/* ===== KIT DIGITAL STRIP ===== */
.kit-digital-strip {
  background: var(--white); text-align: center;
  padding: 28px 0;
}
.kit-digital-strip .container {
  display: flex; justify-content: center; align-items: center;
}
.kit-digital-strip img {
  display: inline-block; max-width: 480px; width: 100%;
  height: auto; opacity: 0.9; transition: opacity 0.3s;
}
.kit-digital-strip img:hover { opacity: 1; }

/* ===== PRIVACY CHECKBOX ===== */
.form-group--checkbox { margin-top: 8px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 13px; color: var(--gray-soft);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--champagne);
  cursor: pointer;
}
.checkbox-label span a:hover { color: var(--champagne-dark); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: var(--champagne); color: white; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(197,164,103,0.4);
  transition: all 0.5s; text-decoration: none;
  opacity: 0; transform: scale(0);
  animation: whatsappEntry 0.5s 2s forwards;
}
.whatsapp-btn:hover {
  box-shadow: 0 8px 32px rgba(197,164,103,0.6);
  transform: scale(1.05);
}
.whatsapp-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s infinite ease-in-out;
}
.whatsapp-icon svg { width: 24px; height: 24px; fill: white; }
.whatsapp-text {
  overflow: hidden; white-space: nowrap;
  max-width: 0; opacity: 0;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; transition: all 0.3s; padding-right: 0;
}
.whatsapp-btn:hover .whatsapp-text {
  max-width: 120px; opacity: 1; padding-right: 20px;
}

@keyframes whatsappEntry { to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ===== HERO PAGE (inner pages) ===== */
.hero-page {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
@media (min-width: 768px) { .hero-page { min-height: 60vh; padding-top: 100px; } }

/* ===== ANIMATE ON SCROLL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0);
  transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 560px; margin: 48px auto 0; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gray-soft);
  font-weight: 500; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 0; font-size: 15px;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  color: var(--charcoal); background: transparent;
  border: none; border-bottom: 1px solid var(--border-light);
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-bottom-color: var(--champagne);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none;
  }
}
