/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
    background-color: #f8f4f3;
}

.hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #f84525;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content {
    background-color: #fff;
}

.contact-info-section {
    /* background-color: white; */
    padding: 2.5rem;
    /* border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%; */
}

.info-title {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    color: #f84525;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-item {
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f84525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f8f4f3;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #f84525;
    box-shadow: 0 0 0 0.2rem rgba(248, 69, 37, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
}

.contact-form .form-label {
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-form .btn-primary {
    background-color: #f84525;
    border-color: #f84525;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #a21900;
    border-color: #a21900;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(248, 69, 37, 0.2);
}

/* CTA Section */
.contact-cta {
    background-color: #f8f4f3;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.cta-button {
    display: block;
    background-color: #8b2c1a;
    color: white;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #a21900;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .contact-info-section,
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .contact-info-section,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

}

@media (max-width: 556px) {
    .contact-form .form-control {
        padding: 0.5rem 0.75rem;
    }

    .contact-form .btn-primary {
        padding: 0.5rem 1rem;
    }

    .cta-button {
        padding: 0.75rem 1rem;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .info-title {
        font-size: 22px;
        margin-bottom: 0.5rem;
    }
    .info-description {
        margin-bottom: 0.5rem;
    }
        .contact-info-section{
            padd

        }

}