/* Siding Page Styles */

/* Hero Section */
.siding-hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}

.siding-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 26, 49, 0.7);
}

.siding-hero .wide-container {
    position: relative;
    z-index: 2;
}

.siding-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.siding-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.siding-hero .trust-badges {
    margin-bottom: 20px;
}

.siding-hero .trust-badge {
    display: inline-block;
    background-color: rgba(42, 131, 71, 0.9);
    color: white;
    padding: 8px 16px;
    margin: 0 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.siding-hero .cta-button {
    display: inline-block;
    background-color: #2A8347;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(42, 131, 71, 0.3);
}

/* Benefits Section */
.siding-benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.siding-benefits h2 {
    font-size: 36px;
    color: #031a31;
    margin-bottom: 20px;
}

.siding-benefits .section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.benefit-icon {
    background-color: #2A8347;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.benefit-card h4 {
    color: #031a31;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Siding Types Section */
.siding-types {
    padding: 80px 0;
    background-color: white;
}

.siding-types h2 {
    font-size: 36px;
    color: #031a31;
    margin-bottom: 20px;
}

.siding-types .section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Carousel Padding Fix */
.siding-types .carousel-inner {
    padding-bottom: 60px;
}

.siding-type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
}

.siding-type-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.siding-type-card .card-content {
    padding: 25px;
}

.siding-type-card h4 {
    color: #031a31;
    margin-bottom: 15px;
}

.siding-type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.siding-type-card .best-for {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.siding-type-card .best-for strong {
    color: #2A8347;
}

.siding-type-card .best-for span {
    color: #666;
}

/* Carousel Controls */
.siding-types .carousel-control-prev,
.siding-types .carousel-control-next {
    width: 5%;
    color: #2A8347;
}

.siding-types .carousel-control-prev-icon,
.siding-types .carousel-control-next-icon {
    background-image: none;
}

.siding-types .carousel-control-prev i,
.siding-types .carousel-control-next i {
    font-size: 2rem;
    color: #2A8347;
}

.siding-types .carousel-indicators {
    bottom: -50px;
}

.siding-types .carousel-indicators button {
    background-color: #2A8347;
}

.siding-types .cta-button {
    display: inline-block;
    background-color: #2A8347;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(42, 131, 71, 0.3);
}

/* Expert Advice Section */
.expert-advice {
    text-align: center;
}

.expert-advice h4 {
    color: #031a31;
    margin-bottom: 15px;
}

.expert-advice p {
    color: #666;
    margin-bottom: 20px;
}

.expert-advice .cta-button {
    display: inline-block;
    background-color: #2A8347;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.brands-section h2 {
    font-size: 36px;
    color: #031a31;
    margin-bottom: 20px;
}

.brands-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.brand-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.brand-carousel {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 100px;
    align-items: center;
}

.brand-logo {
    flex-shrink: 0;
    min-width: 200px;
    text-align: center;
}

.brand-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
}

/* Brand Carousel Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-carousel-container:hover .brand-carousel {
    animation-play-state: paused;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: white;
}

.process-section h2 {
    font-size: 36px;
    color: #031a31;
    margin-bottom: 20px;
}

.process-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step-number {
    background-color: #2A8347;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: bold;
}

.process-step h4 {
    color: #031a31;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.process-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.process-details h3 {
    color: #031a31;
    margin-bottom: 20px;
}

.process-details ul {
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

.process-timeline {
    background-color: #2A8347;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.process-timeline h3 {
    margin-bottom: 20px;
}

.process-timeline h5 {
    margin-bottom: 10px;
}

.process-timeline ul {
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    color: #031a31;
    margin-bottom: 20px;
}

.trust-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.trust-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.trust-card .trust-icon {
    background-color: #2A8347;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.trust-card h4 {
    color: #031a31;
    margin-bottom: 15px;
}

.trust-card p {
    color: #666;
    line-height: 1.6;
}

.service-area-highlight {
    background: linear-gradient(135deg, #2A8347 0%, #5b812a 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.service-area-highlight h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.service-area-highlight p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-area-grid {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
}

.service-area-grid strong {
    display: block;
    margin-bottom: 5px;
}

.service-area-grid small {
    font-size: 0.9em;
}

.service-area-link {
    color: white;
    text-decoration: underline;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #031a31;
}

.faq-section .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.faq-section .accordion-button {
    background-color: #f8f9fa;
    border: none;
    padding: 20px;
    font-weight: 600;
    color: #031a31;
}

.faq-section .accordion-body {
    padding: 20px;
}

.faq-cta {
    text-align: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
}

.faq-cta h3 {
    color: #031a31;
    margin-bottom: 20px;
}

.faq-cta p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta .cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.faq-cta .cta-button.primary {
    background-color: #2A8347;
    color: white;
}

.faq-cta .cta-button.secondary {
    background-color: #031a31;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .siding-hero h1 {
        font-size: 36px;
    }
    
    .siding-hero p {
        font-size: 18px;
    }
    
    .siding-hero .trust-badge {
        display: block;
        margin: 5px auto;
        max-width: 200px;
    }
    
    .brand-carousel {
        animation-duration: 20s;
        gap: 60px;
    }
    
    .brand-logo {
        min-width: 150px !important;
    }
    
    .brand-logo img {
        max-width: 150px !important;
        max-height: 75px !important;
    }
    
    .process-details,
    .process-timeline {
        padding: 25px;
    }
    
    .service-area-highlight {
        padding: 30px;
    }
    
    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
