* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #e1f5fe 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Water Bubbles Animation */
.bubble {
    position: fixed;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0.1));
    border-radius: 50%;
    opacity: 0.7;
    animation: rise 12s infinite ease-in;
    z-index: 0;
    pointer-events: none;
}

.bubble:nth-child(1) { width: 60px; height: 60px; left: 5%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 40px; height: 40px; left: 15%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 80px; height: 80px; left: 30%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 50px; height: 50px; left: 45%; animation-delay: 1s; }
.bubble:nth-child(5) { width: 70px; height: 70px; left: 60%; animation-delay: 3s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 75%; animation-delay: 5s; }
.bubble:nth-child(7) { width: 55px; height: 55px; left: 90%; animation-delay: 2.5s; }

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(50px) scale(1.1);
        opacity: 0.5;
    }
    100% {
        bottom: 110vh;
        transform: translateX(-50px) scale(0.8);
        opacity: 0;
    }
}

/* Flowing Water Effect at Bottom */
.water-flow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.15));
    z-index: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,10 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(33,150,243,0.2)"/></svg>');
    background-size: 50% 100%;
    animation: wave 8s linear infinite;
}

.wave:nth-child(2) {
    opacity: 0.6;
    animation: wave 12s linear infinite reverse;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Water Tractor Animation */
.water-tractor {
    position: absolute;
    bottom: 120px;
    left: -100px;
    font-size: 3rem;
    z-index: 5;
    animation: tractorMove 15s linear infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

@keyframes tractorMove {
    0% {
        left: -100px;
    }
    100% {
        left: 110vw;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

#langBtn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#langBtn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Header */
header {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
    position: relative;
    z-index: 10;
}

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

header .logo {
    text-align: left;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

header p {
    font-size: 0.9rem;
    opacity: 0.95;
    color: #e3f2fd;
    margin: 0;
}

header nav {
    display: flex;
    gap: 0.5rem;
}

header .nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

header .nav-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.hero h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    opacity: 0.95;
    color: #e3f2fd;
}

/* CTA Buttons */
.cta-buttons {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-call {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

@keyframes bubblePop {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.benefits h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #1976d2;
    font-weight: 600;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border-left: 4px solid #2196f3;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.2);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.benefit h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

/* Emergency Section */
.emergency {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.emergency-box {
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(255,255,255,0.8);
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.emergency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.emergency-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: #ffffff;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(33, 150, 243, 0.2);
    position: relative;
    z-index: 10;
}

.main-nav .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-btn {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 120px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* Forms */
.form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.2);
    border: 1px solid #e3f2fd;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1976d2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bbdefb;
    border-radius: 10px;
    font-size: 1rem;
    background: #f5f5f5;
    color: #424242;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2196f3;
    outline: none;
    background: white;
}

.btn-submit {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
}

/* Content Sections */
.content-section {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.content-section h2 {
    color: #1976d2;
    margin-bottom: 1rem;
    text-align: center;
}

.service-item {
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid #2196f3;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.2);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.service-item h3 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.service-item p {
    color: #424242;
}

.service-item ul {
    color: #616161;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin: 1rem 0;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.2);
    border: 1px solid #e3f2fd;
}

.pricing-row {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #e3f2fd;
}

.pricing-row:nth-child(even) {
    background: #f5f5f5;
}

.pricing-row:first-child {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    font-weight: bold;
}

.pricing-row:first-child .pricing-col {
    color: white;
}

.pricing-col {
    flex: 1;
    text-align: center;
    color: #424242;
}

/* Footer */
footer {
    background: transparent;
    color: #1976d2;
    text-align: center;
    padding: 3rem 0 1rem 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    min-height: 120px;
}

footer .container {
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    header nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero h3 {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 90%;
        max-width: 300px;
    }
    
    .main-nav .container {
        flex-direction: column;
    }
    
    .nav-btn {
        margin-bottom: 0.5rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-row {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-col {
        padding: 0.5rem 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .benefits h3 {
        font-size: 1.6rem;
    }
}