@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gold: #D4AF37;
  --secondary-rose: #E8B4B8;
  --accent-purple: #8B5CF6;
  --deep-navy: #0F1419;
  --rich-charcoal: #1A1F2E;
  --soft-cream: #FFF8F0;
  --highlight-coral: #FF6B9D;
  --luxury-silver: #C0C0C0;
  --champagne: #F7E7CE;
  --midnight-blue: #191970;
  --success-green: #10B981;
  --warning-amber: #F59E0B;
  --error-red: #EF4444;
  --gradient-1: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-purple) 100%);
  --gradient-2: linear-gradient(135deg, var(--highlight-coral) 0%, var(--accent-purple) 100%);
  --gradient-3: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight-blue) 100%);
  --gradient-spotlight: radial-gradient(circle at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.1);
  --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.15);
  --shadow-lg: 0 8px 32px rgba(212, 175, 55, 0.2);
  --shadow-xl: 0 16px 48px rgba(212, 175, 55, 0.25);
  --shadow-glow: 0 0 24px rgba(212, 175, 55, 0.4);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--soft-cream);
  color: var(--rich-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--champagne);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 10px;
  border: 2px solid var(--champagne);
  transition: var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
  box-shadow: var(--shadow-glow);
}

::selection {
  background-color: var(--primary-gold);
  color: var(--soft-cream);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.header.scrolled {
  background: rgba(15, 20, 25, 0.95);
  border-bottom-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lg);
}

.header.scrolled .nav-link,
.header.scrolled .logo {
  color: var(--soft-cream);
}

.header.scrolled .nav-link:hover {
  color: var(--primary-gold);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.logo i {
  -webkit-text-fill-color: var(--primary-gold);
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--rich-charcoal);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-base);
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-gold);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 3px;
  transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--gradient-3);
  padding: 6rem 2rem 2rem;
  transition: var(--transition-slow);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.mobile-menu .nav-link {
  font-size: 1.25rem;
  color: var(--soft-cream);
  width: 100%;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu .nav-link:hover {
  color: var(--primary-gold);
  padding-left: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--soft-cream);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--gradient-2);
  color: var(--soft-cream);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--soft-cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.btn-icon {
  padding: 0.75rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.btn i {
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.btn:hover i {
  transform: scale(1.1);
}

.section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--gradient-3);
  color: var(--soft-cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--soft-cream);
}

.section-light {
  background: var(--soft-cream);
}

.section-accent {
  background: var(--champagne);
}

.section-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container-sm {
  max-width: 900px;
}

.container-lg {
  max-width: 1600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50px;
}

.section-title {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--rich-charcoal);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-description {
  color: var(--soft-cream);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--soft-cream);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 175, 55, 0.3);
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  color: var(--soft-cream);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.card-text {
  color: var(--rich-charcoal);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-glass .card-title,
.card-glass .card-text {
  color: var(--soft-cream);
}

.testimonial-card {
  background: var(--soft-cream);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--rich-charcoal);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.testimonial-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: var(--soft-cream);
  color: var(--rich-charcoal);
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--rich-charcoal);
  opacity: 0.5;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-size: 1.25rem;
  pointer-events: none;
}

.form-group.has-icon .form-input {
  padding-left: 3.5rem;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition-base);
}

.form-checkbox:hover,
.form-radio:hover {
  background: rgba(212, 175, 55, 0.05);
}

.form-checkbox input,
.form-radio input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-gold);
}

.form-error {
  color: var(--error-red);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-success {
  color: var(--success-green);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-help {
  font-size: 0.875rem;
  color: var(--rich-charcoal);
  opacity: 0.6;
  margin-top: 0.5rem;
}

.accordion {
  border-radius: 16px;
  overflow: hidden;
  background: var(--soft-cream);
  box-shadow: var(--shadow-md);
}

.accordion-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-base);
  background: var(--soft-cream);
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.05);
}

.accordion-header.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0;
}

.accordion-header.active .accordion-title {
  color: var(--primary-gold);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 0 2rem 2rem 2rem;
  color: var(--rich-charcoal);
  line-height: 1.8;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--gradient-3);
  color: var(--soft-cream);
  padding: 2rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: var(--transition-slow);
  border-top: 3px solid var(--primary-gold);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  color: var(--soft-cream);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text h4 i {
  color: var(--primary-gold);
}

.cookie-text p {
  opacity: 0.9;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: var(--secondary-rose);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 20, 25, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--soft-cream);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: var(--transition-base);
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.modal-close:hover {
  background: var(--primary-gold);
  color: var(--soft-cream);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-base);
}

.badge-primary {
  background: var(--gradient-1);
  color: var(--soft-cream);
}

.badge-secondary {
  background: var(--gradient-2);
  color: var(--soft-cream);
}

.badge-success {
  background: var(--success-green);
  color: white;
}

.badge-warning {
  background: var(--warning-amber);
  color: white;
}

.badge-error {
  background: var(--error-red);
  color: white;
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

.badge:hover {
  transform: scale(1.05);
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.loader-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dots-loader {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.dots-loader span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-gold);
  animation: bounce 1.4s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) {
  animation-delay: -0.32s;
}

.dots-loader span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-in {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rotate-in {
  animation: rotateIn 0.6s ease-out;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

.spotlight-effect {
  position: relative;
  overflow: hidden;
}

.spotlight-effect::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-spotlight);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

.spotlight-effect:hover::before {
  opacity: 1;
  animation: spotlight-rotate 3s linear infinite;
}

@keyframes spotlight-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.parallax {
  transition: transform 0.3s ease-out;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shadow {
  text-shadow: 2px 4px 12px rgba(212, 175, 55, 0.3);
}

.hover-lift {
  transition: var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: var(--transition-base);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.image-overlay img {
  transition: var(--transition-slow);
}

.image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.image-overlay:hover::after {
  opacity: 1;
}

.divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 3rem 0;
}

.divider-gradient {
  height: 2px;
  background: var(--gradient-1);
  margin: 3rem 0;
  border-radius: 2px;
}

.stats-counter {
  text-align: center;
}

.stats-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stats-label {
  font-size: 1rem;
  color: var(--rich-charcoal);
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-dark .stats-label {
  color: var(--soft-cream);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: var(--soft-cream);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border: 4px solid var(--soft-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-gold);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.price-card {
  background: var(--soft-cream);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-gold);
}

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

.price-card.featured {
  background: var(--gradient-3);
  color: var(--soft-cream);
  transform: scale(1.05);
  border-color: var(--primary-gold);
}

.price-card.featured::before {
  transform: scaleX(1);
}

.price-card.featured .price-title,
.price-card.featured .price-amount,
.price-card.featured .price-feature {
  color: var(--soft-cream);
}

.price-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-1);
  color: var(--soft-cream);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.price-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--rich-charcoal);
}

.price-feature i {
  color: var(--primary-gold);
  font-size: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  font-size: 1.25rem;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--gradient-1);
  color: var(--soft-cream);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.footer {
  background: var(--gradient-3);
  color: var(--soft-cream);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--soft-cream);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--soft-cream);
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition-base);
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-gold);
  padding-left: 0.5rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.875rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .header-container {
    padding: 1rem 1.5rem;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 3rem;
  }
  
  .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .modal {
    padding: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .accordion-header,
  .accordion-body {
    padding: 1.25rem 1.5rem;
  }
  
  .modal {
    padding: 1.5rem;
  }
  
  .cookie-banner {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .header,
  .mobile-menu,
  .cookie-banner,
  .back-to-top,
  .modal-overlay {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}