:root {
  --teal-deep: #0d4f4f;
  --teal-medium: #1a7a7a;
  --teal-light: #2aa3a3;
  --orange-bright: #ff6b35;
  --orange-warm: #ff8c42;
  --orange-soft: #ffa366;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --gray-dark: #495057;
  --black: #1a1a2e;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 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: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 79, 79, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--orange-bright);
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.header-cta {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition-smooth);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-medium) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-soft) 100%);
  opacity: 0.08;
  transform: rotate(-15deg);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(45deg, var(--teal-light) 0%, transparent 100%);
  opacity: 0.1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange-bright);
}

.hero-stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-bright), var(--orange-soft));
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.hero-card-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-card-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-floating-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--orange-bright);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  animation: float 3s ease-in-out infinite;
}

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


.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--orange-bright);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
}


.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--gray-medium);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-medium), var(--teal-light));
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-medium));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray-dark);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-bright);
  margin-bottom: 16px;
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-dark);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-medium);
  font-weight: 600;
  font-size: 15px;
}

.service-link:hover {
  color: var(--orange-bright);
  gap: 12px;
}


.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  color: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.about-badge-number {
  font-size: 48px;
  font-weight: 800;
}

.about-badge-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content-text {
  color: var(--gray-dark);
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-medium), var(--teal-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-text {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 14px;
  color: var(--gray-dark);
}


.process-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-medium) 100%);
  color: var(--white);
}

.process-section .section-subtitle {
  color: var(--orange-bright);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-card {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.process-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.process-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-desc {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
}


.gallery-section {
  background: var(--gray-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 79, 79, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay-text {
  color: var(--white);
  font-weight: 600;
}


.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-text {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 14px;
  color: var(--gray-dark);
}


.areas-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-medium) 100%);
  color: var(--white);
}

.areas-section .section-subtitle {
  color: var(--orange-bright);
}

.areas-section .section-title {
  color: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.area-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.area-name {
  font-size: 18px;
  font-weight: 700;
}


.faq-section {
  background: var(--gray-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-medium);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--teal-medium);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--orange-bright);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 32px 24px;
  color: var(--gray-dark);
  line-height: 1.8;
}


.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.contact-info-desc {
  color: var(--gray-dark);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-medium), var(--teal-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.contact-value a {
  color: inherit;
}

.contact-form {
  background: var(--gray-light);
  border-radius: 24px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-medium);
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition-smooth);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal-medium);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}


.cta-section {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-warm) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: var(--white);
  color: var(--orange-bright);
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-medium);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}


.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
}

.footer-logo-text span {
  color: var(--orange-bright);
}

.footer-desc {
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  opacity: 0.6;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  opacity: 0.6;
  font-size: 14px;
  color: var(--white);
}

.footer-legal a:hover {
  opacity: 1;
}


.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-medium);
  z-index: 9999;
  display: block;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  color: var(--white);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: var(--gray-light);
  color: var(--gray-dark);
}

.cookie-btn-decline:hover {
  background: var(--gray-medium);
}

.cookie-link {
  color: var(--teal-medium);
  text-decoration: underline;
}


.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-medium) 100%);
  text-align: center;
  padding: 120px 20px 80px;
}

.thank-you-content {
  max-width: 700px;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.thank-you-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.thank-you-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}


.legal-section {
  padding: 140px 0 80px;
  background: var(--gray-light);
}

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

.legal-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 40px;
}

.legal-block {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.legal-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.legal-block-text {
  color: var(--gray-dark);
  line-height: 1.8;
}


@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--teal-deep);
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .cta-title {
    font-size: 32px;
  }

  .hero-floating-badge {
    display: none;
  }
}


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

.text-white {
  color: var(--gray-light);
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}