:root {
  --primary-color: #2c5f7c;
  --primary-hover: #1e4458;
  --secondary-color: #4a9aba;
  --secondary-hover: #357a94;
  --accent-color: #7bc4d8;
  --logo-color: #d64a6a;
  --logo-color-light: rgba(214, 74, 106, 0.1);
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a2332;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --header-height: clamp(36px, 8vw, 70px);
  --top-bar-height: 40px;
}

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

html {
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: clip;
}

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

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

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

.contact-link {
  color: var(--secondary-color);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--top-bar-height);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-phone {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-phone:hover {
  color: var(--accent-color);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span,
.top-bar-info a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info a:hover {
  color: var(--accent-color);
}

/* Header */
.header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: clamp(30px, 6vw, 45px);
  width: auto;
}

.logo-text {
  font-size: clamp(0.85rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

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

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

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--primary-color);
  color: white;
}

.lang-btn .material-icons {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.lang-switcher.active .lang-btn .material-icons {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.lang-option:first-child { border-radius: 8px 8px 0 0; }
.lang-option:last-child { border-radius: 0 0 8px 8px; }
.lang-option:hover { background: var(--bg-light); color: var(--primary-color); }
.lang-option.active { background: var(--primary-color); color: white; }

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.menu-toggle:hover { color: var(--secondary-color); }
.menu-toggle .material-icons { font-size: 2rem; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-hover) 100%);
  padding-top: calc(var(--header-height) + var(--top-bar-height) + 4rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 850px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--logo-color);
  color: white;
  border-color: var(--logo-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 74, 106, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
  color: white;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.success {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-status.error {
  background-color: rgba(214, 74, 106, 0.1);
  color: #d64a6a;
  border: 1px solid rgba(214, 74, 106, 0.2);
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-dark);
  padding: 2.5rem 0;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  flex: 1 1 220px;
}

.trust-item i {
  font-size: 2rem;
  color: var(--accent-color);
  min-width: 40px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top: 3px solid var(--logo-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  opacity: 1;
  visibility: visible;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-title i {
  color: var(--logo-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.feature-item:hover {
  background: var(--accent-color);
  color: white;
  transform: translateX(10px);
}

.feature-item i {
  font-size: 1.2rem;
  color: var(--logo-color);
  min-width: 20px;
  text-align: center;
}

.feature-item:hover i {
  color: white;
}

.about-image {
  flex: 0 1 400px;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1;
  visibility: visible;
}

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

/* Blood Test Banner */
.blood-test-banner {
  background: linear-gradient(135deg, var(--logo-color) 0%, #c0365a 50%, var(--primary-color) 100%);
  padding: 3rem 0;
  color: white;
}

.blood-test-banner-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.blood-test-banner-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.blood-test-banner-text {
  flex: 1;
  min-width: 280px;
}

.blood-test-banner-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blood-test-banner-text > p {
  opacity: 0.95;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.blood-test-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blood-test-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.blood-test-detail-item i {
  font-size: 0.9rem;
  opacity: 0.8;
}

.blood-test-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-blood-test {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  background: white;
  color: var(--logo-color);
  border: 2px solid white;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-blood-test .btn-blood-test-number {
  display: none;
}

.btn-blood-test:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-blood-test:hover .btn-blood-test-label {
  display: none;
}

.btn-blood-test:hover .btn-blood-test-number {
  display: inline;
}

@media (max-width: 820px) {
  .blood-test-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .blood-test-details {
    justify-content: center;
  }

  .blood-test-detail-item {
    white-space: normal;
    text-align: left;
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  flex: 1 1 300px;
  max-width: 380px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--logo-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-stars i {
  color: #f5a623;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-color);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--logo-color);
  font-weight: 500;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info-wrapper {
  flex: 1 1 400px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.info-item:hover {
  background: var(--accent-color);
  color: white;
  transform: translateX(10px);
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  min-width: 40px;
}

.info-item:hover i { color: white; }

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.info-item:hover h3 { color: white; }
.info-item p, .info-item a { color: var(--text-light); }
.info-item:hover p, .info-item:hover a { color: white; }

/* Contact Form */
.contact-form {
  flex: 1 1 400px;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--logo-color);
  box-shadow: 0 0 0 3px var(--logo-color-light);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
  background: white;
  padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: var(--logo-color);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  flex: 1 1 250px;
}

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

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.footer-logo h3 {
  margin-bottom: 0;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--logo-color);
  transform: translateY(-3px);
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-section ul li i {
  color: var(--accent-color);
  min-width: 20px;
}

.footer-section ul li a,
.footer-section ul li span {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Form RGPD Notice */
.form-rgpd-notice {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

/* Footer RGPD Link */
.footer-rgpd-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-rgpd-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.dev-credit { font-size: 0.85rem; opacity: 0.8; }
.dev-credit a { color: var(--accent-color); font-weight: 500; transition: var(--transition); }
.dev-credit a:hover { color: white; text-decoration: underline; }

/* RGPD Modal */
.rgpd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.rgpd-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.rgpd-modal-content {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 20px;
  max-width: 750px;
  width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease;
  z-index: 2001;
}

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

.rgpd-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 2;
}

.rgpd-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.rgpd-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.rgpd-modal-header i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.rgpd-modal-header h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
  padding-right: 2rem;
}

.rgpd-modal-body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  overflow-y: auto;
}

.rgpd-section {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border-left: 4px solid var(--border-color);
  background-color: var(--bg-light);
  border-left-color: var(--secondary-color);
  background-color: rgba(74, 154, 186, 0.05);
}

.rgpd-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary-color);
}

.rgpd-section h4 i { font-size: 0.85rem; }

.rgpd-section p {
  color: var(--text-color);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.rgpd-link-ext a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--secondary-color);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.rgpd-link-ext a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .rgpd-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .rgpd-modal-header {
    padding: 1.5rem;
    border-radius: 0;
  }
  .rgpd-modal-header h3 { font-size: 1.1rem; }
  .rgpd-modal-body { padding: 1rem 1.2rem 1.5rem; }
  .rgpd-modal.active .rgpd-modal-content { transform: none; }
}

/* Mobile Language Buttons */
.nav-lang-mobile {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
}

.nav-lang-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  background: transparent;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-lang-btn:hover {
  background: var(--primary-color);
  color: white;
}

.nav-lang-btn.active {
  background: var(--primary-color);
  color: white;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .services-grid { gap: 1.5rem; }
  .service-card { flex: 1 1 calc(50% - 0.75rem); }
}

/* Responsive - Mobile */
@media (max-width: 820px) {
  body { font-size: 1.05rem; }
  .container { padding: 0 1rem; }

  .top-bar { font-size: 0.8rem; }
  .top-bar-info span:first-child { display: none; }

  .header-content { padding: 0.6rem 0; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    visibility: hidden;
    display: flex;
    flex-direction: column;
  }

  .nav.active { right: 0; visibility: visible; }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 6rem 0 1rem;
  }

  .nav-list li { width: 100%; }

  .nav-link {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after { display: none; }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-light);
    color: var(--primary-color);
  }

  .menu-toggle { display: block; position: relative; z-index: 1001; }

  .lang-switcher { display: none; }

  .nav-lang-mobile { display: flex; }

  .contact-link { word-break: break-all; }

  .hero {
    min-height: 90vh;
    min-height: 90svh;
  }

  .hero-content { padding: 0 1rem; }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    justify-content: center;
  }

  section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .trust-items { gap: 1.5rem; }
  .trust-item { flex: 1 1 calc(50% - 0.75rem); }

  .services-grid, .testimonials-grid { gap: 1.5rem; }
  .service-card, .testimonial-card { flex: 1 1 100%; max-width: 100%; }

  .about-content { gap: 2rem; }
  .about-text, .about-image { flex: 1 1 100%; }
  .about-text p { text-align: justify; }
  .about-features { grid-template-columns: 1fr; }

  .contact-wrapper { flex-direction: column-reverse; gap: 2rem; }
  .contact-form, .contact-info-wrapper { flex: 1 1 100%; }
  .contact-form { padding: 2rem 1.5rem; }

  .footer-content { gap: 2rem; }
  .footer-section { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.4rem 1rem; }
  .section-title { font-size: 1.8rem; }

  .trust-item { flex: 1 1 100%; }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .service-image { height: 180px; }
}

/* Animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
