/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: url("../img/contact.png") center center;
    background-size: cover;
    position: relative;
    border-bottom: 2px solid #ff9900;
  }
  
  #hero:before {
    content: "";
    background: rgba(28, 23, 23, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .container {
    position: relative;
    padding-top: 72px;
    text-align: left;
  }
  
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 1.5;
  }
  
  #hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #ff9900;
  }
  
  #hero .btn-get-started:hover {
    background: #e68a00;
  }
  
  #hero .hero-img {
    position: relative;
  }
  
  #hero .hero-img .lottie-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 991px) {
    #hero {
      height: 100vh;
      text-align: center;
    }
  
    #hero .container {
      text-align: center;
    }
  
    #hero .hero-img .lottie-container {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 575px) {
    #hero .btn-get-started {
      font-size: 16px;
      padding: 10px 24px 11px 24px;
    }
  }

  /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .contact .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .contact .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #666;
  }
  
  .contact .section-title p {
    font-size: 18px;
    color: #ff9900;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact .info-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .contact .info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .contact .info-box i {
    font-size: 40px;
    color: #ff9900;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .contact .info-box h3 {
    font-size: 24px;
    color: #666;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .contact .info-box p {
    font-size: 18px;
    color: #999;
    line-height: 1.6;
  }
  
  .contact .map-responsive {
    overflow: hidden;
    padding-bottom: 90%;
    position: relative;
    height: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  
  .contact .php-email-form {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact .php-email-form .form-group {
    margin-bottom: 30px;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 5px;
    border: none;
    padding: 20px;
    font-size: 16px;
    background-color: #f9f9f9;
    color: #666;
    transition: all 0.3s;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
  }
  
  .contact .php-email-form button[type="submit"] {
    background-color: #ff9900;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .contact .php-email-form button[type="submit"]:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
  }
  
  .contact .sent-message,
  .contact .loading,
  .contact .error-message {
    display: none;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .contact .sent-message {
    background-color: #d4edda;
    color: #155724;
  }
  
  .contact .loading {
    background-color: #fff3cd;
    color: #856404;
  }
  
  .contact .error-message {
    background-color: #f8d7da;
    color: #721c24;
  }
  
  @media (max-width: 991px) {
    .contact {
      padding: 60px 0;
    }
  
    .contact .info-box {
      padding: 30px;
      margin-bottom: 30px;
    }
  
    .contact .php-email-form {
      padding: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .contact .section-title h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }
  
    .contact .section-title p {
      font-size: 16px;
    }
  
    .contact .info-box {
      padding: 20px;
    }
  
    .contact .info-box h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }
  
    .contact .info-box p {
      font-size: 16px;
    }
  
    .contact .php-email-form input,
    .contact .php-email-form textarea {
      padding: 15px;
      font-size: 14px;
    }
  
    .contact .php-email-form button[type="submit"] {
      padding: 12px 30px;
      font-size: 16px;
    }
  }