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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        radial-gradient(circle at 20% 80%, rgba(147, 197, 253, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #bae6fd 50%, #7dd3fc 75%, #38bdf8 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(96, 165, 250, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.08) 0%, transparent 30%);
    animation: waterFlow 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes waterFlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05) rotate(-0.5deg);
        opacity: 1;
    }
    75% {
        transform: scale(1.15) rotate(0.8deg);
        opacity: 0.85;
    }
}

/* Water wave overlay for sections */
.water-overlay {
    position: relative;
    overflow: hidden;
}

.water-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="waveGrad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%2393C5FD;stop-opacity:0.05" /><stop offset="50%" style="stop-color:%2360A5FA;stop-opacity:0.08" /><stop offset="100%" style="stop-color:%233B82F6;stop-opacity:0.05" /></linearGradient></defs><path d="M0,200 Q300,100 600,150 T1200,100 L1200,600 L0,600 Z" fill="url(%23waveGrad)"/></svg>') center/cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

.water-overlay > * {
    position: relative;
    z-index: 1;
}

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

/* Navigation */
.navbar {
    background: #1E3A8A;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #60A5FA;
    margin: 0;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #E5E7EB;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #60A5FA;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(96, 165, 250, 0.85) 100%),
        radial-gradient(ellipse at top, rgba(219, 234, 254, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 45% 70%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px);
    background-size: 200px 200px, 150px 150px, 300px 300px, 180px 180px, 250px 250px;
    animation: bubbleFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) translateX(8px);
        opacity: 0.7;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #60A5FA;
    color: white;
}

.btn-primary:hover {
    background: #3B82F6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1E3A8A;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.water-icon {
    font-size: 15rem;
    color: #60A5FA;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%),
        radial-gradient(ellipse at top left, rgba(147, 197, 253, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(147, 197, 253, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(96, 165, 250, 0.08) 50%, transparent 70%);
    animation: waveShimmer 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.services > * {
    position: relative;
    z-index: 1;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E3A8A;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 197, 253, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.service-card:hover::before {
    left: 100%;
}

.service-card i {
    font-size: 3rem;
    color: #3B82F6;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background: #1E3A8A;
    color: white;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: #60A5FA;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><defs><linearGradient id="footerWave" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2360A5FA;stop-opacity:0.2" /><stop offset="50%" style="stop-color:%233B82F6;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%231E40AF;stop-opacity:0.2" /></linearGradient></defs><path d="M0,0 Q300,100 600,50 T1200,80 L1200,300 L0,300 Z" fill="url(%23footerWave)"/><path d="M0,50 Q200,120 400,80 Q600,40 800,90 Q1000,140 1200,100 L1200,300 L0,300 Z" fill="url(%23footerWave)" opacity="0.6"/></svg>') top center/cover no-repeat;
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #60A5FA;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #60A5FA;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1E3A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #3B82F6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .water-icon {
        font-size: 8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Universal Hero Sections for all pages */
.page-hero, .about-hero, .products-hero, .contact-hero, .testimonials-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 600"><defs><linearGradient id="pageWave2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23DBEAFE;stop-opacity:0.3" /><stop offset="50%" style="stop-color:%2393C5FD;stop-opacity:0.4" /><stop offset="100%" style="stop-color:%2360A5FA;stop-opacity:0.2" /></linearGradient></defs><path d="M0,200 C400,100 800,300 1200,150 C1400,100 1500,200 1600,150 L1600,600 L0,600 Z" fill="url(%23pageWave2)"/><path d="M0,300 C300,200 600,350 900,250 C1200,150 1400,300 1600,200 L1600,600 L0,600 Z" fill="url(%23pageWave2)" opacity="0.7"/></svg>') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.page-hero::before, .about-hero::before, .products-hero::before, .contact-hero::before, .testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFFFFF" opacity="0.1"><animate attributeName="cy" values="100;-10" dur="8s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="1.5" fill="%23FFFFFF" opacity="0.15"><animate attributeName="cy" values="100;-10" dur="6s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="2.5" fill="%23FFFFFF" opacity="0.1"><animate attributeName="cy" values="100;-10" dur="10s" repeatCount="indefinite"/></circle></svg>');
    animation: drift 30s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(-10px); }
    75% { transform: translateX(-15px) translateY(-3px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Enhanced water-themed backgrounds for sections */
.stats-section, .bulk-section, .values-section, .business-hours, .quick-actions {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before, .bulk-section::before, .values-section::before, .business-hours::before, .quick-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="sectionWave" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%2393C5FD;stop-opacity:0.08" /><stop offset="50%" style="stop-color:%2360A5FA;stop-opacity:0.12" /><stop offset="100%" style="stop-color:%233B82F6;stop-opacity:0.08" /></linearGradient></defs><path d="M0,100 Q300,50 600,80 T1200,60 L1200,400 L0,400 Z" fill="url(%23sectionWave)"/><path d="M0,200 Q200,150 400,170 Q600,190 800,160 Q1000,130 1200,150 L1200,400 L0,400 Z" fill="url(%23sectionWave)" opacity="0.7"/></svg>') center bottom/cover no-repeat;
    pointer-events: none;
}

.stats-section > *, .bulk-section > *, .values-section > *, .business-hours > *, .quick-actions > * {
    position: relative;
    z-index: 1;
}

/* Enhanced card effects with water theme */
.testimonial-card, .product-card, .contact-method, .action-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 197, 253, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before, .product-card::before, .contact-method::before, .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.1), transparent);
    transition: left 0.5s;
}

.testimonial-card:hover::before, .product-card:hover::before, .contact-method:hover::before, .action-btn:hover::before {
    left: 100%;
}