:root {
    --primary: #2d7a3e;
    /* Provided Green */
    --primary-dark: #1f5a2d;
    --primary-light: #4a9d5f;
    --accent: #f9d342;
    /* Provided Yellow */
    --accent-dark: #e6c030;
    --dark: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.bulk-banner {
    background: var(--primary);
    /* Solid Green */
    padding: 30px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.bulk-banner .btn {
    background: #eab308;
    /* Yellow/Gold */
    color: var(--dark);
    font-weight: 700;
    box-shadow: none;
}

.bulk-banner .btn:hover {
    background: #ca8a04;
    transform: translateY(-2px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Tamil', 'Mukta Malar', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px 0;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 200px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.2;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(45, 122, 62, 0.1);
    color: var(--primary);
}

.nav-link i {
    font-size: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: var(--primary-dark);
}

/* Hero - Glass Card Style */
.hero {
    position: relative;
    background: url('shop-bg.jpg') center center/cover no-repeat;
    /* background-attachment: fixed; Removed scroll effect */
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from provided CSS */
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.95) 0%, rgba(31, 90, 45, 0.98) 100%);
    z-index: 0;
}

/* ... existing styles ... */

.btn-primary {
    background: var(--accent);
    /* Yellow/Gold from provided file */
    color: var(--dark);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 211, 66, 0.4);
}

.btn-whatsapp {
    background: white;
    color: #2d7a3e;
    /* Green text */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

/* Subtle Shimmer Effect on Card Hover */
.hero-glass-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
}

.hero-glass-card:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(20%, 20%);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #4ade80;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Jost', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Jost', 'Noto Sans Tamil', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 700px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 20px;
    transition: all 0.3s;
}

.hero-feature-item:hover .icon-box {
    transform: rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.hero-feature-item span {
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #10B981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp {
    background: white;
    color: #10B981;
}

.btn-whatsapp:hover {
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Specialty Highlight Banner */
.specialty-banner {
    background: linear-gradient(90deg, #16a085, #2ecc71);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
}

.banner-content i {
    font-size: 24px;
    animation: leaf-sway 3s ease-in-out infinite;
}

@keyframes leaf-sway {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@media (max-width: 768px) {
    .banner-content {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }

    .banner-content i {
        display: none;
    }
}

/* Sections */
section {
    padding: 50px 0;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 25px;
    }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About */
.about {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Tablet view - 2 columns */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile view - 1 column */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

/* About Bio Layout */
.about-bio {
    position: relative;
    background: url('shop-illustration-bg.jpg') no-repeat left center/cover,
        linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    background-color: #2c2c2c;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
    min-height: 400px;
    overflow: hidden;
}

/* Remove overlay - not needed */
.about-bio::before {
    display: none;
}

.bio-image {
    display: none;
}

.bio-image img {
    display: none;
}

.bio-watermark {
    display: none;
    /* Hide watermark */
}

.about-bio::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    z-index: 1;
    animation: shine-effect 7s infinite linear;
    pointer-events: none;
}

@keyframes shine-effect {
    0% {
        left: -150%;
        top: -150%;
    }

    100% {
        left: 150%;
        top: 150%;
    }
}

@keyframes float-effect {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bio-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 16px;
    max-width: 480px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.bio-text {
    font-family: 'Kavivanar', cursive;
    font-size: 14px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: justify;
}

.bio-image-embedded {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Couple photo inside text box */
.bio-couple-photo {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.bio-couple-photo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    position: relative;
}

/* Shining effect overlay */
.bio-couple-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 25%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 75%,
            transparent 100%);
    transform: skewX(-25deg);
    animation: shine-slide 3s infinite;
    pointer-events: none;
}

@keyframes shine-slide {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.bio-mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .about-bio {
        padding: 30px 20px;
        background: url('shop-illustration-bg.jpg') no-repeat center top/cover;
        background-color: #2c2c2c;
        flex-direction: column;
        justify-content: center;
        min-height: auto;
        height: auto;
    }

    .about-bio::before {
        display: none;
    }

    .about-bio::after {
        display: none;
    }

    .bio-content {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .bio-couple-photo img {
        max-width: 100%;
    }

    .bio-mobile-image {
        display: none;
    }
}



.bio-highlight {
    background: #fff3cd;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-bio {
        flex-direction: column;
        text-align: center;
    }

    .bio-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .bio-text {
        text-align: center;
    }
}

/* Management Profile */
.manager-profile-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.manager-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 750px;
    width: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .manager-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
}

.manager-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.manager-photo-box {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid #f0f0f0;
}

.manager-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-details {
    flex: 1;
}

.manager-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.manager-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 12px;
}

.manager-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.contact-item i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .manager-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
        gap: 20px;
    }

    .manager-contact-strip {
        justify-content: center;
    }

    .manager-card::before {
        width: 100%;
        height: 6px;
        top: 0;
        left: 0;
    }
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    /* Centered with margin-bottom */
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(-5deg);
}

.product-icon i {
    font-size: 26px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 15px;
    color: var(--gray);
}

.bulk-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}

.bulk-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
    flex: 1;
}

.bulk-content i {
    font-size: 50px;
    opacity: 0.9;
}

.bulk-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bulk-content p {
    font-size: 16px;
    opacity: 0.95;
}

/* Reviews */
.reviews {
    background: var(--light-gray);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    font-size: 32px;
    color: #ffc107;
}

.rating-info {
    text-align: center;
}

.rating-score {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.rating-count {
    font-size: 14px;
    color: var(--gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.reviewer-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    font-size: 14px;
    color: #ffc107;
}

.review-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    font-style: italic;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link.whatsapp {
    color: #25D366;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-link span {
        display: none;
    }

    .nav-link {
        padding: 10px 12px;
    }

    .nav-link i {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 20px 30px;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s;
        z-index: 999;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .nav-link span {
        display: inline;
    }

    .nav-link i {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 15px 0;
        gap: 15px;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 12px;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 12px;
    }

    .hero {
        padding: 70px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bulk-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .bulk-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        min-height: 350px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stat-info h3 {
        font-size: 24px;
    }

    .stat-info p {
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .feature-card,
    .product-card,
    .review-card {
        padding: 25px 20px;
    }

    .bulk-content h3 {
        font-size: 22px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Custom Styles for Map and Contact */
.map-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    font-family: 'Jost', sans-serif;
}

.map-link-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--border);
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .map-container {
        height: 400px;
    }
}

/* Bulk Order Popup */
.bulk-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.bulk-popup {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--primary);
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bulk-popup.active {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    border: 2px solid white;
    font-size: 18px;
    transition: all 0.3s;
}

.popup-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.popup-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.popup-text {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.popup-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.footer-credit {
    margin-top: 15px;
    font-size: 13px;
    color: white !important;
    opacity: 0.9;
}

.footer-credit a {
    color: white !important;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-bio {
        background-image: url('about-bg.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

/* Gallery Mosaic Section */
.gallery {
    background: #fcfcfc;
    padding: 80px 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 204, 113, 0.3);
    /* Emerald tint */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
    z-index: 2;
}

.gallery-overlay i {
    color: white;
    font-size: 32px;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

/* Mosaic Layout Rules */
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 991px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .item-1 {
        grid-column: span 2;
        height: 350px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .item-1 {
        grid-column: span 1;
        height: 250px;
    }
}