.icon-box{
    background:#fff;
    border-radius: 10px;
    text-align: center;
    padding:30px 15px 15px 15px;
    min-height:225px;
    box-shadow: var(--shadow-soft);
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border:1px solid var(--gray-mid-color);
}
.icon-pad{
  background: var(--gray-light-color);
  width: 80px;
  height: 80px;
  display: flex;
  padding: 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.icon-pad svg{
 transform: scale(1.7);
  fill:var(--red-color);
  transition: fill 0.3s;
}
.contact-boxes a{
  color:var(--black-color);
  text-decoration: none;
}


.edge-to-edge::before {
  background: url('../images/bg-contact-us.webp') center / cover no-repeat;
}

.top-header{
  background: url('../images/banner-contact-us.webp') no-repeat center center;
}
/*--feedback form -------------------------*/
/* Grid Layout */
/*.row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.col {
    flex: 1;
}*/

#feedbackForm{
    width:50%;
    margin:0 auto;
    padding-top: 50px;
}
.col-full {
    width: 100%;
    
}


/* Inputs */
input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background: rgba(255,255,255,0.85);
    margin-top: 10px;
}

/* Focus State */
input:focus, textarea:focus {
    border-color: var(--maroon-color);
    box-shadow:0 0 5px rgba(0,120,255,0.4);
    outline: none;
}

/* Error Text */
.error {
 color: var(--bs-danger-text-emphasis);
  background: var(--bs-danger-bg-subtle);
  border-color: var(--bs-danger-border-subtle);
  padding: 4px;
  border-radius: 4px;
  display:block;
}
.error:empty {
    display: none;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--maroon-color);
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top:10px;
}

.btn-submit:hover {
    background: var(--red-color);
}

/* Response message */
#responseMessage {
    margin-top: 18px;
    text-align: center;
    font-size: 16px;
}
