/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Phone Contact Section */
.phone-contact-section {
    padding: 100px 0 100px;
}

.phone-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.phone-contact-title {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
    color: #444444;
    text-align: center;
    margin: 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 51px;
    height: 51px;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 100%;
    height: 100%;
}

.phone-number {
    font-family: "Jost", sans-serif;
    font-size: 4rem;
    color: #4c4c4c;
    line-height: 1;
	font-weight: 600;
}
.phone-number a {
    color: #000;
	text-decoration: none;
}
.phone-hours {
    font-size: 1rem;
    line-height: 1.8;
    color: #4c4c4c;
    text-align: center;
    margin: 0;
}

/* Form Section */
.form-section {
    padding: 0 0 120px;
}

.form-title {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
    color: #444444;
    text-align: center;
    margin: 0 0 40px;
}

.form-container {
    max-width: 916px;
    margin: 0 auto;
    background: white;
    border: 1px solid #ff5757;
    border-radius: 20px;
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    width: 100%;
}

.form-label-container {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-label {
    font-size: 1rem;
    line-height: 1.8;
    color: #4c4c4c;
    white-space: nowrap;
}

.required-label {
    background: #ff3a4c;
    color: white;
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.form-input-container {
    flex: 1;
    min-width: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    background: white;
    border: 1px solid rgba(255, 87, 87, 0.4);
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4c4c4c;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff5757;
}

.form-input {
    height: 42px;
}

.form-textarea {
    height: 150px;
    resize: vertical;
    min-height: 100px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(76, 76, 76, 0.5);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.radio-input {
    display: none;
}

.radio-button {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 50%;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-input:checked + .radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ff3a4c;
    border-radius: 50%;
    border: 1px solid rgba(255, 87, 87, 0.5);
}

.radio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4c4c4c;
    white-space: nowrap;
}

/* Form Dividers */
.form-divider {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    margin: 0;
}

/* Submit Button */
.form-submit {
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-button {
    background: #ff5757;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 5px 40px;
    font-size: 1.125rem;
    line-height: 1.8;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background: #ff3a4c;
    transform: translateY(-2px);
}
.news-link-button {
    border: 1px solid #ff3a4c;
    border-radius: 500px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff3a4c;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
    cursor: pointer;
    max-width: 300px;
    transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
}
.news-link-button:hover {
    background-color: #ff3a4c;
    color: white;
}
/* Contact Page Responsive */
@media (max-width: 768px) {
    .phone-contact-content {
        padding: 0 20px;
    }
    
    .phone-number {
        font-size: 3.5rem;
    }
    
    .phone-info {
       /* flex-direction: column;*/
        gap: 15px;
        text-align: center;
    }
    
    .form-container {
        padding: 20px;
        margin: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    

    .form-label-container {
flex: 0 0 0px;
}
	.form-input-container {
flex: 0;
width: 100%;
}
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
	.phone-contact-section {
  padding: 60px 0;
}
	.form-section {
  padding: 0 0 60px;
}
    .phone-contact-title,
    .form-title {
        font-size: 1.25rem;
    }
	.form-title {
  margin: 0 0 20px;
}
      .form-container {
    margin: 0;
  }
    .phone-number {
        font-size: 2.5rem;
    }
    .phone-contact-content {
  gap: 20px;
}
    .phone-icon {
        width: 32px;
        height: 32px;
    }
    
    .form-container {
        border-radius: 12px;
        padding: 16px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.875rem;
    }
    
    .submit-button {
        font-size: 1rem;
    }
	.form-input-container {
  width: 100%;
}
	  .form-row {
       flex-direction: column;
        gap: 10px;
    }
	    .form-label-container {
        flex: none;
        width: 100%;
    }
}