@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&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-rose: #D4849A;
  --primary-mauve: #9B6B8C;
  --primary-cream: #F4EDE4;
  --primary-blush: #E8C4D4;
  --primary-plum: #6B4A5C;
  --accent-gold: #C9A882;
  --accent-lavender: #BFA4C8;
  --accent-coral: #E89F9C;
  --dark-purple: #4A3847;
  --light-nude: #F9F5F1;
  --soft-pink: #F5DDE6;
  --deep-burgundy: #8B3A5C;
  --warm-taupe: #B5968D;
  --text-primary: #2D2028;
  --text-secondary: #6B5660;
  --border-color: #E8D9DD;
  --shadow-soft: rgba(212, 132, 154, 0.15);
  --shadow-medium: rgba(107, 74, 92, 0.2);
  --shadow-strong: rgba(74, 56, 71, 0.3);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background-color: var(--light-nude);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--dark-purple);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-mauve), var(--primary-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.75rem;
  color: var(--primary-plum);
}

h3 {
  font-size: 2rem;
  color: var(--primary-mauve);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(180deg, rgba(249, 245, 241, 0.98) 0%, rgba(249, 245, 241, 0.95) 100%);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-soft);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  box-shadow: 0 6px 30px var(--shadow-medium);
  background: linear-gradient(180deg, rgba(244, 237, 228, 0.98) 0%, rgba(244, 237, 228, 0.96) 100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-mauve) 0%, var(--primary-rose) 50%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  position: relative;
  transition: transform 0.3s ease;
}

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

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

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

nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-lavender));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-mauve);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  color: var(--primary-rose);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-cream) 0%, var(--light-nude) 100%);
  box-shadow: -5px 0 30px var(--shadow-strong);
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow-y: auto;
}

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

.mobile-menu ul {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}

.mobile-menu a {
  font-size: 1.1rem;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(45, 32, 40, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.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 ease, height 0.6s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-mauve) 100%);
  color: white;
  box-shadow: 0 6px 25px var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-taupe) 100%);
  color: white;
  box-shadow: 0 6px 25px rgba(201, 168, 130, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(201, 168, 130, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-rose);
  color: var(--primary-mauve);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-mauve) 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--soft-pink) 100%);
  padding: 2rem;
  box-shadow: 0 -8px 40px var(--shadow-medium);
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary-rose);
}

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

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

.cookie-content p {
  flex: 1;
  min-width: 250px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.cookie-buttons .btn {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
}

form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 50px var(--shadow-soft);
  border: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background-color: var(--light-nude);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-rose);
  background-color: white;
  box-shadow: 0 5px 20px var(--shadow-soft);
  transform: translateY(-2px);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #E74C3C;
}

.form-group .error-message {
  color: #E74C3C;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-rose);
}

.form-checkbox label {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
}

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium);
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-mauve);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.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));
}

.accordion {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.accordion-header {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--soft-pink) 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-rose), var(--accent-lavender));
  transition: width 0.4s ease;
}

.accordion-header:hover::before {
  width: 5px;
}

.accordion-header:hover {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--primary-blush) 100%);
}

.accordion-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-mauve);
  position: relative;
  z-index: 1;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-rose);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

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

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

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

.accordion-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid var(--primary-cream);
  border-top: 5px solid var(--primary-rose);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 3rem auto;
}

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

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

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

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-rose) 0%, var(--primary-mauve) 100%);
  border-radius: 10px;
  border: 2px solid var(--primary-cream);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-mauve) 0%, var(--deep-burgundy) 100%);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-gold));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.hero-section {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--primary-cream) 50%, var(--light-nude) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-blush) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-lavender) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  position: relative;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px var(--shadow-medium);
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.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-rose);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  color: var(--primary-mauve);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-box {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 35px var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--primary-blush) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-box:hover::before {
  opacity: 0.1;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px var(--shadow-medium);
}

.feature-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-rose), var(--accent-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-box:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-mauve);
  position: relative;
  z-index: 1;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-soft);
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-lavender), var(--accent-gold));
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px var(--shadow-medium);
  border-color: var(--primary-rose);
}

.pricing-card.featured {
  border-color: var(--primary-rose);
  box-shadow: 0 15px 50px var(--shadow-medium);
}

.pricing-card.featured::before {
  height: 8px;
}

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

.pricing-title {
  font-size: 1.75rem;
  color: var(--primary-mauve);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-rose);
  font-family: 'Playfair Display', serif;
}

.pricing-price span {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--primary-rose);
  font-size: 1.2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
  color: white;
}

.badge-secondary {
  background: linear-gradient(135deg, var(--accent-gold), var(--warm-taupe));
  color: white;
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--soft-pink), var(--primary-cream));
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-soft);
  transition: all 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-rose);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  box-shadow: 0 8px 30px var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 132, 154, 0.9) 0%, rgba(155, 107, 140, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-mauve) 0%, var(--deep-burgundy) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  border-radius: 30px;
  margin: 4rem 0;
  box-shadow: 0 15px 60px var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  background: white;
  color: var(--primary-mauve);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section .btn:hover {
  background: var(--primary-cream);
  transform: translateY(-5px) scale(1.05);
}

footer {
  background: linear-gradient(180deg, var(--dark-purple) 0%, var(--primary-plum) 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

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

.footer-section h3 {
  color: var(--primary-blush);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-rose);
  padding-left: 5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-rose);
  transform: translateY(-5px) scale(1.1);
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  .header-content {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-section {
    padding: 4rem 0;
  }

  form {
    padding: 2rem 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cta-section {
    padding: 3rem 1.5rem;
    margin: 2rem 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .mobile-menu {
    width: 90%;
  }

  .card-content {
    padding: 1.5rem;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    font-size: 2.75rem;
  }

  .pricing-card {
    padding: 2.5rem 1.5rem;
  }

  .pricing-price {
    font-size: 2.75rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .section-title {
    margin-bottom: 2.5rem;
  }

  .testimonial {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

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

.tab-container {
  margin: 3rem 0;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  padding: 1rem 2rem;
  border: 2px solid var(--border-color);
  background: white;
  color: var(--text-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-button:hover {
  border-color: var(--primary-rose);
  color: var(--primary-mauve);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
  color: white;
  border-color: transparent;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.image-hover-zoom {
  overflow: hidden;
  border-radius: 15px;
}

.image-hover-zoom img {
  transition: transform 0.5s ease;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary-rose), var(--accent-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-rose), transparent);
  margin: 3rem 0;
  border: none;
}

.pulse {
  animation: pulse 2s infinite;
}

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

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

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

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}