@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
       
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f8fafc;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.03;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

@keyframes rise {
    to {
        bottom: 110%;
        transform: translateX(100px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 75px;
}

.logo-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.nav-cta {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #d1fae5 100%);
    padding: 100px 30px 50px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-content {
    width: 60%;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 20px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 15px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary::after {
    content: '→';
    margin-left: 8px;
    transition: all 0.3s;
}

.btn-primary:hover::after {
    transform: translateX(3px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 38%;
    animation: slideInRight 1s ease-out;
}

.hero-visual img {
    width: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bottle-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle {
    position: absolute;
    width: 100px;
    height: 240px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50px;
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
    animation: bottleFloat 4s ease-in-out infinite;
}

.bottle:nth-child(1) {
    transform: scale(1.2) translateX(-70px);
    z-index: 3;
    animation-delay: 0s;
}

.bottle:nth-child(2) {
    transform: scale(0.9) translateX(70px);
    opacity: 0.7;
    animation-delay: 0.5s;
}

.bottle:nth-child(3) {
    transform: scale(0.7) translateX(0px) translateY(40px);
    opacity: 0.4;
    animation-delay: 1s;
}

@keyframes bottleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.water-drop {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: dropFloat 5s ease-in-out infinite;
}

.water-drop:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.water-drop:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 1s;
}

.water-drop:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

@keyframes dropFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-25px) scale(1.2);
        opacity: 1;
    }
}

/* Stats Section */
.stats {
    background: white;
    padding: 40px 30px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 80px 30px;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card:hover { 
    background: rgba(37, 99, 235, 0.4);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.product-icon {
    height: 200px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 18px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.4s;
    padding: 12px;
}

.product-icon img {
    height: 100%;
    object-fit: contain;
}

.product-card:hover .product-icon {
    transform: scale(1.08) rotate(3deg);
}

.product-size {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.product-features li {
    padding: 6px 0;
    color: #64748b;
    font-size: 13px;
    padding-left: 22px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.product-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Features Section */
.features {
    padding: 80px 30px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #3968db;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 30px;
    background: white;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    font-size: 50px;
    color: #2563eb;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 25px;
}

.testimonial-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 15px;
}

.author-info p {
    color: #64748b;
    font-size: 13px;
}

/* CTA Section */
.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 30px;
    background: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-method:hover {
    background: #e0f2fe;
    transform: translateX(8px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-details p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* FAQ Section */
.faq {
    padding: 80px 30px;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question.active {
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    color: #1e40af;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 30px 25px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

img.logo-icon-footer {
    max-width: 120px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-4px);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Hide Terms & Conditions and Privacy Policy links */
.footer-section:last-child .footer-links li:nth-child(3),
.footer-section:last-child .footer-links li:nth-child(4) {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 45px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #2563eb;
}

/* ============================================
   TABLET RESPONSIVE (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-section {
        max-width: 65px;
    }
    
    .nav-cta {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .hero {
        padding: 90px 20px 40px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        width: 55%;
        margin-top: 25px;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .products {
        padding: 60px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-icon {
        height: 160px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .features {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 34px;
    }
    
    .contact {
        padding: 60px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 34px;
    }
    
    /* FAQ Tablet */
    .faq {
        padding: 60px 20px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

/* ============================================
   MOBILE RESPONSIVE (Below 768px)
   NO ANIMATIONS - Standard font sizes
   ============================================ */
@media (max-width: 768px) {
    /* ========================================
       DISABLE ALL ANIMATIONS ON MOBILE
       ======================================== */
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
    
    .bubble {
        display: none;
    }
    
    .animated-bg {
        display: none;
    }
    
    .water-drop {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Navigation Mobile */
    nav {
        padding: 6px 0;
    }
    
    nav.scrolled {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-section {
        max-width: 55px;
    }
    
    .nav-cta {
        padding: 6px 16px;
        font-size: 11px;
        border-radius: 25px;
    }
    
    /* ========================================
       HERO MOBILE - Centered Layout, No Image
       ======================================== */
    .hero {
        min-height: auto;
        padding: 60px 15px 25px;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    .badge {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 8px;
        border-radius: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .hero p {
        display: none;
    }
    .hero p.hero-subtitle {
        display: block;
        margin-bottom: 15px;
}
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .hero-buttons .btn-primary::after {
        margin-left: 6px;
        font-size: 13px;
    }
    
    .hero-buttons .btn-secondary {
        border-width: 2px;
        display: inline-flex;
    }
    
    .hero-visual {
        display: none;
    }
    
    /* ========================================
       STATS MOBILE - Bigger Fonts
       ======================================== */
    .stats {
        padding: 3px 15px;
        box-shadow: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 8px 4px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 10px;
        line-height: 1.3;
    }
    
    /* ========================================
       PRODUCTS MOBILE - Bigger Images & Show Features
       ======================================== */
    .products {
        padding: 15px 15px 25px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-tag {
        padding: 5px 14px;
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 0px;
        line-height: 24px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 15px 12px;
        border-radius: 16px;
    }
    
    .product-icon {
        height: 120px;
        border-radius: 12px;
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .product-size {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .product-price {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .product-features {
        display: block;
        margin-bottom: 12px;
    }
    
    .product-features li {
        font-size: 12px;
        padding: 4px 0;
        padding-left: 18px;
    }
    
    .product-btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    /* ========================================
       FEATURES MOBILE - Bigger Fonts
       ======================================== */
    .features {
        padding: 20px 15px 30px;
    }
    
    .features .section-header {
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
    
    .features .section-title {
        font-size: 20px;
    }
    
    .features .section-description {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px 14px;
        border-radius: 14px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* ========================================
       TESTIMONIALS MOBILE - Bigger Fonts
       ======================================== */
    .testimonials {
        padding: 30px 15px;
    }
    
    .testimonials .section-title {
        font-size: 20px;
    }
    
    .testimonials .section-description {
        font-size: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px 18px;
        border-radius: 16px;
    }
    
    .quote-icon {
        font-size: 40px;
        top: 12px;
        right: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .author-info h4 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    /* ========================================
       CTA MOBILE - Bigger Fonts
       ======================================== */
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    
    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* ========================================
       CONTACT MOBILE - Bigger Fonts
       ======================================== */
    .contact {
        padding: 30px 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .contact-info > p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .contact-methods {
        gap: 12px;
    }
    
    .contact-method {
        padding: 14px;
        gap: 14px;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .contact-details h4 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    /* Contact Form - Bigger Fonts */
    .contact-form {
        padding: 20px 18px;
        border-radius: 18px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 12px;
        border-width: 1.5px;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    /* ========================================
       FAQ MOBILE - Bigger Fonts
       ======================================== */
    .faq {
        padding: 30px 15px;
    }
    
    .faq .section-title {
        font-size: 20px;
    }
    
    .faq .section-description {
        font-size: 14px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 14px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 16px 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* ========================================
       FOOTER MOBILE - Bigger Fonts, Centered Logo
       ======================================== */
    footer {
        padding: 35px 15px 20px;
    }
    
    .footer-container {
        display: block;
        margin-bottom: 25px;
    }
    
    /* Footer Brand - Centered */
    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-brand h3 {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    img.logo-icon-footer {
        max-width: 100px;
    }
    
    .footer-brand p {
        font-size: 13px;
        max-width: 320px;
        margin: 0 auto 18px;
        text-align: center;
        line-height: 18px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    /* Footer Sections - 2 Column Grid */
    .footer-section {
        display: inline-block;
        width: 48%;
        vertical-align: top;
        margin-bottom: 20px;
    }
    
    .footer-section:nth-child(2) {
        float: left;
        width: 48%;
    }
    
    .footer-section:nth-child(3) {
        float: right;
        width: 48%;
    }
    
    .footer-section:nth-child(4) {
        float: left;
        width: 48%;
        clear: left;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        clear: both;
        padding-top: 20px;
        font-size: 12px;
    }
    
    /* WhatsApp Button Mobile - No Animation */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    
    /* Swiper Pagination Mobile */
    .swiper-pagination {
        margin-top: 12px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    /* ========================================
       DISABLE ANIMATIONS FOR MOBILE
       ======================================== */
    .badge,
    .hero h1,
    .hero-subtitle,
    .hero p,
    .hero-buttons,
    .hero-visual {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .product-card,
    .feature-card,
    .testimonial-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .logo-icon {
        animation: none !important;
    }
    
    .bottle {
        animation: none !important;
    }
    
    .water-drop {
        animation: none !important;
    }
    
    .bubble {
        animation: none !important;
        display: none;
    }
    
    .whatsapp-float {
        animation: none !important;
    }
}

/* ============================================
   SMALL MOBILE (Below 400px)
   ============================================ */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 12px;
    }
    
    .product-icon {
        height: 140px;
    }
    
    .product-size {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .product-features li {
        font-size: 12px;
    }
    
    .product-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-buttons .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .contact-info h2 {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 18px 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 13px;
    }
    
    .faq-answer p {
        font-size: 12px;
    }
}

/* ============================================
   TOUCH DEVICE IMPROVEMENTS
   ============================================ */
@media (hover: none) {
    .product-card:hover {
        transform: none;
        background: white;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .contact-method:hover {
        transform: none;
    }
    
    .nav-cta:hover {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
}

/* ============================================
   HIGH DPI SCREENS
   ============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-icon img,
    .hero-visual img,
    .logo-icon,
    .logo-icon-footer {
        image-rendering: -webkit-optimize-contrast;
    }
}