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

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f9f7f2;
    color: #1e293b;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid #d1fae5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-section img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
}

.btn-order-header {
    background: #047857;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

/* Hero Section - Mobile First Approach */
.hero {
    padding: 5rem 1rem 2rem;
    background: linear-gradient(to bottom, #f9f7f2, #d1fae5);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 1rem 4rem;
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="40" fill="%23047857"/></svg>');
}

/* Image is already first in HTML - just position on desktop */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-image {
    position: relative;
}

@media (min-width: 768px) {
    .hero-image {
        order: 1;
        /* Move to right side on desktop */
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        order: 0;
        /* Keep on left side on desktop */
    }
}

.hero-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-badge {
        margin-bottom: 1.5rem;
    }
}

.hero-title {
    font-size: 2rem;
    /* Slightly smaller on mobile */
    font-weight: 800;
    color: #064e3b;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        margin-bottom: 1rem;
    }
}

.hero-title .highlight {
    color: #059669;
}

.hero-description {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.btn-primary {
    background: #059669;
    color: white;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    /* Larger touch target for mobile */
    min-height: 3rem;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #065f46;
    font-weight: 600;
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #d1fae5;
    font-size: 0.95rem;
    /* Larger touch target */
    min-height: 3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.phone-display:hover {
    background: #f0fdf4;
    border-color: #34d399;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .phone-display {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hero Image - Optimized for Mobile */
.image-bg {
    position: absolute;
    inset: 0;
    background: #059669;
    border-radius: 1.5rem;
    transform: rotate(3deg);
    opacity: 0.1;
}

.hero-image img {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Full width on mobile for maximum impact */
    margin: 0 auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1rem;
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: block;
}

@media (min-width: 640px) {
    .hero-image img {
        max-width: 90%;
        /* Slightly contained on larger phones/tablets */
    }
}

@media (min-width: 768px) {
    .hero-image img {
        max-width: none;
        border: 4px solid white;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }
}

/* Trust Badges */
.trust-badges {
    padding: 0.75rem 1rem;
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f3f4f6;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-item {
    padding: 0.25rem;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.badge-item h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.badge-item p {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Why Choose Us / Features */
.why-us {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, white, #f0fdf4);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #6ee7b7, #059669, #065f46);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #d1fae5;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(5, 150, 105, 0.15);
    border-color: #059669;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    border: 3px solid #6ee7b7;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products */
.products {
    padding: 4rem 1rem;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.divider {
    width: 6rem;
    height: 4px;
    background: #10b981;
    margin: 0 auto;
    border-radius: 9999px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f3f4f6;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.best-seller-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f97316;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.product-image {
    height: 14rem;
    background: #d1fae5;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 1.875rem;
    font-weight: 700;
    color: #059669;
}

.price-old {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.btn-product {
    width: 100%;
    background: white;
    border: 2px solid #059669;
    color: #047857;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-product:hover {
    background: #059669;
    color: white;
}

/* FAQ */
.faq {
    padding: 4rem 1rem;
    background: #d1fae5;
}

.faq h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    font-weight: 700;
    color: #1f2937;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '▼';
    color: #10b981;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 0.75rem;
    color: #4b5563;
}

/* Order Section */
.order-section {
    padding: 5rem 1rem;
    background: white;
}

.order-form-container {
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #d1fae5;
    position: relative;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, #6ee7b7, #059669, #065f46);
}

.form-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .form-header h2 {
        font-size: 2.5rem;
    }
}

.form-header p {
    color: #6b7280;
}

.success-message {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin: 0 2rem 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #4b5563;
}

.btn-reload {
    margin-top: 1.5rem;
    color: #059669;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

form {
    padding: 0 2rem 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.products-select {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.3s;
}

.product-option:has(input:checked) {
    border-color: #059669;
    background: rgba(209, 250, 229, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-option input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #059669;
    margin-right: 1rem;
}

.option-info {
    flex: 1;
}

.option-name {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.option-price {
    font-weight: 700;
    font-size: 1.125rem;
    color: #047857;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: none;
}

.order-summary {
    background: #d1fae5;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #a7f3d0;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.summary-row span:last-child {
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: #a7f3d0;
    margin: 0.5rem 0;
}

.summary-total {
    font-weight: 700;
    font-size: 1.25rem;
    color: #065f46;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background: #047857;
    color: white;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #065f46;
    transform: scale(1.01);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.form-footer {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* Mobile Sticky Button */
.mobile-sticky-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .mobile-sticky-button {
        display: none;
    }
}

.btn-mobile-order {
    width: 100%;
    background: #059669;
    color: white;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: #064e3b;
    color: #d1fae5;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid #065f46;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .footer {
        margin-bottom: 0;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-logo img {
    width: 2.5rem;
    height: 2.5rem;
    filter: grayscale(100%) invert(1);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #6ee7b7;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: #d1fae5;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.whatsapp:hover {
    background: #25d366;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

.developer {
    font-size: 0.75rem;
    color: #059669;
    margin-top: 0.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Video Gallery Premium Design */
.video-gallery {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #f0fdf4, #ffffff);
}

.video-gallery .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Force Grid Layout */
.videos-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
}

/* Tablet */
@media (min-width: 640px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

/* Desktop - Forced 3 Columns */
@media (min-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2.5rem;
    }
}

.video-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 4px solid white;
    transition: all 0.3s ease;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
}

.video-card:hover img {
    transform: scale(1.05);
}

/* Improved Play Button */
/* Improved Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 50;
    /* Higher z-index */
    animation: ripple 2s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    /* Remove mobile tap rect */
}

/* Draw Triangle Icon */
.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
    /* Center visuals */
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.video-card:hover .play-button {
    background: #ef4444;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card.playing {
    border-color: #000;
}

.video-card.playing::before {
    display: none;
}

.video-card.playing .play-button,
.video-card.playing img,
.video-card.playing .video-title {
    display: none;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.3s;
}

.video-card:hover .video-title {
    padding-bottom: 1.25rem;
}