@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
:root {
  --primary: #1976d2;
  --accent: #f7921e;
  --muted: #6b7280;
  --bg: #f5f6f8;
  --container-max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Onest", sans-serif;
  background: #fff;
  color: #111827;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.page-wrap {
  margin: 18px;
  border: 6px solid #f3f4f5;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgb(239, 240, 243);
}
header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  z-index: 100;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.logo img {
  height: 32px;
  margin-top: 3px;
}
.menu {
  display: flex;
  gap: 28px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.menu a:hover {
  color: var(--primary);
}
.btn {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 146, 30, 0.3);
}
.hero {
  position: relative;
  overflow: hidden;
  background: rgb(239, 240, 243);
  height: 700px;
  padding: 140px 0 120px;
}
.hero-inner {
  display: flex;
}
.hero-left {
  flex: 1.4;
  z-index: 2;
}
.hero-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero-sub {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 30px;
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
}
.hero-actions .btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 28px;
  text-decoration: none;
  transition: 0.3s ease;
}
.hero-actions .btn-primary:hover {
  background: #1257a3;
  cursor: pointer;
}
.hero-right {
  flex: 1;
  display: flex;
  margin-left: -100px;
}
.truck-placeholder {
  position: absolute;
  bottom: 0;
  width: 1166px;
  height: 700px;
  max-width: 100%;
  overflow: hidden;
}
.truck-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__bottom {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}
.hero__bottom p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
  color: var(--Color-Gray-700, rgba(139, 141, 152, 1));
  font-family: Onest;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 150px;
  margin-top: 80px;
}
.open {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.open.active {
  background: #0d47a1;
}
@media (max-width: 1024px) {
  header {
    width: 95%;
    padding: 10px 18px;
  }

  .menu {
    gap: 18px;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    flex: none;
  }

  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 24px;
    max-width: 600px;
    margin: 0 auto 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    margin-left: 0;
    justify-content: center;
  }

  .truck-placeholder {
    position: relative;
    height: 420px;
  }

  .hero__bottom {
    padding: 50px 0;
  }

  .hero__bottom p {
    text-align: center;
    font-size: 26px;
    line-height: 36px;
    max-width: 700px;
    margin-bottom: 0;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 5px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    gap: 16px;
    z-index: 999;
  }
  .menu.active {
    display: flex;
  }
  .open {
    display: flex;
  }
  header {
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    gap: 10px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 100px 0 60px;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .truck-placeholder {
    height: 320px;
  }

  .hero__bottom {
    padding: 40px 0;
  }

  .hero__bottom p {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
    line-height: 34px;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 20px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

  .truck-placeholder {
    height: 250px;
  }

  .hero__bottom {
    padding: 30px 0;
  }

  .hero__bottom p {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    padding: 0 16px;
  }
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.stat-item {
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: rgb(231, 232, 236);
}

.stat-number {
  color: rgba(30, 31, 36, 1);
  margin-bottom: 10px;
  font-size: 120px;
  font-weight: 300;
  line-height: 130px;
  letter-spacing: -6%;
  text-align: left;
}

.stat-description {
  color: rgba(139, 141, 152, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
}

.bottom-info {
  text-align: center;
}

.bottom-info p {
  font-size: 1em;
  color: #28a745;
  font-weight: 600;
}

/* -------------------------
   RESPONSIVE STYLES
-------------------------- */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
  }

  .stat-item {
    flex: 0 0 45%;
    text-align: center;
    padding: 0;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 80px;
    line-height: 90px;
    text-align: center;
  }

  .stat-description {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 16px;
  }

  .stat-item {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 64px;
    line-height: 74px;
  }

  .stat-description {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 48px;
    line-height: 58px;
  }

  .stat-description {
    font-size: 13px;
    line-height: 18px;
  }

  .stats-container {
    gap: 24px;
  }
}

.web__cards {
  display: flex;
  flex: 0 0 300px;
  gap: 16px;
  width: 1400px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 20px;
  scroll-behavior: smooth;

  mask-image: linear-gradient(to right, white 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, white 90%, transparent 100%);

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.web__cards::-webkit-scrollbar {
  display: none;
}

.web__body__card {
  width: 288px;
  min-width: 288px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.card__img {
  height: 85%;
  overflow: hidden;
}

.card__img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.card__text p {
  font-size: 16px;
  color: #333;
  margin: 0;
  white-space: normal;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.arrow-btn:hover {
  background-color: #e0e0e0;
}

.button__web {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background: #f5f6f8;
  border-radius: 50px;
  padding: 6px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
  background: #e9ecef;
}

.nav-arrow span {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 1;
}

/* 🔹 Responsivlik */
@media (max-width: 1400px) {
  .web__cards {
    width: 100%; /* endi kichik ekranlarda container o'lchamiga moslashadi */
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .web__cards {
    gap: 14px;
    padding-bottom: 18px;
  }

  .web__body__card {
    width: 240px;
    min-width: 240px;
    height: 340px;
  }

  .card__text p {
    font-size: 15px;
  }

  .arrow-btn {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 768px) {
  .web__cards {
    gap: 12px;
  }

  .web__body__card {
    width: 200px;
    min-width: 200px;
    height: 300px;
  }

  .card__text {
    padding-top: 10px;
  }

  .card__text p {
    font-size: 14px;
  }

  .arrow-btn {
    width: 32px;
    height: 32px;
  }

  .nav-arrow {
    width: 36px;
    height: 36px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .web__cards {
    gap: 10px;
  }

  .web__body__card {
    width: 160px;
    min-width: 160px;
    height: 260px;
  }

  .card__img img {
    border-radius: 20px;
  }

  .card__text p {
    font-size: 13px;
  }

  .arrow-btn {
    width: 28px;
    height: 28px;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.order-process-section {
  margin: 60px 18px;
  background-color: #102a43;
  color: #fff;
  border-radius: 20px;
  padding: 60px 40px;
}

.order-process-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.left-content {
  flex: 1 1 400px;
}

.process-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 0 16px 0;
}

.intro-text {
  font-size: 18px;
  color: #b3cde0;
  max-width: 520px;
  line-height: 1.6;
  margin-top: 320px;
}

.process-steps {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background-color: #174567;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.3s ease;
  cursor: pointer;
}

.step:hover {
  background-color: #1e5a8e;
  transform: translateY(-3px);
}

.step-icon {
  margin-top: 5px;
}

.step-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
}

.step-text p {
  margin: 4px 0 0;
  color: #b3cde0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

@media (max-width: 1024px) {
  .order-process-section {
    padding: 50px 30px;
  }

  .process-title {
    font-size: 42px;
    line-height: 52px;
  }

  .intro-text {
    font-size: 16px;
    margin-top: 0;
  }

  .order-process-container {
    justify-content: center;
    gap: 32px;
  }

  .process-steps {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .order-process-container {
    align-items: center;
    text-align: center;
  }

  .left-content {
    text-align: center;
  }

  .process-title {
    font-size: 36px;
    line-height: 44px;
  }

  .intro-text {
    max-width: 100%;
    font-size: 15px;
  }

  .process-steps {
    width: 100%;
    max-width: 500px;
  }

  .step {
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .order-process-section {
    padding: 40px 20px;
    margin: 40px 12px;
    border-radius: 16px;
  }

  .process-title {
    font-size: 28px;
    line-height: 36px;
  }

  .intro-text {
    font-size: 14px;
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .step-text h4 {
    font-size: 14px;
  }

  .step-text p {
    font-size: 13px;
    line-height: 18px;
  }
}
.video-surprise-section {
  padding: 80px 0;
  background-color: #fff;
  width: 100%;
}

.video-surprise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.video-title {
  color: #102a43;
  margin: 0;
  font-size: 52px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: left;
}

.video-content-right {
  position: relative;
}

.video-image-placeholder img {
  margin-top: 200px;
}

.play-button-overlay {
  position: absolute;
  top: 45%;
  left: 40px;
  transform: translateY(-50%);
  height: 150px;
  z-index: 10;
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.circular-text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 75px;
  font-size: 0.8em;
  font-weight: 600;
  color: #174567;
  text-transform: uppercase;
  white-space: nowrap;
}

.play-button-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.play-button-core:hover {
  background-color: #0056b3;
}

.play-button-core::after {
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  margin-left: 3px;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .video-surprise-container {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .video-title {
    font-size: 44px;
    line-height: 52px;
    text-align: center;
  }

  .video-image-placeholder img {
    margin-top: 120px;
    width: 100%;
    height: auto;
  }

  .play-button-overlay {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .video-surprise-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .video-title {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }

  .video-image-placeholder img {
    margin-top: 60px;
    border-radius: 16px;
  }

  .play-button-overlay {
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .play-button-core {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .video-surprise-section {
    padding: 50px 0;
  }

  .video-title {
    font-size: 28px;
    line-height: 36px;
  }

  .video-image-placeholder img {
    margin-top: 30px;
    width: 100%;
    border-radius: 12px;
  }

  .play-button-overlay {
    height: 90px;
    width: 90px;
  }

  .play-button-core {
    width: 70px;
    height: 70px;
  }

  .play-button-core::after {
    border-left: 12px solid #fff;
  }
}

.footer {
  height: 500px;
  background: rgba(239, 240, 243, 1);
  border-radius: 32px;
  position: relative;
  margin: 18px;
  overflow: hidden;
  padding: 20px 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.footer-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 140px;
}

.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-phone-block {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-phone-label {
  display: block;
  color: #9ca3af;
  font-size: 16px;
}

.footer-phone {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-pill {
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.footer-watermark {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Onest", sans-serif;
  font-size: 320px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(224, 225, 230, 1) 0%,
    rgba(224, 225, 230, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@media (max-width: 992px) {
  .footer {
    height: auto;
    padding: 40px 40px;
  }
  .footer-watermark {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .footer-phone {
    font-size: 32px;
  }

  .footer-phone-label {
    font-size: 14px;
  }

  .footer-social-row {
    flex-direction: column;
    align-items: center;
  }

  .social-pill {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 30px 20px;
    margin: 12px;
    border-radius: 24px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-phone {
    font-size: 24px;
  }

  .footer-phone-block {
    flex-direction: column;
    gap: 6px;
  }

  .footer-social-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .social-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .footer-watermark {
    font-size: 120px;
    bottom: -10px;
  }
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header-section h2 {
  color: rgba(30, 31, 36, 1);
  font-size: 52px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: left;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

#selectedLang {
  background: #1976d2;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#langOptions {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 140px;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#langOptions.active {
  display: block;
}

#langOptions li {
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

#langOptions li:hover {
  background: #f2f2f2;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlide {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  padding: 50px 40px 40px;
  position: relative;
  animation: modalSlide 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
  border-radius: 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

.modal-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.modal-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s;
  color: #333;
}

.form-input:focus {
  outline: none;
  border-color: #0088cc;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.form-input::placeholder {
  color: #bbb;
}

.form-select-wrapper {
  position: relative;
}

.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  background: #fafafa;
  cursor: pointer;
  color: #bbb;
  appearance: none;
  padding-right: 45px;
}

.form-select:focus {
  outline: none;
  border-color: #0088cc;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0088cc;
}

.checkbox-label {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0088cc;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.submit-btn:hover {
  background: #0077b3;
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .modal {
    padding: 40px 30px 30px;
  }
}
.custom-dropdown {
  position: relative;
  user-select: none;
}

.dropdown-selected {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-selected:hover {
  border-color: #007be9;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 6px;
  list-style: none;
  padding: 6px 0;
  display: none;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-list li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.dropdown-list li:hover {
  background: #eef6ff;
  color: #007be9;
}

.arrow {
  font-size: 12px;
  color: #666;
}
