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

:root {
  --primary-coral: #FF6B6B;
  --primary-sunset: #FFA07A;
  --secondary-ocean: #4ECDC4;
  --secondary-deep: #1A535C;
  --accent-sand: #F7DC6F;
  --accent-palm: #52C78B;
  --neutral-cloud: #F8F9FA;
  --neutral-stone: #495057;
  --neutral-night: #212529;
  --gradient-tropical: linear-gradient(135deg, #FF6B6B 0%, #FFA07A 50%, #4ECDC4 100%);
  --gradient-sunset: linear-gradient(to right, #FF6B6B, #FFA07A, #F7DC6F);
  --gradient-ocean: linear-gradient(180deg, #4ECDC4 0%, #1A535C 100%);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.16);
  --shadow-coral: 0 4px 15px rgba(255, 107, 107, 0.3);
  --shadow-ocean: 0 4px 15px rgba(78, 205, 196, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-stone);
  background-color: var(--neutral-cloud);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-tropical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -1px;
  transition: var(--transition-smooth);
}

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

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

.nav-link {
  color: var(--neutral-stone);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

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

.nav-link:hover {
  color: var(--primary-coral);
}

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

.nav-link.active {
  color: var(--primary-coral);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-coral);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg);
}

.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

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

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

.btn-primary {
  background: var(--gradient-sunset);
  color: white;
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: var(--gradient-ocean);
  color: white;
  box-shadow: var(--shadow-ocean);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-coral);
  border: 2px solid var(--primary-coral);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-coral);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

.btn-ghost {
  background: transparent;
  color: var(--neutral-stone);
  box-shadow: none;
  padding: 0.75rem 1.5rem;
}

.btn-ghost:hover {
  background: var(--neutral-cloud);
  color: var(--primary-coral);
}

.btn i {
  position: relative;
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.5s ease-out;
  border-left: 4px solid var(--primary-coral);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-content p {
  margin: 0;
  color: var(--neutral-stone);
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-night);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-smooth);
  background: white;
  color: var(--neutral-stone);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

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

.form-error {
  color: #DC3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

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

.form-input.error ~ .form-error,
.form-textarea.error ~ .form-error,
.form-select.error ~ .form-error {
  display: block;
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-sunset);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: var(--shadow-medium);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-night);
}

.card-text {
  color: var(--neutral-stone);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: var(--neutral-cloud);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E9ECEF;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.accordion {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-item {
  border-bottom: 1px solid #E9ECEF;
}

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

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--neutral-night);
  transition: var(--transition-smooth);
  font-family: 'Playfair Display', serif;
}

.accordion-header:hover {
  background: var(--neutral-cloud);
  color: var(--primary-coral);
}

.accordion-icon {
  transition: var(--transition-smooth);
  font-size: 1.25rem;
  color: var(--primary-coral);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--neutral-stone);
  line-height: 1.7;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--neutral-cloud);
  border-top: 4px solid var(--primary-coral);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

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

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-tropical);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-coral);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-tropical);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

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

.section {
  padding: 5rem 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--neutral-stone);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--gradient-sunset);
  color: white;
}

.badge-secondary {
  background: var(--gradient-ocean);
  color: white;
}

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

.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--gradient-tropical);
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-coral);
  transition: var(--transition-bounce);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-coral);
  opacity: 0.3;
}

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

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

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

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

.testimonial-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--neutral-night);
}

.testimonial-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-stone);
}

.rating {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-sand);
  font-size: 1rem;
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  font-family: 'Playfair Display', serif;
}

.price-tag span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--neutral-stone);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neutral-stone);
  border-bottom: 1px solid #E9ECEF;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent-palm);
  font-size: 1.25rem;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-tropical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--neutral-stone);
  margin-top: 0.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 1;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 107, 107, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

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

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

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

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

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--primary-coral);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  box-shadow: var(--shadow-medium);
}

.footer {
  background: var(--neutral-night);
  color: white;
  padding: 4rem 2rem 2rem 2rem;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-coral);
  transform: translateX(5px);
}

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

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-coral);
  transform: translateY(-3px);
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--neutral-stone);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--neutral-cloud);
  color: var(--primary-coral);
  transform: rotate(90deg);
}

.tab-navigation {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #E9ECEF;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--neutral-stone);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  font-family: 'Poppins', sans-serif;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-sunset);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.tab-button:hover {
  color: var(--primary-coral);
}

.tab-button.active {
  color: var(--primary-coral);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

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

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background: var(--neutral-night);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: var(--transition-smooth);
  font-size: 0.875rem;
  white-space: nowrap;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E9ECEF;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-sunset);
  transition: width 1s ease-out;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-success {
  background: #D4EDDA;
  color: #155724;
  border-left: 4px solid var(--accent-palm);
}

.alert-warning {
  background: #FFF3CD;
  color: #856404;
  border-left: 4px solid var(--accent-sand);
}

.alert-error {
  background: #F8D7DA;
  color: #721C24;
  border-left: 4px solid #DC3545;
}

.alert-info {
  background: #D1ECF1;
  color: #0C5460;
  border-left: 4px solid var(--secondary-ocean);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  color: var(--neutral-stone);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-item:hover {
  color: var(--primary-coral);
}

.breadcrumb-separator {
  color: var(--neutral-stone);
}

.breadcrumb-item.active {
  color: var(--neutral-night);
  font-weight: 600;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.pagination-item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  border: 2px solid #E9ECEF;
  color: var(--neutral-stone);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.pagination-item:hover {
  border-color: var(--primary-coral);
  color: var(--primary-coral);
  transform: translateY(-2px);
}

.pagination-item.active {
  background: var(--gradient-sunset);
  color: white;
  border-color: transparent;
}

.floating-action-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-heavy);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  z-index: 999;
}

.floating-action-button:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5);
}

.search-bar {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.5rem;
  border: 2px solid #E9ECEF;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  background: var(--neutral-cloud);
  color: var(--neutral-stone);
  margin: 0.25rem;
  transition: var(--transition-smooth);
}

.tag:hover {
  background: var(--primary-coral);
  color: white;
  cursor: pointer;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #E9ECEF, transparent);
  margin: 3rem 0;
}

.overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 60px;
  }

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

  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    gap: 1.5rem;
    align-items: flex-start;
    border-radius: 0 0 16px 16px;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .tab-navigation {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-button {
    white-space: nowrap;
    padding: 1rem 1.5rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .floating-action-button {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.bounce-in {
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

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

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

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

.pulse {
  animation: pulse 2s infinite;
}

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

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

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