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

:root {
  --primary-color: #2C5F7C;
  --secondary-color: #C17E4A;
  --accent-color: #E8A87C;
  --dark-color: #1A3A4A;
  --light-color: #F4F1EA;
  --white-color: #FFFFFF;
  --gray-color: #6B7B88;
  --light-gray: #E5E9EC;
  --success-color: #5D9B7E;
  --warning-color: #D9A648;
  --error-color: #C85A54;
  --gradient-primary: linear-gradient(135deg, #2C5F7C 0%, #1A3A4A 100%);
  --gradient-secondary: linear-gradient(135deg, #E8A87C 0%, #C17E4A 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(44, 95, 124, 0.92) 0%, rgba(26, 58, 74, 0.88) 100%);
  --shadow-sm: 0 2px 8px rgba(44, 95, 124, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 95, 124, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 95, 124, 0.16);
  --shadow-xl: 0 16px 48px rgba(44, 95, 124, 0.24);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-color);
}

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border-bottom: 2px solid var(--accent-color);
}

header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: var(--transition-base);
}

.logo i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.logo:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

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

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

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: var(--transition-base);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--white-color);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-base);
}

.mobile-menu-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.mobile-menu ul {
  list-style: none;
  padding: 2rem 1.5rem;
}

.mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-base);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background: var(--gradient-secondary);
  color: var(--white-color);
  transform: translateX(8px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 58, 74, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 1500;
  backdrop-filter: blur(4px);
}

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

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.5px;
  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.2);
  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-primary);
  color: var(--white-color);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-outline-light:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--white-color);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--secondary-color);
}

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

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

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

.cookie-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group label span {
  color: var(--error-color);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-base);
  background: var(--white-color);
  color: var(--dark-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(193, 126, 74, 0.1);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--gray-color);
  opacity: 0.7;
}

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

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232C5F7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
  appearance: none;
}

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

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

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--secondary-color);
}

.form-check label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  color: var(--gray-color);
}

.form-error {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .form-control {
  border-color: var(--error-color);
}

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

.form-success {
  background: var(--success-color);
  color: var(--white-color);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 1rem;
}

.form-success.active {
  display: flex;
}

.form-success i {
  font-size: 1.5rem;
}

.card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(44, 95, 124, 0.08);
}

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

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gradient-secondary);
  color: var(--white-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-overlay-content {
  color: var(--white-color);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover .card-overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.card-content {
  padding: 1.75rem;
}

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

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

.card-footer {
  padding: 1.25rem 1.75rem;
  background: var(--light-color);
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-color);
  font-size: 0.875rem;
}

.card-meta-item i {
  color: var(--secondary-color);
  font-size: 1.125rem;
}

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

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

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

.accordion {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}

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

.accordion-header {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: left;
}

.accordion-header:hover {
  background: var(--light-color);
}

.accordion-header.active {
  background: var(--primary-color);
  color: var(--white-color);
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  color: var(--secondary-color);
}

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

.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: 1.5rem 1.75rem;
  color: var(--gray-color);
  line-height: 1.8;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 3rem auto;
}

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

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(244, 241, 234, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.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.8s ease-in-out;
}

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

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 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.34, 1.56, 0.64, 1);
}

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

.zoom-in {
  animation: zoomIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-secondary);
  border-radius: 6px;
  border: 2px solid var(--light-color);
}

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

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

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

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

.section-description {
  font-size: 1.125rem;
  color: var(--gray-color);
  line-height: 1.8;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white-color);
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  color: var(--white-color);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.card:hover .feature-icon,
.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.feature-box {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.stats-section {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.testimonial-card {
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--gray-color);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.author-info h5 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  color: var(--dark-color);
}

.author-info p {
  margin: 0;
  color: var(--gray-color);
  font-size: 0.875rem;
}

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

.rating i {
  color: var(--warning-color);
  font-size: 0.875rem;
}

.cta-section {
  background: var(--gradient-overlay);
  color: var(--white-color);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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");
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white-color);
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 1.25rem 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.25);
}

footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

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

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

.footer-section p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '\ea50';
  font-family: 'remixicon';
  color: var(--secondary-color);
  transition: var(--transition-base);
}

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

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

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

.social-link:hover {
  background: var(--gradient-secondary);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

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

.footer-bottom p {
  margin: 0;
}

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

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 58, 74, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 5000;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xl);
}

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

.modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.75rem;
  margin: 0;
  color: var(--primary-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition-base);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
}

.modal-close:hover {
  background: var(--light-gray);
  color: var(--error-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.5rem;
}

.modal-footer {
  padding: 1.75rem 2.5rem;
  border-top: 2px solid var(--light-gray);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-xl);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

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

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

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

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: 'Playfair Display', serif;
}

.price-tag span {
  font-size: 1.25rem;
  color: var(--gray-color);
  font-weight: 500;
}

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

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

.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.img-hover-zoom img {
  transition: var(--transition-smooth);
}

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

@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    gap: 2rem;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }
  
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-container {
    padding: 1rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.75rem;
  }
}

@media print {
  header,
  footer,
  .cookie-banner,
  .back-to-top,
  .mobile-menu-toggle,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    page-break-inside: avoid;
  }
}