/*
Theme Name: Baro Child
Theme URI: http://example.com
Description: Дочерняя тема для Baro Equipment
Author: Твое имя
Author URI: http://example.com
Template:
Version: 1.0
*/

/* Здесь будет твой CSS */


/* Общие стили */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  h1, h2, h3 {
    margin-bottom: 15px;
  }
  
  /* Кнопки */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b00;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .cta-btn i {
    font-size: 20px;
  }
  
  .cta-btn:hover {
    background: #ff7f22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  
  .cta-btn:active {
    transform: scale(0.97);
  }
  
  .btn-dark {
    background: #0b3d91;
  }
  
  .hero {
    background: url('assets/image/bacround.jpeg') center/cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 0;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .phone {
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
  }
  
  .phone i {
    margin-right: 8px;
    color: #ff6b00;
  }
  
  /* Equipment Grid */
  .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .price {
    font-size: 28px;
    color: #0b3d91;
    font-weight: bold;
    margin: 10px 0;
  }
  
  /* WHY CHOOSE */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: #f7f7f7;
  }
  
  .feature i {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 10px;
  }
  
  /* HOW IT WORKS */
  .steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .step {
    flex: 1;
    text-align: center;
    padding: 20px;
  }
  
  .step-number {
    font-size: 40px;
    font-weight: bold;
    color: #ff6b00;
  }
  
  .arrow {
    font-size: 30px;
    color: #0b3d91;
  }
  
  /* FORM */
  .form-box {
    max-width: 500px;
    margin: auto;
    margin-top: 30px;
  }
  
  .form-box input,
  .form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  /* CTA */
  .cta {
    background: #0b3d91;
    color: white;
    text-align: center;
    padding: 90px 0;
  }
  
  .cta i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  /* FOOTER */
  .footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px 0;
  }
  
  /* STICKY CALL BUTTON */
  .call-circle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
  }
  
  .call-circle:hover {
    transform: scale(1.1);
    background: #ff7f22;
  }
  
  .call-circle:active {
    transform: scale(0.95);
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .features {
      grid-template-columns: 1fr 1fr;
    }
    .arrow {
      display: none;
    }
  }
  
  @media (max-width: 600px) {
    .features {
      grid-template-columns: 1fr;
    }
    .hero h1 {
      font-size: 32px;
    }
  }