/*
=====================================
AQUIBON WEBSITE - WATER SOLUTIONS PAGE CSS
=====================================
Project: Aquibon Water & Solar Solutions
Developer: Blaxium Hub
Author: Brian Guvava
Version: 1.0.0
=====================================
*/

/* ===== WATER SOLUTIONS HERO SECTION ===== */
.water-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.water-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.water-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(46, 125, 50, 0.9) 0%,
        rgba(33, 33, 33, 0.8) 50%,
        rgba(23, 162, 184, 0.9) 100%
    );
    z-index: 2;
}

.water-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.water-hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.water-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.water-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    text-align: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(-5px);
    color: var(--accent-orange);
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== WATER SERVICES SECTION ===== */
.water-services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.05), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
    border-color: var(--primary-green);
}

.service-card:hover::before {
    left: 100%;
}

.service-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, var(--white) 0%, rgba(46, 125, 50, 0.02) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    font-family: var(--font-secondary);
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary-green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section {
    padding: 5rem 0;
}

.service-detail-section.bg-light {
    background: rgba(248, 249, 250, 0.7);
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== PROCESS STEPS ===== */
.service-process {
    margin-top: 2rem;
}

.process-steps {
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* ===== STATISTICS ===== */
.service-stats {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-secondary);
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== SYSTEM BENEFITS ===== */
.system-benefits {
    margin-top: 2rem;
}

.benefit-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.benefit-item h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.benefit-item p {
    color: var(--text-gray);
    margin: 0;
    margin-left: 3rem;
    font-size: 0.9rem;
}

/* ===== PARTNER SHOWCASE ===== */
.partner-showcase {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* ===== STORAGE TYPES ===== */
.storage-type {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.storage-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
    border-color: var(--primary-green);
}

.storage-type i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.storage-type h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.storage-type p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== CAPACITY CALCULATOR ===== */
.capacity-calculator {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.calculator-form .form-group label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

#capacity-result {
    padding: 1rem;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    display: none;
}

#capacity-result.show {
    display: block;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 5rem 0;
}

.industry-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    border-color: var(--primary-green);
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.industry-card h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-black);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(46, 125, 50, 0.05);
    color: var(--primary-green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.water-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.water-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.water-cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .water-hero-title {
        font-size: 3rem;
    }
    
    .water-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .benefit-item h5 {
        display: block;
        margin-top: 0.5rem;
    }
    
    .benefit-item p {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .water-hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .water-hero-title {
        font-size: 2.5rem;
    }
    
    .water-hero-subtitle {
        font-size: 1rem;
    }
    
    .water-services-section,
    .service-detail-section,
    .industries-section,
    .faq-section,
    .water-cta-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .water-cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .water-hero-title {
        font-size: 2rem;
    }
    
    .water-hero-content {
        padding: 1rem 0;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
        margin-left: 0 !important;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .industry-card i {
        font-size: 2.5rem;
    }
}
