/* Wet Fire Page Specific Styles */

/* Global Title Styles - Red Color for All Titles */
h1, h2, h3, h4, h5, h6 {
    color: #dc3545 !important;
}

.inner-hero-section h1,
.content-section h2,
.solutions-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-section h3,
.industries-section h3,
.faq-section h1,
.cta-section h3,
.feature-item h4,
.accordion-header h5 {
    color: #dc3545 !important;
}

/* Row and Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-half {
    flex: 0 0 50%;
    padding: 0 15px;
}

/* Button styles handled by global CSS */

/* Featured Image */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tabs Container */
.tabs-container {
    margin: 40px 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-button {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #333;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-button.active,
.tab-button:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.tab-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Section Intro and Outro */
.section-intro,
.section-outro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-outro {
    margin: 40px auto 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-section h3 {
    text-align: center;
    color: #dc3545;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.why-choose-section h1 {
    text-align: center;
    color: #dc3545;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.why-choose-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-item h4 {
    color: #dc3545;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    order: 1;
}

.feature-item p {
    color: #333;
    line-height: 1.6;
    text-align: center;
    order: 2;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: white;
}

.industries-section h3 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 20px;
}

.industries-section ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.industries-section li {
    margin-bottom: 20px;
    line-height: 1.6;
}

.industries-section li b {
    color: #dc3545;
}

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

.faq-section h1 {
    text-align: center;
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-section h2 {
    text-align: center;
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header h5 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-header i {
    color: #dc3545;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
    max-height: 200px;
}

.accordion-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-section h3 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-section b {
    color: #dc3545;
}

/* Footer Styles */
.footer-content {
    background: #dc3545;
    padding: 60px 0 40px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-col h3 {
    color: #b8860b;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col .lastli {
    margin-top: 20px;
}

.footer-col .lastli a {
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer-bottom {
    background: #b8860b;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .col-half {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 15px;
    }
    
    .inner-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section,
    .solutions-section,
    .why-choose-section,
    .industries-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .tab-content {
        padding: 20px;
    }
}