/*
   Ultra Premium styles.css for Paz Ben Sela Yoga & Healing Arts
   Apple-inspired design with sophisticated gradients
*/

/* ===== CSS VARIABLES ===== */
:root {
  /* Ultra Premium Color Palette - Refined Gradients */
  --primary: #7a9b8e;
  --primary-light: #a8c5b8;
  --primary-dark: #4a6b5e;
  --accent: #c8a882;
  --accent-light: #e8d4b8;
  --accent-dark: #9d7f5f;
  --text-dark: #1d1d1f;
  --text-light: #ffffff;
  --text-muted: #86868b;
  --background: #fafafa;
  --background-alt: #f5f5f7;
  --card-bg: #ffffff;
  --footer-bg: #1d1d1f;
  --overlay: rgba(0, 0, 0, 0.4);

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #a8c5b8 0%, #7a9b8e 100%);
  --gradient-accent: linear-gradient(135deg, #e8d4b8 0%, #c8a882 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
  --gradient-premium: linear-gradient(135deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(168, 197, 184, 0.15) 0%, transparent 50%),
                   radial-gradient(at 100% 100%, rgba(200, 168, 130, 0.15) 0%, transparent 50%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Typography */
  --font-main: 'Assistant', 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Rubik', 'Assistant', sans-serif;
  --font-accent: 'Spectral', 'Georgia', serif;

  /* Spacing Scale */
  --space-3xs: 0.125rem;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-micro: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Container Width */
  --container-width: 1200px;
  --container-narrow: 800px;

  /* Shadows - Ultra Refined */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 8px 32px rgba(122, 155, 142, 0.12);
}

/* Dark Mode - Premium */
@media (prefers-color-scheme: dark) {
  :root {
    --primary: #8fb5a4;
    --primary-light: #b5d4c5;
    --primary-dark: #5a8573;
    --accent: #d4b894;
    --accent-light: #e8d4b8;
    --accent-dark: #b89968;
    --text-dark: #f5f5f7;
    --text-light: #f5f5f7;
    --text-muted: #86868b;
    --background: #000000;
    --background-alt: #1d1d1f;
    --card-bg: #1d1d1f;
    --footer-bg: #000000;
    --overlay: rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #5a8573 0%, #8fb5a4 100%);
    --gradient-accent: linear-gradient(135deg, #b89968 0%, #d4b894 100%);
    --gradient-card: linear-gradient(145deg, #1d1d1f 0%, #2d2d2f 100%);
    --gradient-premium: linear-gradient(135deg, #1d1d1f 0%, #000000 50%, #1d1d1f 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(143, 181, 164, 0.1) 0%, transparent 50%),
                     radial-gradient(at 100% 100%, rgba(212, 184, 148, 0.1) 0%, transparent 50%);
    --glass-bg: rgba(29, 29, 31, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-premium: 0 8px 32px rgba(143, 181, 164, 0.15);
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--gradient-premium);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  transition: background-color var(--transition-medium);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

a:hover {
  color: var(--primary-dark);
}

section {
  padding: var(--space-4xl) 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(122, 155, 142, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  padding-bottom: var(--space-lg);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(200, 168, 130, 0.3);
}

#contact h2::after {
  display: none;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-xl);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--glass-bg);
  color: var(--text-dark);
  padding: var(--space-lg) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), var(--shadow-sm);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--glass-border);
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row
}

body.menu-open header {
  transform: translateY(0) !important;
}

header.scrolled {
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-md);
}

body.menu-open header.scrolled {
  padding: var(--space-lg) 0;
}

@media (prefers-color-scheme: dark) {
  header {
    background: rgba(29, 29, 31, 0.8);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
}

header span {
  margin: 0;
  padding: 0 var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition-fast);
  font-weight: 700;
}

header span:hover {
  opacity: 0.8;
  filter: brightness(1.1);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  margin: 0;
  padding: 0;
  padding-inline-end: var(--space-lg);
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  display: inline-block;
  transition: color var(--transition-fast);
}

nav a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  right: 0;
  background: var(--gradient-accent);
  transition: width var(--transition-medium);
  box-shadow: 0 2px 8px rgba(200, 168, 130, 0.4);
}

nav a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav a:hover::before {
  width: 100%;
}

/* Mobile Menu Button - Enhanced Animation */
.menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1001;
}

.menu-button .fa-bars,
.menu-button .fa-times {
  position: absolute;
  transition: all var(--transition-medium);
}

.menu-button .fa-bars {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-button .fa-times {
  opacity: 1;
  transform: rotate(90deg) scale(0.8);
}

nav.active ~ .header-content .menu-button .fa-bars {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

nav.active ~ .header-content .menu-button .fa-times {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-button:hover {
  background: linear-gradient(135deg, rgba(122, 155, 142, 0.1) 0%, rgba(122, 155, 142, 0.15) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(122, 155, 142, 0.15);
}

.menu-button:active {
  transform: scale(0.95);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 85vh;
  position: relative;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/gallery/pigeon-2.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: var(--space-2xl) var(--space-lg);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: var(--space-xl);
  color: var(--text-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  opacity: 0.95;
  max-width: none;
}

.hero h1::after {
  display: none;
}

/* ===== BUTTONS - ULTRA PREMIUM DESIGN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border: none;
  padding: var(--space-md) var(--space-2xl);
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  letter-spacing: -0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(200, 168, 130, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(200, 168, 130, 0.35);
}

.btn-secondary {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(122, 155, 142, 0.2);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
}

.btn-tertiary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(122, 155, 142, 0.25);
}

.btn-tertiary:hover {
  box-shadow: 0 8px 24px rgba(122, 155, 142, 0.35);
}

/* ===== ABOUT SECTION ===== */
#about .container {
  max-width: var(--container-width);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: none;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: 1px solid rgba(122, 155, 142, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 155, 142, 0.3) 0%, rgba(200, 168, 130, 0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 1;
}

.about-image:hover::before {
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.about-image:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(122, 155, 142, 0.2);
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-grid a {
  display: block;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid rgba(122, 155, 142, 0.1);
}

.gallery-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 155, 142, 0.4) 0%, rgba(200, 168, 130, 0.3) 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-grid a:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(122, 155, 142, 0.2);
}

.gallery-grid a:hover::after {
  opacity: 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* ===== CARDS - ULTRA PREMIUM WITH GRADIENTS ===== */
.card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(122, 155, 142, 0.08);
  overflow: hidden;
}

/* Premium gradient accent that reveals on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(122, 155, 142, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-premium);
  border-color: rgba(122, 155, 142, 0.15);
}

.card i {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-medium);
  filter: drop-shadow(0 2px 4px rgba(122, 155, 142, 0.2));
}

.card:hover i {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(200, 168, 130, 0.3));
}

.card h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--primary);
}

.card ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.card li {
  margin-bottom: var(--space-sm);
  padding-right: var(--space-lg);
  position: relative;
}

.card li::before {
  content: '\f053';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 0.8rem;
}

.card a:not(.btn) {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: var(--space-sm) 0;
  transition: all var(--transition-fast);
  position: relative;
}

.card a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-medium);
}

.card a:hover {
  gap: var(--space-sm);
}

.card a:hover::after {
  width: 100%;
}

/* ===== CONTACT SECTION - ULTRA PREMIUM ===== */
#contact {
  background: linear-gradient(135deg, #2d3f3c 0%, #1a2624 50%, #0a0f0e 100%);
  color: var(--text-light);
  padding: var(--space-4xl) var(--space-lg);
  border-radius: var(--radius-xl);
  margin: var(--space-4xl) var(--space-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(122, 155, 142, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(200, 168, 130, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

#contact .container {
  max-width: var(--container-width);
}

#contact h2 {
  color: var(--text-light);
  margin-bottom: var(--space-3xl);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

/* Only clickable items get hover pointer */
a.contact-item {
  cursor: pointer;
}

div.contact-item {
  cursor: default;
}

a.contact-item:hover::before {
  opacity: 1;
}

a.contact-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: white;
}

.contact-item i {
  font-size: 2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 212, 184, 0.2) 0%, rgba(200, 168, 130, 0.2) 100%);
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
  position: relative;
}

.contact-item i::before {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

a.contact-item:hover i {
  box-shadow: 0 8px 24px rgba(200, 168, 130, 0.3);
}

.contact-item p {
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.contact-item span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Contact Actions (Social + WhatsApp) */
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.social-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}

.social-links a {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
  text-decoration: none;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-medium);
  border-radius: var(--radius-full);
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(200, 168, 130, 0.4);
}

.social-links a i {
  position: relative;
  z-index: 1;
}

.whatsapp-button {
  display: inline-block;
  transition: transform var(--transition-medium);
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
}

.whatsapp-button img {
  max-width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
}

.whatsapp-button:hover img {
  box-shadow: 0 12px 32px rgba(200, 168, 130, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  #contact {
    padding: var(--space-3xl) var(--space-lg);
  }

  .whatsapp-button img {
    max-width: 180px;
  }
}

/* ===== FOOTER - ULTRA PREMIUM ===== */
footer {
  background: linear-gradient(180deg, #1d1d1f 0%, #000000 100%);
  color: var(--text-light);
  margin-top: var(--space-4xl);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg) var(--space-2xl);
}

.footer-logo h3 {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.footer-logo p {
  color: var(--accent-light);
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background: var(--gradient-accent);
  transition: width var(--transition-medium);
  box-shadow: 0 2px 4px rgba(200, 168, 130, 0.3);
}

.footer-links a:hover {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: var(--space-sm);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.footer-bottom p {
  margin: var(--space-xs) 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.developer-info {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.developer-info:hover {
  opacity: 1;
}

.developer-link {
  color: var(--accent-light);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.developer-link:hover {
  color: var(--accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.15s; }
section:nth-child(4) { animation-delay: 0.2s; }
section:nth-child(5) { animation-delay: 0.25s; }

section.animate-in {
  opacity: 1;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(200, 168, 130, 0.2);
}

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: var(--space-md);
  z-index: 10000;
  border-radius: 0 0 var(--radius-md) 0;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  border: 3px solid var(--background);
  transition: all var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
  border-width: 2px;
}

::selection {
  background: var(--gradient-accent);
  color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  section {
    padding: var(--space-3xl) 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  header {
  overflow: hidden;
  }

  .header-content {
    align-items: center;
    min-height: 60px;
  }

  .menu-button {
    display: flex;
    z-index: 1002;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--glass-bg);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    display: none;
    padding-top: 80px;
  }

  @media (prefers-color-scheme: dark) {
    nav {
      background: rgba(0, 0, 0, 0.9);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      backdrop-filter: saturate(180%) blur(20px);
    }
  }

  nav.active {
    transform: translateX(0);
    box-shadow: var(--shadow-xl);
    display: flex;
  }

  body.menu-open header {
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  overflow: unset;
  }


  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
    padding: 0;
    align-items: center;
  }

  nav li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(122, 155, 142, 0.1);
  }

  nav a {
    display: block;
    padding: var(--space-lg);
    width: 100%;
    font-size: 1.125rem;
  }

  nav a::before {
    bottom: 0;
    height: 2px;
  }

  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .footer-logo p {
  margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  #contact {
    margin: var(--space-xl) var(--space-md);
    padding: var(--space-3xl) var(--space-lg);
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    min-height: 60vh;
  }

  section {
    padding: var(--space-xl) 0;
  }

  .card {
    padding: var(--space-lg);
  }

  .header-content {
    padding: 0 var(--space-md);
  }

  nav ul {
    max-width: 100%;
  }

  .whatsapp-button img {
    max-width: 180px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-content {
    padding: var(--space-2xl) var(--space-md);
  }

  .footer-bottom {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--gradient-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-medium);
}

#loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.js-loading {
  overflow: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  position: relative;
}

.loader .lotus {
  width: 16px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  position: absolute;
  animation: blooming 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(122, 155, 142, 0.4);
}

.loader .lotus:nth-child(1) { transform: rotate(0deg) translate(25px); animation-delay: 0s; }
.loader .lotus:nth-child(2) { transform: rotate(45deg) translate(25px); animation-delay: -0.15s; }
.loader .lotus:nth-child(3) { transform: rotate(90deg) translate(25px); animation-delay: -0.3s; }
.loader .lotus:nth-child(4) { transform: rotate(135deg) translate(25px); animation-delay: -0.45s; }
.loader .lotus:nth-child(5) { transform: rotate(180deg) translate(25px); animation-delay: -0.6s; }
.loader .lotus:nth-child(6) { transform: rotate(225deg) translate(25px); animation-delay: -0.75s; }
.loader .lotus:nth-child(7) { transform: rotate(270deg) translate(25px); animation-delay: -0.9s; }
.loader .lotus:nth-child(8) { transform: rotate(315deg) translate(25px); animation-delay: -1.05s; }

@keyframes blooming {
  0%, 100% {
    opacity: 0.5;
    transform: translate(25px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(20px) scale(1);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  header, footer, .hero, nav, .menu-button {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  section {
    page-break-inside: avoid;
    padding: 1cm 0;
  }

  .card, .about-image {
    box-shadow: none;
    border: 0.5px solid #e0e0e0;
  }

  h2::after {
    display: none;
  }
}