/*
Theme Name: Divi Child Theme
Theme URI: https://divireadythemes.com/
Description: Divi Child Theme
Author: Divi Ready Themes
Author URI: https://divireadythemes.com/
Template: Divi
Version: Updated for Divi 3+
*/

/*------------------------------------------------*/
/*-------------------[GENERAL]--------------------*/
/*------------------------------------------------*/

:root {
  --primary: #6ec1e4;
  --primary-dark: #4ba8d1;
  --primary-light: #a8dbf0;
  --background: #fafbfc;
  --background-alt: #f0f7fa;
  --foreground: #1a2b3c;
  --foreground-muted: #5a6b7c;
  --white: #ffffff;
  --accent: #d4af37;
  --accent-light: #f5e6b8;
}

#contact-form-row {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  max-width: 1360px;
  margin: 2rem auto 0;
  padding: 8rem 0rem;
}

#contact-form-row.visible {
  display: block;
  opacity: 1;
}

.et_pb_contact_form_container {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.et_pb_contact_form {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 20px;
}

.et_pb_contact_field {
  width: 100%;
  margin-bottom: 0;
}

.et_pb_contact_field_half {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  .et_pb_contact_field_half {
    width: 100%;
  }
}

.et_pb_contact_form_label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.9rem;
}

.input,
.et_pb_contact_message {
  width: 100%;
  padding: 1rem;
  background: var(--background-alt);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.input:focus,
.et_pb_contact_message:focus {
  outline: none;
  border-color: var(--primary);
  /* background: var(--white);
    box-shadow: 0 0 0 4px rgba(110, 193, 228, 0.1); */
}

.et_pb_contact_message {
  min-height: 150px;
  resize: vertical;
}

.et_contact_bottom_container {
  width: 100%;
  text-align: right;
  margin-top: 1rem;
}

.et_pb_contact_form_container .et_pb_contact_submit,
.et_pb_contact_form_container .et_pb_contact_submit:link,
.et_pb_contact_form_container .et_pb_contact_submit:visited {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  ) !important;
  color: var(--white) !important;
  border: 1px solid transparent !important;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
  box-shadow: 0 6px 14px rgba(110, 193, 228, 0.25);
}

.et_pb_contact_form_container .et_pb_contact_submit::after {
  display: none !important;
}

.et_pb_contact_form_container .et_pb_contact_submit:active {
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .et_pb_contact_form_container .et_pb_contact_submit:hover,
  .et_pb_contact_form_container .et_pb_contact_submit:focus-visible {
    background: linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    ) !important;
    color: var(--white) !important;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.35);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

.entry-content ul {
  padding: 0px !important;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 2rem;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4);
}

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

.btn-secondary:hover {
  background: var(--foreground);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #c9a227 100%);
  color: var(--foreground);
	font-size: 1.1rem !important;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--background-alt) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(110, 193, 228, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 10s ease-in-out infinite reverse;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 0rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-light);
  z-index: -1;
  opacity: 0.5;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--foreground-muted);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
  overflow: visible;
  min-width: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.floating-card-1 {
  bottom: 30%;
  left: -20%;
  top: auto;
  right: auto;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

.floating-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.floating-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-dark);
}

.floating-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.floating-card p {
  font-size: 0.8rem;
  color: var(--foreground-muted);
}

.before-after-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

.ba-compare {
  --pos: 50%;
  position: relative;
  width: min(800px, 100%);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background: #f7f7f7;
  aspect-ratio: 4 / 3;
}

.ba-compare .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.ba-compare .ba-before {
  z-index: 1;
}

.ba-compare .ba-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-compare .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 0;
  border-left: 3px solid var(--primary);
  z-index: 3;
  cursor: ew-resize;
}

.ba-compare .ba-handle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow: 0 4px 20px rgba(110, 193, 228, 0.4);
}

.ba-compare .ba-handle:after {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  font:
    600 18px/1 system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: #fff;
}

.ba-compare .ba-tag {
  position: absolute;
  top: 16px;
  padding: 8px 16px;
  font:
    500 13px/1.1 "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50px;
  z-index: 4;
  user-select: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ba-compare .ba-tag--left {
  left: 16px;
}

.ba-compare .ba-tag--right {
  right: 16px;
}

.ba-compare:hover .ba-handle:before {
  transform: translate(-50%, -50%) scale(1.08);
}

@media (pointer: coarse) {
  .ba-compare .ba-handle:before {
    width: 56px;
    height: 56px;
  }
}

.video-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.video-shell {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  background: #000;
}

.explainer-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.package-section {
  padding: 8rem 1.5rem;
  background: var(--background-alt);
  position: relative;
}

.package-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    transparent
  );
}

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

.package-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.package-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.package-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--white));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--foreground);
}

.package-card p {
  font-size: 18px;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.package-features {
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-features span {
  font-size: 16px;
  color: var(--foreground-muted);
}

.package-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.package-card-pricing {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: nowrap;
  margin-bottom: 0.4rem;
}

.package-card-price {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.package-card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--foreground-muted);
}

.package-card-price--secondary {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--foreground-muted);
  white-space: nowrap;
}

.package-card-price--secondary span {
  font-size: 0.9rem;
}

.package-card-discount {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.package-card .btn {
  width: 100%;
  text-align: center;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: var(--foreground);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(110, 193, 228, 0.2);
}

.package-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.package-price-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(110, 193, 228, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--foreground-muted);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.price-new {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  color: var(--primary-dark);
}

.price-new span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--foreground-muted);
}

.price-description {
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.price-includes {
  text-align: left;
  background: var(--background-alt);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(110, 193, 228, 0.15);
}

.price-includes h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.price-includes ul {
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--foreground);
}

.price-includes svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.package-price-card .btn {
  width: 100%;
  position: relative;
  z-index: 1;
}

.benefits-section {
  padding: 8rem 1.5rem;
  background: var(--white);
}

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

.benefit-card {
  background: var(--background);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--background));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-dark);
}

.benefit-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
}

.doctor-section {
  padding: 8rem 1.5rem;
  background: var(--background-alt);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.doctor-image-wrapper {
  position: relative;
}

.doctor-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(110, 193, 228, 0.4);
}

.experience-badge .text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.doctor-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.doctor-content .lead {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.doctor-content p {
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
}

.credential svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.credential span {
  font-size: 0.9rem;
  font-weight: 500;
}

.process-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, var(--foreground) 0%, #2a3b4c 100%);
  color: var(--white);
}

.process-section .section-subtitle {
  color: var(--primary-light);
}

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

.process-section .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(110, 193, 228, 0.5);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white) !important;
}

.process-step p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

.cta-section {
  padding: 8rem 1.5rem;
  background: var(--background);
  text-align: center;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.cta-phone a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-phone a:hover {
  color: var(--primary-dark);
}

@media (max-width: 1440px) {
  .hero-inner {
    padding: 8rem 2rem 4rem;
  }

  .floating-card-1 {
    left: -10%;
  }

  .floating-card-2 {
    right: 0;
  }
}

@media (max-width: 1200px) {
  .floating-card-1 {
    left: -5%;
  }

  .floating-card-2 {
    right: 5%;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

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

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

  .hero-image {
    height: 400px;
  }

  .floating-card {
    display: none;
  }

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

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

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

  .doctor-image {
    height: 400px;
  }

  .experience-badge {
    bottom: -10px;
    right: 20px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

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

@media (max-width: 640px) {
  button.et_pb_contact_submit.et_pb_button {
    margin-left: 10px !important;
  }

  #contact-form-row {
    margin: 1.5rem auto 0 !important;
  }

  .et_pb_contact_form_container {
    padding: 1.5rem !important;
  }

  .hero h1 span::after {
    display: none;
  }

  .header-cta .phone-link span {
    display: none;
  }

  .header .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-inner {
    padding: 6rem 1.5rem;
  }

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

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

  .package-card {
    padding: 1.5rem;
  }

  .package-price-card {
    padding: 2rem;
  }

  .price-new {
    font-size: 2.5rem;
  }

  .cta-card {
    padding: 2rem;
  }

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.et_pb_button:hover,
.et_pb_module .et_pb_button:hover {
  padding: 1rem 3rem !important;
}

button.et_pb_contact_submit.et_pb_button {
  margin-left: 40px;
}
/*------------------------------------------------*/
/*-----------------[HEADER-MENU]------------------*/
/*------------------------------------------------*/

/*------------------------------------------------*/
/*------------------[HOMEPAGE]--------------------*/
/*------------------------------------------------*/

/*------------------------------------------------*/
/*------------------[SUBPAGES]--------------------*/
/*------------------------------------------------*/

/*------------------------------------------------*/
/*-------------------[Footer]---------------------*/
/*------------------------------------------------*/

/*------------------------------------------------*/
/*--------------------[RWD]-----------------------*/
/*------------------------------------------------*/

/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*--[ADD TUTORIAL CUSTOMIZATION BELOW THIS LINE]--*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
