:root {
  --primary-bg: #121212;
  --secondary-bg: #1E1E1E;
  --accent: #FF7E5F;
  --accent-hover: #FF9580;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --border-color: #333333;
  --blob-1: rgba(255, 126, 95, 0.3);
  --blob-2: rgba(190, 115, 255, 0.3);
  --blob-3: rgba(50, 224, 196, 0.3);
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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


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

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-bg);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary-bg);
  transform: translateY(-3px);
}


.blob-container {
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  animation: blob-move 15s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: var(--blob-1);
  top: -150px;
  left: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background-color: var(--blob-2);
  bottom: -100px;
  right: -50px;
  animation-delay: 5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background-color: var(--blob-3);
  top: 50%;
  left: 30%;
  animation-delay: 8s;
}

@keyframes blob-move {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 20px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 40px) scale(0.9);
  }
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  position: relative;
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-bg);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  padding: 0.8rem 1.5rem;
  display: block;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 126, 95, 0.1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-phone {
  display: flex;
  align-items: center;
}

.contact-phone i {
  margin-right: 0.5rem;
  color: var(--accent);
}


.hero-section {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #FF7E5F, #BE73FF, #32E0C4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image lottie-player {
  width: 100%;
  height: 400px;
}


.services-section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #FF7E5F, #BE73FF);
  border-radius: 3px;
}

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

.service-card {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 126, 95, 0.1), rgba(190, 115, 255, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF7E5F, #BE73FF);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-bg);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


.before-after-section {
  padding: 6rem 0;
  background-color: rgba(30, 30, 30, 0.6);
}

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

.before-after-card {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.before-after-card:hover {
  transform: translateY(-8px);
}

.before-after-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.before-after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-before {
  background-color: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
  color: #FF5252;
}

.badge-after {
  background-color: rgba(0, 255, 0, 0.2);
  border: 1px solid rgba(0, 255, 0, 0.5);
  color: #52FF52;
}

.before-after-content {
  padding: 2rem;
}

.before-after-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.before-after-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.before-after-content li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.before-after-content li i {
  margin-right: 0.5rem;
  color: var(--accent);
  margin-top: 4px;
}


.process-section {
  padding: 6rem 0;
}

.steps-container {
  margin-top: 3rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--blob-2), var(--blob-3));
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blob-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-bg);
  position: relative;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0 1rem;
}


.cases-section {
  padding: 6rem 0;
  background-color: rgba(30, 30, 30, 0.6);
}

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

.case-card {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
  height: 220px;
  overflow: hidden;
}

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

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

.case-content {
  padding: 2rem;
}

.case-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.case-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.case-results {
  display: flex;
  justify-content: space-between;
}

.result {
  text-align: center;
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}


.why-us-section {
  padding: 6rem 0;
}

.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.3), rgba(190, 115, 255, 0.3));
  z-index: 1;
}

.why-us-content h2 {
  margin-bottom: 2rem;
}

.why-us-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
}

.why-us-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--blob-2));
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  color: var(--primary-bg);
  font-size: 1rem;
}

.why-us-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-us-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}


.contact-section {
  padding: 6rem 0;
  background-color: rgba(30, 30, 30, 0.6);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-method i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 126, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--accent);
}

.contact-form {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.form-control {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Urbanist', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-right: 0.5rem;
}

.iti {
  width: 100% !important;
}


.page-header {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #FF7E5F, #BE73FF, #32E0C4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-description {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.content-section {
  padding: 5rem 0;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 4rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.content-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.contact-page {
  padding: 6rem 0;
}

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

.contact-card {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 126, 95, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: var(--accent);
  color: var(--primary-bg);
}

.office-image {
  margin-top: 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.office-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}


.footer {
  padding: 5rem 0 2rem;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-about p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--accent);
  color: var(--primary-bg);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

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

.footer-contact p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--accent);
  min-width: 20px;
  margin-top: 5px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  background-color: rgba(255, 126, 95, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background-color: var(--secondary-bg);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.modal-title {
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.modal-footer {
  text-align: center;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-bg);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

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

.cookie-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Urbanist', sans-serif;
}

.cookie-accept {
  background-color: var(--accent);
  color: var(--primary-bg);
}

.cookie-accept:hover {
  background-color: var(--accent-hover);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.cookie-reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-settings {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.cookie-modal .modal-content {
  max-width: 700px;
}

.cookie-categories {
  margin-top: 2rem;
}

.cookie-category {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.category-title {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-primary);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--accent);
}

input:disabled+.slider {
  opacity: 0.5;
  cursor: not-allowed;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.category-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-save {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background-color: var(--accent);
  color: var(--primary-bg);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: var(--accent-hover);
}


.thank-you-section {
  padding: 10rem 0 6rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-switcher a {
  padding: 0 10px;
}


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

  h2 {
    font-size: 1.8rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .process-steps {
    flex-direction: column;
    gap: 3rem;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .contact-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--secondary-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    z-index: 100;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-menu li {
    margin: 0 0 1rem 0;
  }

  .nav-menu a {
    padding: 0.8rem 0;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    background-color: transparent;
    margin-top: 1rem;
    padding-left: 1.5rem;
    display: none;
  }

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

  .dropdown-content a {
    padding: 0.8rem 0;
    border-bottom: none;
  }

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

  .hero-text {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .service-card {
    text-align: center;
  }

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

  .why-us-items {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 7rem 0 4rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

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

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

  .cookie-banner {
    text-align: center;
  }

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