/* Contact Page Custom Styles */

/* General Spacing Utilities */
.sp_top_60 {
    padding-top: 60px;
}

.sp_bottom_60 {
    padding-bottom: 60px;
}

.sp_bottom_80 {
    padding-bottom: 80px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Section Title Styling */
.text__gradient {
    /*background: linear-gradient(45deg, #007bff, #6610f2);*/
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.contact__heading h3 {
    font-weight: 700;
    margin-top: 10px;
    color: #222;
}

/* Modern Form Styling */
.contact__input__wrapper {
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.contact__common__input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    background-color: #f8f9fa;
    padding: 0 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    color: #555;
}

/* Form Focus State */
.contact__common__input:focus {
    outline: none;
    background-color: #fff;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

textarea.contact__common__input {
    height: 150px;
    padding-top: 15px;
    resize: vertical;
}

/* Button Styling */
.default__button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.default__button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Consent Checkbox Styling */
.consent-label {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

/* Honeypot Field - Hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Contact Info Section */
.contact__info__right {
    padding-left: 40px;
}

.contact__info__card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact__single__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* Professional Icon Styling */
.contact__icon {
    font-size: 20px;
    color: #0c800c;
    background-color: rgb(12 128 12 / 9%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact__text h6 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.contact__text p,
.contact__text a {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.contact__text a:hover {
    color: #0c800c;
}

.contact__text p strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
}

.contact__img {
    margin-top: 30px;
    text-align: center;
}

/* Map Section */
.map-section-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Breadcrumb Fixes */
.breadcrumbarea__inner ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumbarea__inner ul li {
    color: #fff;
    margin-right: 10px;
}

.breadcrumbarea__inner ul li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-separator {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact__info__right {
        padding-left: 15px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .contact__input__wrapper {
        padding: 20px;
    }

    .contact__info__card {
        padding: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}