/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #1a3a5c;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.header-phone:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

/* Hero */
.hero {
    position: relative;
    background: url('https://mgx-backend-cdn.metadl.com/generate/images/1431368/2026-07-15/srgmfbqcaizq/hero-drain-service-professional.png') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.9) 0%, rgba(26,58,92,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge i {
    margin-right: 6px;
    color: #ff6b35;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-call {
    background: #ff6b35;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-call:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}

.btn-large {
    font-size: 1.25rem;
    padding: 18px 40px;
}

/* Services */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #1a3a5c;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3a5c, #2d5f8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}



/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #444;
    text-align: center;
    font-weight: 600;
}

/* Why Us */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3a5c, #2d5f8a);
    color: #fff;
}

.why-us .section-title {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-item {
    padding: 20px;
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #1a2a3a;
    color: #ccc;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 8px;
    color: #ff6b35;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ff6b35;
}

.social-link i {
    margin-right: 8px;
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* Call Float (Mobile) */
.call-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: pulse-call 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,107,53,0.6);
}

/* Animations */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255,107,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: 400px;
    }

    .ba-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 10px 14px;
        border-radius: 50%;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 14px 25px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}