/* 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/quote-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;
}

/* Quote Form Section */
.quote-form img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.quote-form .form-control,
.quote-form .form-select {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
}
.quote-form .form-label {
    color: #1a3c34;
    font-weight: 500;
}
.quote-form .btn {
    background: #4caf50;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
}
.quote-form .btn:hover {
    background: #1a3c34;
}
.quote-form .text-muted {
    font-size: 0.85rem;
}

/* Why Request a Quote Section */
.why-quote {
    background: #fff;
}
.quote-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;
}
.quote-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.quote-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.quote-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.quote-card-text {
    font-size: 1rem;
    color: #666;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(to right, #4caf50, #1a3c34);
    color: #fff;
}
.cta .btn:hover {
    background: #fff;
    color: #1a3c34;
}