
/* --- Container --- */
.stats-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

/* --- Title --- */
.stats-section h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #404040;
}

/* --- Subtitle (SVG galochka bilan) --- */
.stats-subtitle {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
  font-size: 18px;
  color: #404040;
}

.stats-subtitle span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.stats-subtitle img {
  width: 18px;
  height: 18px;
}



/* --- Main Number --- */
.main-number {
  display: flex;
  align-items: center;
  font-size: 80px;
  font-weight: 800;
  color: #f02222;
  margin: 20px 0 10px 0;
  justify-content: center;
  margin-left: 30px;
  margin-right: 30px;
}

.main-number p{
  font-size: 16px;
  font-weight: 400;
    margin-left: 30px;
  margin-right: 30px;
}




.main-text {
  font-size: 16px;
  color: #555;
  font-weight: 300;
}

/* --- Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 ta ustun */
  gap: 70px; /* oralar ochiqroq */
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left; /* matn chapda */
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #404040;
}

.stat-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr); /* planshetda 2 ta ustun */
  }
}

@media (max-width: 600px) {
  .main-number {
    font-size: 36px;
  }

    .main-number p {
    font-size: 14px;
    font-weight: 500;
  }

  .stats-subtitle {
   font-size: 14px;
   gap: 20px;
  }

  .stats-section img{
    width: 14px;
  }

  .stat-card {
    padding: 25px;
  }

  .stats-grid {
    grid-template-columns: 1fr; /* telefonda 1 ta ustun */
  }
}










    @font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-Thin.ttf') format('truetype');
  font-weight: 100; /* Thin */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-Light.ttf') format('truetype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-SemiBold.ttf') format('truetype');
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_24pt-ExtraBold.ttf') format('truetype');
  font-weight: 800; /* ExtraBold */
  font-style: normal;
}










  .consult-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 60px 20px;
  }

  /* --- UMUMIY BLOK --- */
  .consult-box {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    width: 100%;
    padding: 40px;
    animation: consultFadeIn 0.8s ease;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* --- MAP --- */
  .map-container {
    position: relative;
    flex: 1 1 450px;
    max-width: 550px;
    height: 410px;
    border-radius: 20px;
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* --- FORM --- */
  .consult-textarea {
    width: 100%; /* 🔥 input bilan bir xil kenglikda bo‘ladi */
    height: 110px;
    resize: none;
    margin-bottom: 18px;
  }


  h2 {
    font-size: 24px;
    margin-top: -10px;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 600;
    color: #000;
  }

  .consult-group {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .consult-input, 
  .consult-textarea {
    flex: 1 1 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
  }

  .consult-input:focus, 
  .consult-textarea:focus {
    border: 1px solid #000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }

  .consult-textarea {
    width: 95%;
    height: 110px;
    resize: none;
    margin-bottom: 18px;
  }

  .consult-button {
    width: 100%;
    background: #f02222;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  }

  .consult-button:hover {
    transform: translateY(-2px);
    background: #e25656ff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }

  @keyframes consultFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 900px) {
    .consult-box {
      flex-direction: column;
      align-items: center;
      padding: 30px;
    }

    .map-container, .consult-form {
      max-width: 100%;
    }

    .map-container {
    flex: 1 1 150px;
  }
  }

  @media (max-width: 500px) {
    .consult-box {
      padding: 20px;
    }

    h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .consult-button {
      font-size: 15px;
      padding: 12px;
    }
          .consult-textarea {
    width: 90%;
  }
  }