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

/* Mobile Zoom-Out Alignment Fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        min-width: 320px;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scrolling on zoom out */
    .hero-container,
    .about-grid,
    .product-showcase,
    .usage-content,
    .story-content,
    .contact-content,
    .order-content {
        width: 100%;
        max-width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }
}

:root {
    /* Color Palette */
    --primary-green: #67C090;
    --secondary-blue: #26667F;
    --accent-purple: #124170;
    --light-green: #DDF4E7;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Typography */
    --font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-large: 24px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
}

/* Prevent zoom-out alignment issues */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        min-width: 320px;
    }
    
    /* Fix for zoom-out on mobile */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections stay within viewport */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(103, 192, 144, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-purple);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-blue));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Hero Video Styles */
.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(103, 192, 144, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--secondary-blue);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    opacity: 0.1;
    animation: blobMove 20s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 10s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(103, 192, 144, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-secondary:hover {
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
    border: 1px solid var(--light-green);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0;
    flex-shrink: 0;
    padding-right: 5px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Problems Solved Section */
.problems-solved {
    padding: var(--section-padding);
    background: var(--light-green);
}

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

.problem-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0 auto 15px auto;
    display: block;
}

.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-purple);
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: var(--white);
    border: 1px solid var(--light-green);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-gallery {
    position: relative;
}

/* Product Video Styles */
.product-video-container {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.main-image {
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Product Video Banner Section */
.product-video-banner {
    width: 100%;
    height: 150vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.product-video-banner-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* How to Use Section */
.how-to-use {
    padding: var(--section-padding);
    background: var(--light-green);
}

/* Usage Video Styles */
.usage-video-container {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.usage-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.usage-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: var(--section-padding);
    background: var(--white);
    border: 1px solid var(--light-green);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-intro,
.story-continued,
.story-success {
    margin-bottom: 25px;
}

.story-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-card {
    background: var(--light-green);
    border-radius: var(--border-radius-large);
    border: 2px solid var(--primary-green);
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
}

.founder-info {
    margin-top: 15px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    max-width: none;
}

.founder-signature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

.founder-signature p {
    color: var(--secondary-blue);
    font-weight: 500;
}

.founder-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

/* Story Video Styles */
.story-video-container {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--light-green);
}

/* Testimonials Video Styles */
.testimonials-video {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.reviews-video {
    max-width: 800px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.testimonial-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 2px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
    border: 1px solid var(--light-green);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.contact-form-container {
    background: var(--light-green);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Order Section */
.order {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.order-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.order-product-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.order-features .feature-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.order-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.order-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 25px;
    text-align: center;
}

.order-total {
    background: var(--light-green);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.total-final {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-purple);
    border-top: 2px solid var(--primary-green);
    padding-top: 10px;
    margin-top: 10px;
}

.btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.order-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

.quantity-group {
    position: relative;
}

.quantity-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #666;
    font-size: 1rem;
    background: white;
    padding: 0 5px;
}

.quantity-group.focused label,
.quantity-group input:focus + label {
    transform: translateY(-20px);
    font-size: 0.8rem;
    color: #67C090;
}

.quantity-group input:not(:placeholder-shown) + label,
.quantity-group input:valid + label {
    transform: translateY(-20px);
    font-size: 0.8rem;
    color: #67C090;
}

.quantity-group input:not(:placeholder-shown) + label,
.quantity-group input:valid + label {
    opacity: 0;
}

.quantity-group input {
    text-align: center;
}


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

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(103, 192, 144, 0.1);
}

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

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 60px 0 20px;
    border: 1px solid var(--primary-green);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-logo {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
}

.social-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-green);
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 10px 0;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 15px 0 15px;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding-top: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .about-grid,
    .product-showcase,
    .usage-content,
    .story-content,
    .contact-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        min-width: 320px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons,
    .product-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .how-to-use .section-header {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    .problem-item {
        text-align: left;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .problem-icon {
        margin: 0;
        display: inline-block;
        font-size: 2.2rem;
        flex-shrink: 0;
    }
    
    .problem-item h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .problem-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        text-align: center;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
        padding: 10px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .product-features {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0;
        font-size: 2.5rem;
        flex-shrink: 0;
        padding-right: 5px;
    }
    
    .feature-content {
        flex: 1;
        padding-left: 5px;
        text-align: left;
    }
    
    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .contact-form-container {
        padding: 30px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        min-width: 320px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .contact-form {
        text-align: center;
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }
    
    .contact-form .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info {
        padding-top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: left;
        max-width: 300px;
        width: 100%;
        flex-direction: row;
        gap: 15px;
        margin: 0 auto;
    }
    
    .contact-icon {
        margin: 0;
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        text-align: left;
    }
    
    .logo {
        width: 100px;
        height: 70px;
        object-fit: cover;
    }
    
    .footer-logo {
        width: 180px;
        height: 120px;
        object-fit: cover;
    }
    
    /* Mobile Navigation Improvements */
    .nav-container {
        padding: 0 15px;
        height: 80px;
    }
    
    .navbar {
        height: 80px;
    }
    
    .nav-menu {
        top: 80px;
        padding: 20px 0;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    /* Mobile Order Section Styles */
    .order-info {
        background: var(--white);
        padding: 30px;
        border-radius: var(--border-radius-large);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-summary {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .order-product-img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: var(--border-radius);
        margin: 0 auto;
    }
    
    .product-details {
        text-align: center;
        width: 100%;
    }
    
    .product-details h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--accent-purple);
        margin-bottom: 10px;
    }
    
    .product-description {
        color: var(--text-light);
        margin-bottom: 15px;
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-green);
    }
    
    .order-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .order-features .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-dark);
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 300px;
    }
    
    .order-features .feature-item i {
        color: var(--primary-green);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .order-form-container {
        background: var(--white);
        padding: 30px;
        border-radius: var(--border-radius-large);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-width: 320px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .order-form h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--accent-purple);
        margin-bottom: 25px;
        text-align: center;
    }
    
    .order-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }
    
    .order-form .form-group {
        text-align: center;
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }
    
    .order-form .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .order-note {
        text-align: center;
        color: var(--text-light);
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    
    /* Mobile Product Video Banner Styles */
    .product-video-banner {
        height: 130vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-video-banner-container {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-banner-video {
        border-radius: 15px;
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    /* Mobile Video Styles */
    .hero-video-container {
        max-width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .usage-video-container,
    .product-video-container,
    .story-video-container {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .usage-video-container {
        max-width: 100%;
        width: 100%;
    }
    
    .usage-video {
        height: 640px;
        width: 100%;
        object-fit: cover;
    }
    
    .usage-steps {
        padding-top: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .testimonials-video {
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .reviews-video {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .hero-container {
        padding: 60px 10px 0 10px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        padding-top: 30px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .how-to-use .section-header {
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-buttons,
    .product-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        width: 100%;
    }
    
    .contact-form-container {
        padding: 25px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .contact-form {
        text-align: center;
        width: 100%;
    }
    
    .contact-form .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .contact-info {
        padding-top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: left;
        max-width: 280px;
        width: 100%;
        flex-direction: row;
        gap: 12px;
        margin: 0 auto;
    }
    
    .contact-icon {
        margin: 0;
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        text-align: left;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    .problem-item {
        text-align: left;
        max-width: 100%;
        width: 100%;
        padding: 20px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .problem-icon {
        margin: 0;
        display: inline-block;
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .problem-item h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .problem-item p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .feature-item {
        padding: 10px;
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .product-features {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0;
        font-size: 2.5rem;
        flex-shrink: 0;
        padding-right: 5px;
    }
    
    .feature-content {
        flex: 1;
        padding-left: 5px;
        text-align: left;
    }
    
    .feature-content h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .testimonial-item {
        padding: 20px;
        text-align: center;
    }
    
    .logo {
        width: 100px;
        height: 70px;
    }
    
    .footer-logo {
        width: 160px;
        height: 110px;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .nav-menu {
        top: 80px;
    }
    
    .hero-image {
        max-width: 90%;
    }
    
    .product-thumbnails {
        gap: 10px;
    }
    
    .product-img {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    
    /* Small Mobile Product Video Banner Styles */
    .product-video-banner {
        height: 120vh;
    }
    
    .product-video-banner-container {
        padding: 15px;
    }
    
    .product-banner-video {
        border-radius: 12px;
        object-fit: contain;
    }
    
    /* Small Mobile Video Styles */
    .hero-video-container {
        margin-bottom: 1rem;
    }
    
    .usage-video-container,
    .product-video-container,
    .story-video-container {
        margin-bottom: 1rem;
    }
    
    .usage-video-container {
        max-width: 900px;
    }
    
    .usage-video {
        height: 560px;
    }
    
    .usage-steps {
        padding-top: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .product-img {
        height: 200px;
    }
    
    .testimonials-video {
        margin-bottom: 1.5rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .order-info,
    .order-form-container {
        padding: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    
    .order-product-img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        object-fit: cover;
    }
    
    .product-details h3 {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .order-features .feature-item {
        max-width: 280px;
        font-size: 0.9rem;
    }
    
    .order-form h3 {
        font-size: 1.1rem;
    }
    
    .order-note {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}
