/* ===== NATION VIBE - Professional Matte UI ===== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Color Palette - Matte Premium */
  --primary-black: #0a0a0a;
  --primary-dark: #1a1a1a;
  --primary-medium: #2a2a2a;
  --secondary-dark: #3a3a3a;
  --secondary-medium: #4a4a4a;
  --secondary-light: #6a6a6a;
  --accent-gold: #d4af37;
  --accent-gold-light: #e8c547;
  --accent-gold-dark: #b8941f;
  --matte-white: #fafafa;
  --matte-cream: #f5f5f5;
  --matte-light: #eeeeee;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6a6a6a;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
  
  /* Shadows - Matte & Subtle */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--matte-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.5s ease-out;
}

.preloader-inner {
  text-align: center;
  color: white;
}

.logo-loader {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-text {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  animation: textFade 2s ease-in-out infinite;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--gradient-primary);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-emblem {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  transition: var(--transition-smooth);
}

.logo-emblem:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-primary);
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 0.1;
}

.element-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: floatElement 20s ease-in-out infinite;
}

.element-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation: floatElement 25s ease-in-out infinite reverse;
}

.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation: floatElement 30s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--accent-gold-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.title-line {
  display: block;
}

.title-line.highlight {
  color: var(--accent-gold-light);
  margin-left: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--primary-dark);
  border-color: white;
  transform: translateY(-3px);
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline.light {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline.light::before {
  background: var(--accent-gold);
}

.btn-outline.light:hover {
  color: white;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  z-index: 2;
}

.perfume-showcase {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.main-bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: mainFloat 8s ease-in-out infinite;
}

.bottle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottle-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-gold);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
  animation: glowPulse 4s ease-in-out infinite;
}

.orbiting-bottles {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbitRotate 60s linear infinite;
}

.orbit-bottle {
  position: absolute;
  width: 80px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.orbit-bottle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-bottle:hover {
  transform: scale(1.1);
  z-index: 10;
}

.orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.orbit-3 {
  bottom: 50px;
  left: 20px;
}

/* ===== SECTIONS ===== */
.featured-section,
.about-section,
.products-section,
.contact-section,
.about-content {
  padding: var(--section-padding);
  background: var(--matte-white);
}

.about-section,
.sustainability-section {
  background: var(--matte-cream);
}

.page-header {
  padding: 8rem 0 4rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.page-header-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-description {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.offer-banner.special {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.offer-icon {
  font-size: 2.5rem;
}

.offer-details h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.offer-details p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.offer-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: 24px;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  border: 2px solid var(--accent-gold);
  position: relative;
}

.product-card.featured::after {
  content: '★ BESTSELLER';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 5px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: rotate(45deg);
  z-index: 3;
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-view {
  background: white;
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.btn-view:hover {
  transform: scale(1.1);
  background: var(--accent-gold);
  color: white;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.product-badge.bestseller {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.product-badge.premium {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-tagline {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.note {
  background: var(--matte-light);
  color: var(--text-secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
}

.product-price {
  margin-bottom: 1rem;
}

.original-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.current-price {
  color: var(--accent-gold-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.save-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.btn-buy {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  margin-top: auto;
  box-shadow: var(--shadow-sm);
}

.btn-buy:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== ABOUT SECTION ===== */
.about-content {
  padding-right: 2rem;
}

.feature-list {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

/* ===== FEATURE CARDS ===== */
.features-section {
  margin: 4rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* ===== SUSTAINABILITY SECTION ===== */
.sustainability-section {
  padding: 4rem 0;
  margin: 4rem 0;
  background: var(--matte-cream);
  border-radius: 24px;
}

.sustainability-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}

.sustainability-point {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.sustainability-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sustainability-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
}

/* ===== TIMELINE ===== */
.process-section {
  margin: 4rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
}

.timeline-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CONTACT SECTION ===== */
.whatsapp-cta {
  margin-bottom: 4rem;
}

.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.whatsapp-icon {
  font-size: 4rem;
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.whatsapp-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.whatsapp-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-whatsapp-large {
  background: white;
  color: #25d366;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp-large:hover {
  color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
  margin-bottom: 4rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-bottom: 0.5rem;
}

.contact-time {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-btn {
  background: var(--accent-gold);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.contact-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  margin-bottom: 4rem;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
  margin: 0;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0 0.5rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-light);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent-gold);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-smooth);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.submit-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.form-note a {
  color: var(--accent-gold-dark);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ===== BUSINESS INFO ===== */
.business-info {
  margin-top: 4rem;
}

.business-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.business-header h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.business-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.business-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.business-highlights {
  margin: 2rem 0;
}

.business-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--matte-cream);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.business-highlight:hover {
  background: var(--matte-light);
  transform: translateX(5px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-content h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.highlight-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-padding);
  background: var(--gradient-primary);
  color: white;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-cta h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* ===== MODAL ===== */
.modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.modal-header {
  background: var(--matte-cream);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.btn-close {
  background: var(--accent-gold);
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

.modal-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.modal-details {
  padding-left: 1rem;
}

.modal-tagline {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.modal-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.modal-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-pricing {
  margin-bottom: 1.5rem;
}

.modal-pricing .original-price {
  font-size: 1.1rem;
}

.modal-pricing .current-price {
  font-size: 1.6rem;
}

.modal-info {
  background: var(--matte-cream);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.modal-info h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.modal-footer {
  background: var(--matte-cream);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes textFade {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.6; }
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes mainFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px) scale(1); }
  50% { transform: translate(-50%, -50%) translateY(-20px) scale(1.02); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-content {
    padding-right: 0;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .stats-grid {
    justify-content: center;
  }
  
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .business-highlight {
    justify-content: center;
    text-align: center;
  }
  
  .footer-links,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 1rem;
  }
  
  .navbar {
    padding: 0.8rem 0;
  }
  
  .hero-section {
    text-align: center;
    padding: 8rem 0 4rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .perfume-showcase {
    width: 300px;
    height: 300px;
  }
  
  .main-bottle {
    width: 160px;
    height: 220px;
  }
  
  .orbit-bottle {
    width: 60px;
    height: 90px;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .feature-list {
    gap: 1rem;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .modal-details {
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 576px) {
  .offer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .whatsapp-card {
    padding: 2rem 1.5rem;
  }
  
  .form-container,
  .business-card {
    padding: 2rem 1.5rem;
  }
  
  .business-highlight {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --border-light: rgba(0, 0, 0, 0.2);
    --border-medium: rgba(0, 0, 0, 0.3);
    --text-secondary: #333333;
    --text-muted: #555555;
  }
}

/* ===== FOCUS STYLES ===== */
.btn-primary:focus,
.btn-outline:focus,
.btn-buy:focus,
.btn-whatsapp:focus,
.contact-btn:focus {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .footer,
  .btn-whatsapp,
  .btn-buy,
  .btn-primary,
  .btn-outline {
    display: none !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }
  
  * {
    box-shadow: none !important;
  }
}

@keyframes fadeZoom {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.product-image img {
  animation: fadeZoom 4s ease-in-out infinite;
}
