.hero-wave {

    background: url('images/contact.png') center center/cover no-repeat;
    /* background-repeat: no-repeat; */
    height: 16rem;
    text-align: center;
    color: white;
    display: grid;
    justify-content: center;
    gap: -10px;
    align-items: center;
    font-size: larger;
}

.page-hero {
    margin-top: 5.4rem;
}

.contact-section {

    margin-top: 3rem;

}

.contact-info {

    text-align: center;

}

.contact-methods {

    display: flex;
    justify-content: center;
    gap: 10rem;
}

.contact-method {
    margin: 34px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.dash-div {

    display: flex;
    justify-content: center;
    border: 1px solid gray;
    margin: 2rem;
    border-radius: 54%;
}


.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #555;
    font-size: 16px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 15px;

}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle i {
    transform: rotate(45deg);
    /* Turns plus into an "x" or minus */
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    color: #333;
    background: #fafafa;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
    z-index: -1;
}

.faq-answer.open {
    padding: 15px 20px 20px;
    max-height: 500px;
    /* adjust if your answers are longer */
}


/* FORM CSS */

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 34rem;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
    margin-top: 8px;
}

.message {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 5px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.input01 {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 5px;
}

.form label .input01+span {
    position: absolute;
    left: 10px;
    top: 50px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input01:placeholder-shown+span {
    top: 40px;
    font-size: 0.9em;
}

.form label .input01:focus+span,
.form label .input01:valid+span {
    top: 50px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input01:valid+span {
    color: green;
}

.fancy {
    background-color: transparent;
    border: 2px solid #cacaca;
    border-radius: 0px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 390;
    letter-spacing: 2px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 8px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: " ";
    width: 1.7rem;
    height: 2px;
    background: #cacaca;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform: translateX(230%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: lowercase;
    text-decoration: none;
    color: #818181;
    transform: translateX(30%);
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: white;
    background: #cacaca;
}

.fancy:hover::before {
    width: 1.5rem;
    background: white;
}

.fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

/* .contact-form-container {



    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;

} */

@media (max-width: 576px) {

    .contact-methods {

        display: grid;
        gap: 0.3rem;

    }

    .faq-question {

        font-size: 16px;
    }

    .page-hero {
        margin-top: 4.8rem;
    }

    .form{

        width: 23rem;
    }
}

.footer-about>img {

    height: 5rem;
    border-radius: 7px;
}







.contact-form-container {
    max-width: 1000px;
    margin: auto;
  }
  
  .contact-form-container >  h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    

  }

  h2{
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .contact-form {
    display: grid;
    flex-direction: column;
    gap: 1.5rem;
  }

  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  
  input, textarea {
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 0.5rem 0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background-color: transparent;
  }
  
  input:focus, textarea:focus {
    border-color: #ff4d4f;
  }
  
  .full-width {
    width: 100%;
  }
  
  textarea {
    resize: vertical;
    border-bottom: 1px solid #ccc;

  }
  
  .submit-btn {
    margin-top: 1rem;
    background: #ff4d4f;
    border: none;
    color: #fff;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(255, 77, 79, 0.5);
    transition: all 0.3s ease;

    width: 15rem;
    justify-self: center;
  }
  
  .submit-btn:hover {
    box-shadow: 0 0 35px rgba(255, 77, 79, 0.6);
  }
  
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }

  @media (max-width: 576px){
    .hero-wave > p{
        font-size: 13px;
      }
  }
  