/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll; /* Всегда показывать вертикальную полосу прокрутки */
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Highlight Class for Orange Text */
.highlight {
  color: #e99339;
}

/* Header */
.header {
  background: linear-gradient(
    90deg,
    #f7f7f7 0%,
    rgba(255, 255, 255, 0.93) 100%
  );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 30px 30px;
  /* position: relative; */
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

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

.logo img {
  height: 59.53px;
  width: 47px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #6e6e6e;
  text-decoration: none;
  letter-spacing: -0.5%;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1a365d;
}

/* Mobile Menu Styles */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: #1a365d;
  transition: all 0.3s ease;
  margin: 2px 0;
  transform-origin: center;
}

.burger-btn.open .burger-line:nth-child(1) {
  transform: translate(0px, 6px) rotate(45deg);
}

.burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
  transform: translate(0px, -6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.2s linear;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 120px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
  margin: 0 auto;
  opacity: 1;
}

.mobile-nav.open .mobile-nav-content {
  opacity: 1;
}

.mobile-nav-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a365d;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(233, 147, 57, 0.1);
  border-color: #e99339;
  color: #1a365d;
}

.mobile-cta-btn {
  background: #e99339;
  border: none;
  border-radius: 32px;
  padding: 15px 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-cta-btn:hover {
  background: #d17e28;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(1, 5, 19, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 22.91%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 669px;
  padding-left: 0px;
  padding-top: 0px;
}

.hero-title {
  font-family: 'Bebas Neue';
  font-size: 58px;
  font-weight: 400;
  line-height: 1.09375;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 554px;
}

.hero-additional {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 42px;
  max-width: 554px;
  text-align: left;
}

.btn-primary {
  background: #e99339;
  border: none;
  border-radius: 32px;
  padding: 15px 61px;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #d17e28;
  transform: translateY(-2px);
}

/* Hero Transition SVG */
.hero-transition {
  position: absolute;
  /* z-index: 10; */
  right: 300px;
  bottom: 0;
  width: 868px;
  height: 146px;
}

.hero-transition svg {
  width: 100%;
  height: 146px;
  display: block;
}

/* Белый прямоугольник для больших экранов - растет вправо от фигуры */
.hero-transition::after {
  content: '';
  position: absolute;
  margin-left: -1px;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 146px;
  background: white;
}

@media (min-width: 768px) {
  .hero-transition {
    left: 0%;
    right: auto;
  }
}

@media (min-width: 1100px) {
  .hero-transition {
    left: 35%;
    right: auto;
  }
}

/* На больших экранах левый край фигуры по центру экрана */
@media (min-width: 1320px) {
  .hero-transition {
    left: 45%;
    right: auto;
  }
}

/* Benefits Section */
.benefits {
  background: #fff;
  padding: 0 0px;
  z-index: 1;
}

.benefits::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 88px 88px 0px 0px;
}

.section-title {
  font-family: 'Bebas Neue';
  font-size: 58px;
  font-weight: 400;
  line-height: 1.09375;
  color: #1a365d;
  text-align: right;
  margin-bottom: 60px;
  position: relative;
  z-index: 0.5;
  margin-top: -180px;
  padding-top: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 40px;
  max-width: 1310px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-bottom: 10px;
}

.benefit-card {
  background: #f9fafc;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
}

.benefit-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c3e5a;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #626e77;
}

/* Included Section */
.included {
  padding: 80px 0;
  position: relative;
  background: #000;
}

.services-bg-image {
  position: absolute;
  left: 0;
  top: 400px;
  width: 100%;
  max-width: 1036px;
  height: auto;
  z-index: 0;
}

.services-bg-image img {
  width: 100%;
  height: auto;
  display: block;
}

.included .section-title {
  text-align: left;
  color: #1a365d;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.included-box {
  background: #e5e3da;
  border: 1px solid #241b1b;
  border-radius: 44px;
  padding: 50px 47px;
  max-width: 835px;
  margin: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.section-group {
  margin-bottom: 30px;
}

.section-group:last-of-type {
  margin-bottom: 40px;
}

.section-group-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.0833;
  color: #314055;
  margin-bottom: 20px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #1c3e5a;
  padding: 6px 0;
}

.included-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 22px;
  height: 24px;
}

.included-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.included-cta .btn-primary {
  padding: 15px 57px;
}

/* How It Works Section */
.how-it-works {
  background: #dbdbdb;
  padding: 80px 0;
  position: relative;
}

.how-it-works-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #dbdbdb;
  border-radius: 88px 88px 0px 0px;
}

.how-it-works-bg {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #000;
}

.how-it-works .section-title {
  text-align: right;
  color: #1a365d;
  margin-bottom: 60px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.workflow {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.workflow-step {
  background: #f9fafc;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 120px;
  width: 50%;
  max-width: 628px;
  position: relative;
}

.workflow-step.left {
  align-self: flex-start;
  margin-left: 0;
}

.workflow-step.right {
  align-self: flex-end;
  margin-right: 0;
}

/* Стрелки как псевдоэлементы для всех карточек кроме последней */
.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 296px;
  height: 136px;
  background-image: url('images/arrow-line.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

/* Стрелка для левых карточек (направлена вправо) */
.workflow-step.left:not(:last-child)::after {
  right: -300px; /* 296px ширина стрелки + 20px отступ */
  top: 95%;
}

/* Стрелка для правых карточек (направлена влево, отзеркалена) */
.workflow-step.right:not(:last-child)::after {
  left: -300px; /* 296px ширина стрелки + 20px отступ */
  transform: translateY(-50%) scaleX(-1);
  top: 95%;
}

.step-number {
  background: #1e3d59;
  color: #ffffff;
  border-radius: 20px;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 64px;
  font-weight: 700;
  line-height: 1.09375;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c3e5a;
  margin-bottom: 8px;
}

.step-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #626e77;
}

/* Requirements Section */
.requirements {
  background: #ffffff;
  padding: 0 0;
  margin-bottom: 100px;
  text-align: center;
}

.requirements .section-title {
  font-family: 'Bebas Neue';
  font-weight: 400;
  line-height: 1.09375;
  color: #1a365d;
  text-align: center;
  margin-bottom: 20px;
}

.requirements-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #1a365d;
  text-align: center;
  margin-bottom: 40px;
  max-width: 833px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-list {
  margin-bottom: 40px;
}

.requirements-list p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
  color: #1a365d;
  margin-bottom: 8px;
  text-align: left;
  max-width: 333px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-list p:last-child {
  margin-bottom: 80px;
}

/* Footer Gradient */
.footer-gradient {
  height: 731px;
  background: #d9d9d9;
}

/* Fixed Action Button */
.fixed-action-btn {
  position: relative;
  right: 30px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.action-btn {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: #7f2d2c;
  border: none;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset -1px -131px 38.4px rgba(0, 0, 0, 0.2),
    inset 0px -8px 4px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3),
    inset -1px -131px 38.4px rgba(0, 0, 0, 0.2),
    inset 0px -8px 4px rgba(255, 255, 255, 0.25);
}

.gray-separator {
  height: 160px;
  background-color: #d9d9d9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header {
    border-radius: 0px 0px 20px 20px;
  }

  .header-content {
    height: 60px;
    padding: 0 20px;
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
    width: 32px;
  }

  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-nav-link {
    font-size: 18px;
    padding: 12px 15px;
  }

  .mobile-cta-btn {
    font-size: 16px;
    padding: 12px 25px;
  }

  .hero {
    height: 600px;
  }

  .hero-content {
    padding-left: 20px;
    padding-top: 50px;
    max-width: 100%;
  }

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

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-additional {
    font-size: 16px;
    max-width: 100%;
    text-align: left;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 36px;
    text-align: center !important;
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-description {
    font-size: 16px;
  }

  .services-bg-image {
    position: static;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .services-bg-image img {
    display: none;
  }

  .included-box {
    padding: 30px 20px;
    margin: 0 0;
    border-radius: 20px;
  }

  .section-group-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .included-item {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 6px;
    padding: 5px 0;
  }

  .check-icon {
    width: 20px;
    height: 22px;
  }

  .requirements-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .workflow {
    gap: 40px;
    padding: 0 15px;
  }

  .workflow-step {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    width: 100%;
    align-self: center !important;
    margin: 0 !important;
  }

  /* Скрываем стрелки-псевдоэлементы на мобильных */
  .workflow-step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 36px;
    align-self: center;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 16px;
  }

  .requirements-list p {
    text-align: center;
    font-size: 14px;
  }

  .hero-transition {
    margin-top: -100px;
    margin-bottom: -100px;
  }

  .hero-transition svg {
    height: 146px;
    min-width: 146px;
  }

  .benefits {
    padding: 0 0;
  }

  .how-it-works {
    margin-top: -1px;
  }

  .benefits::after,
  .how-it-works-bg::before {
    height: 100px;
    border-radius: 40px 40px 0px 0px !important;
    margin-top: 1px;
  }

  .how-it-works-bg {
    height: 100px;
    margin-top: -1px;
  }

  .section-title {
    margin-top: -120px;
    padding-top: 30px;
  }

  .benefits .section-title {
    margin-top: 0px;
    padding-top: 30px;
  }

  .benefits-grid {
    padding-bottom: 10px;
    margin-top: 40px;
  }

  .fixed-action-btn {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 30px;
  }

  .action-btn {
    width: 120px;
    height: 120px;
    font-size: 16px;
  }

  /* Section Separators Mobile */
  .section-separator {
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
    margin-top: -1px;
  }

  .white-separator {
    height: 80px;
  }

  .gray-separator {
    height: 80px;
  }

  /* Contacts Page Mobile */
  .contacts-page {
    padding-top: 60px; /* Отступ для мобильного хедера */
  }

  .contacts-card {
    width: 90%;
    max-width: 499px;
    padding: 20px;
    height: auto;
  }

  .contact-label,
  .contact-value {
    font-size: 14px;
  }

  /* Modal Mobile */
  .modal-container {
    max-width: 95%;
    margin: 20px;
    border-radius: 20px;
  }

  .modal-content {
    padding: 20px 30px 40px 30px;
  }

  .modal-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .contact-tab {
    font-size: 12px;
    padding: 6px 12px;
  }

  .form-field input {
    height: 48px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .modal-submit-btn {
    height: 48px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header {
    border-radius: 0px 0px 15px 15px;
  }

  .header-content {
    height: 50px;
    padding: 0 15px;
  }

  .logo img {
    height: 32px;
    width: 26px;
  }

  .mobile-nav-content {
    padding: 80px 15px 30px 15px;
    max-width: 280px;
  }

  .mobile-nav-link {
    font-size: 16px;
    padding: 10px 12px;
  }

  .mobile-cta-btn {
    font-size: 15px;
    padding: 10px 20px;
  }

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

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

  .hero-additional {
    font-size: 14px;
  }

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

  .benefit-title {
    font-size: 16px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .section-group-title {
    font-size: 16px;
  }

  .included-item {
    font-size: 14px;
    margin-bottom: 4px;
    padding: 4px 0;
  }

  .requirements-subtitle {
    font-size: 14px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .fixed-action-btn {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 25px;
  }

  .action-btn {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  /* Section Separators Mobile Small */
  .section-separator {
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
  }

  .white-separator {
    height: 80px;
  }

  .gray-separator {
    height: 80px;
  }

  .benefits::after,
  .how-it-works-bg::before {
    height: 100px;
    border-radius: 40px 40px 0px 0px !important;
    margin-top: 1px;
  }

  /* Contacts Page Mobile Small */
  .contacts-page {
    padding-top: 50px; /* Отступ для очень маленького хедера */
  }

  /* Modal Mobile Small */
  .modal-content {
    padding: 15px 20px 30px 20px;
  }

  .modal-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-type-selector {
    flex-direction: column;
    gap: 4px;
  }

  .contact-tab {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Contacts Page Styles */
.contacts-page {
  padding-top: 80px; /* Отступ для фиксированного хедера */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.contacts-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
}

.contacts-card {
  background: #f9fafc;
  border-radius: 33px;
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1);
  padding: 31px 28px;
  width: 499px;
  height: 243px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 48px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
  color: #1a365d;
}

.contact-value {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
  color: #2c7a7b;
}

.contact-value a {
  color: #2c7a7b;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Стили для иконок */
.phone-icon {
  background: url('data:image/svg+xml, <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.24 21.58C16.12 27.24 20.76 31.86 26.42 34.76L30.82 30.36C31.36 29.82 32.16 29.64 32.86 29.88C35.1 30.62 37.52 31.02 40 31.02C41.1 31.02 42 31.92 42 33.02V40C42 41.1 41.1 42 40 42C21.22 42 6 26.78 6 8C6 6.9 6.9 6 8 6H15C16.1 6 17 6.9 17 8C17 10.5 17.4 12.9 18.14 15.14C18.36 15.84 18.2 16.62 17.64 17.18L13.24 21.58Z" fill="%231A365D"/></svg>'),
    no-repeat center;
  background-size: 48px 48px;
}

.location-icon {
  background: url('data:image/svg+xml,<svg width="28" height="40" viewBox="0 0 28 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 0C6.268 0 0 6.268 0 14c0 10.5 14 26 14 26s14-15.5 14-26c0-7.732-6.268-14-14-14zm0 19c-2.761 0-5-2.239-5-5s2.239-5 5-5 5 2.239 5 5-2.239 5-5 5z" fill="%231A365D"/></svg>')
    no-repeat center;
  background-size: 28px 40px;
}

.email-icon {
  background: url('data:image/svg+xml,<svg width="40" height="32" viewBox="0 0 40 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 0H4C1.8 0 .02 1.8.02 4L0 28c0 2.2 1.8 4 4 4h32c2.2 0 4-1.8 4-4V4c0-2.2-1.8-4-4-4zm0 8l-16 10L4 8V4l16 10L36 4v4z" fill="%231A365D"/></svg>')
    no-repeat center;
  background-size: 40px 32px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 681px;
  height: auto;
  max-height: 90vh;
  background: rgba(237, 241, 252, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 33px;
  box-shadow: 0px 4px 15.8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
}

.modal-content {
  padding: 30px 88px 50px 88px;
}

.modal-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a365d;
  margin-bottom: 40px;
  text-align: left;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  position: relative;
}

.form-field input {
  width: 100%;
  height: 42px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a365d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus {
  outline: none;
  border-color: #e99339;
  box-shadow: 0 0 0 3px rgba(233, 147, 57, 0.1);
}

.form-field input::placeholder {
  color: #718096;
}

/* Contact Type Selector */
.contact-type-selector {
  display: flex;
  background: #f7fafc;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
}

.contact-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #718096;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-tab.active {
  background: #ffffff;
  color: #1a365d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-tab:hover {
  color: #1a365d;
}

.contact-tab svg {
  width: 16px;
  height: 16px;
}

.modal-submit-btn {
  width: 100%;
  height: 50px;
  background: #e99339;
  border: none;
  border-radius: 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  margin-top: 24px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-submit-btn:hover {
  background: #d17e28;
  transform: translateY(-1px);
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  font-family: 'Open Sans', sans-serif !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.flatpickr-day.selected {
  background: #e99339 !important;
  border-color: #e99339 !important;
}

.flatpickr-day:hover {
  background: rgba(233, 147, 57, 0.1) !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(233, 147, 57, 0.1) !important;
}

.finishing {
  position: relative;
  background-color: #000;
  height: 220px;
}

/* Section Separators */
.section-separator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom-left-radius: 88px;
  border-bottom-right-radius: 88px;
}

.white-separator {
  height: 88px;
  background-color: #fff;
}
