/* Page Header */
.page-header {
    background: linear-gradient(to right, #1a3c34, #4caf50);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header .header-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}
.page-header .breadcrumb {
    background: transparent;
    font-size: 1.1rem;
}
.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.page-header .breadcrumb-item.active {
    color: #ffd700;
}
.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('../images/contact-hero.jpg') no-repeat center/cover;
    filter: brightness(0.8);
}

/* Section Titles */
.section-subtitle {
    color: #4caf50;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c34;
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Form and Info Section */
.contact-form-card, .contact-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-form-title, .contact-info-title {
    font-size: 1.5rem;
    color: #1a3c34;
    margin-bottom: 1.5rem;
}
.contact-form-card .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
}
.contact-form-card .btn {
    background: #4caf50;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: background 0.3s;
}
.contact-form-card .btn:hover {
    background: #1a3c34;
}
.contact-info-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}
.contact-info-card a {
    color: #1a3c34;
    text-decoration: none;
}
.contact-info-card a:hover {
    color: #4caf50;
}
.contact-info-card .social-icons i {
    font-size: 1.5rem;
}

/* Why Contact Us Section */
.why-contact {
    background: #fff;
}
.why-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.why-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.why-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.why-card-text {
    font-size: 1rem;
    color: #666;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}
.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.accordion-button {
    background: #fff;
    color: #1a3c34;
    font-weight: bold;
}
.accordion-button:not(.collapsed) {
    background: #4caf50;
    color: #fff;
}
.accordion-body {
    background: #fff;
    color: #666;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(to right, #4caf50, #1a3c34);
    color: #fff;
}
.cta .btn:hover {
    background: #fff;
    color: #1a3c34;
}
.blink {
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}