@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0c0d0e;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(23, 204, 212, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

.nav-link:hover {
    color: #0c0d0e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3568b0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.8), rgba(6, 182, 212, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.hero-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    position: relative;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-accent {
    color: #064ed4;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #3568b0;
    color: white;
    border: 2px solid #0369a1;
}

.btn-primary:hover {
    background: #0d0c93;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 105, 161, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #0369a1;
}

.btn-full {
    width: 100%;
}

.floating-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.drop {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.drop-1 {
    width: 16px;
    height: 16px;
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.drop-2 {
    width: 24px;
    height: 24px;
    top: 33%;
    right: 25%;
    animation-delay: 2s;
}

.drop-3 {
    width: 12px;
    height: 12px;
    bottom: 33%;
    left: 33%;
    animation-delay: 4s;
}

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

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.text-white {
    color: white !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #3568b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #f0f9ff);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-bottle {
    width: 120px;
    height: 180px;
    background: linear-gradient(to bottom, #bfdbfe, #3b82f6);
    border-radius: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-bottle::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(to bottom, #17ccd4, #a1bbd7);
    border-radius: 52px;
}

.water-bottle svg {
    width: 48px;
    height: 48px;
    color: #3568b0;
    position: relative;
    z-index: 1;
}

.product-info {
    padding: 48px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #0c0d0e;
}

.product-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #ace304;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3568b0;
}

.price-unit {
    color: #515050;
    margin-left: 8px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #a1bbd7);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: #ace304;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    color: #515050;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #0c0d0e;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(53, 104, 176, 0.9), rgba(23, 204, 212, 0.8));
    z-index: -1;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    background: linear-gradient(135deg, #0d0c93, #3568b0);
    padding: 48px;
    color: white;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #a1bbd7;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-value {
    color: #a1bbd7;
}

.contact-form-container {
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #0c0d0e;
}

.form-input {
    padding: 16px;
    border: 2px solid #a1bbd7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #3568b0;
    box-shadow: 0 0 0 3px rgba(53, 104, 176, 0.1);
}

.success-message {
    text-align: center;
    padding: 48px;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #ace304;
    margin: 0 auto 16px;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0c0d0e;
}

.success-message p {
    color: #515050;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0 24px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    color: #17ccd4;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #a1bbd7;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: #17ccd4;
}

.footer-hours {
    color: #a1bbd7;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom {
    border-top: 1px solid #515050;
    padding-top: 24px;
    text-align: center;
    color: #a1bbd7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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


    .product-image {
        height: 300px;
    }

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

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 32px;
    }

    .contact-form-container {
        padding: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .product-info {
        padding: 32px;
    }

    .contact-info,
    .contact-form-container {
        padding: 24px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #3568b0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d0c93;
}

/* Smooth Animations */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-link {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 24px;
    height: 24px;
}
.nav-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link-nav {
    color: white;
    transition: color 0.3s ease;
}

.social-link-nav:hover {
    color: #0c0d0e;
}

.social-icon-nav {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .nav-socials {
        display: none;
    }
}
.nav-socials-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-socials-mobile {
        display: flex;
        gap: 16px;
        margin-top: 32px;
    }
}
.contact-qr {
    margin-top: 140px;
    text-align: center;
}
.contact-qr-text {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #bfdbfe;
}

/* Unavailable badge styles */
.unavailable-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    z-index: 10;
}

/* Disabled button styles */
.btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn:disabled:hover {
    background: #9ca3af;
    transform: none;
}