:root {
    --sage-green: #c2d234;
    --soft-coral: #FFB4A1;
    --soft-lavender: #B8A8E8;
    --soft-peach: #FFE5B4;
    --soft-mint: #B8E6D5;
    --soft-gold: #F4D798;
    --off-white: #FAFAFA;
    --charcoal: #2D3748;
    --primary-blue: #2d435b;
    --light-bg: #F0F9FF;
}

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

body {
    font-family: 'Fustat', 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-logo {
    width: 120px;
    height: auto;
    animation: logoFade 1.5s ease-in-out infinite;
}

@keyframes logoFade {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}


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

/* Navigation */
nav {
    background: var(--light-bg);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand img {
    height: 65px;
    width: auto;
}

.text-logo {
    height: 40px !important;
    margin-right: 10px;
}

.nav-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.nav-social-links a:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sage-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}


.btn {
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Fustat', sans-serif;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 67, 91, 0.3);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg,
            var(--light-bg) 0%,
            rgba(240, 249, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent 100%);
    padding: 80px 0 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4A5568;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Professional Medical Composition */
.medical-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}

/* Badge with Animation */
.badge-circle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.95) 0%, rgba(143, 197, 168, 0.95) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(168, 213, 186, 0.35);
    z-index: 5;
    font-weight: 700;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.badge-circle .num {
    font-size: 36px;
    line-height: 1;
}

.badge-circle .label {
    font-size: 14px;
    margin-top: 4px;
}

/* Main Medicine Bottle */
.main-bottle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 240px;
    z-index: 3;
}

.bottle-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.bottle-main {
    width: 140px;
    height: 200px;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.85) 0%, rgba(143, 197, 168, 0.85) 100%);
    border-radius: 20px 20px 30px 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        inset -8px 0 16px rgba(255, 255, 255, 0.4),
        inset 8px 0 16px rgba(0, 0, 0, 0.1);
}

.bottle-main::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 30%;
    height: 40%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    filter: blur(8px);
}

.bottle-top {
    width: 90px;
    height: 40px;
    background: linear-gradient(135deg, #7AB89D 0%, #6AA88D 100%);
    border-radius: 12px 12px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
}

.bottle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    color: white;
    opacity: 0.9;
}

/* Floating Pills with Animation */
.floating-pills {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4;
}

.pill-item {
    width: 100px;
    height: 42px;
    border-radius: 21px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pill-item:hover {
    transform: translateY(-5px) rotate(-3deg);
}

.pill-item.coral-purple {
    background: linear-gradient(90deg, var(--soft-coral) 0%, var(--soft-coral) 50%, var(--soft-lavender) 50%, var(--soft-lavender) 100%);
    animation: pill-pulse-1 3s ease-in-out infinite;
}

.pill-item.peach {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--soft-gold) 100%);
    margin-left: 20px;
    animation: pill-pulse-2 3.5s ease-in-out infinite;
}

@keyframes pill-pulse-1 {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-2deg) scale(1.03);
    }
}

@keyframes pill-pulse-2 {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(2deg) scale(1.03);
    }
}

/* Large Lozenge with Glow */
.large-lozenge {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFE5B4 0%, #FFDDA1 100%);
    box-shadow:
        0 20px 50px rgba(255, 229, 180, 0.4),
        inset -5px -5px 15px rgba(255, 255, 255, 0.5),
        inset 5px 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    animation: lozenge-glow 4s ease-in-out infinite;
}

@keyframes lozenge-glow {

    0%,
    100% {
        box-shadow:
            0 20px 50px rgba(255, 229, 180, 0.4),
            inset -5px -5px 15px rgba(255, 255, 255, 0.5),
            inset 5px 5px 15px rgba(0, 0, 0, 0.05);
    }

    50% {
        box-shadow:
            0 25px 60px rgba(255, 229, 180, 0.6),
            inset -8px -8px 20px rgba(255, 255, 255, 0.6),
            inset 8px 8px 20px rgba(0, 0, 0, 0.08);
    }
}

/* Small Medical Cross Accent */
.medical-cross-accent {
    position: absolute;
    top: 28%;
    left: 15%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-mint) 0%, var(--sage-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(168, 213, 186, 0.3);
    z-index: 4;
    animation: pulse-accent 2.5s ease-in-out infinite;
}

.medical-cross-accent i {
    font-size: 32px;
    color: white;
}

@keyframes pulse-accent {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

/* Small Capsule Accent */
.capsule-accent {
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 50px;
    height: 90px;
    border-radius: 25px;
    background: linear-gradient(180deg, var(--soft-lavender) 0%, var(--soft-lavender) 50%, white 50%, white 100%);
    box-shadow:
        0 15px 35px rgba(184, 168, 232, 0.35),
        inset -4px 0 10px rgba(0, 0, 0, 0.1),
        inset 4px 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: capsule-rotate 8s linear infinite;
}

@keyframes capsule-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Partners Section */
.partners {
    padding: 0 0 120px 0;
    background: var(--off-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.feature-card {
    background: var(--off-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.card-lavender {
    background: linear-gradient(135deg, #FF5C57 0%, #FF7A76 100%);
    color: white;
}

.card-coral {
    background: linear-gradient(135deg, #2E5C8A 0%, #4A7BA7 100%);
    color: white;
}

.feature-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-card .learn-more {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Partner Logo Styling */
.partner-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Product Showcase */
.products {
    padding: 0 0 160px 0;
    background: var(--off-white);
}

.product-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--soft-gold) 100%);
    padding: 64px;
    border-radius: 24px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 8px 32px rgba(244, 215, 152, 0.3);
}

.product-hero h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.product-hero .subtitle {
    font-size: 20px;
    color: #6B5B3A;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.product-hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--charcoal);
}

/* Professional Product Illustration */
.product-illustration {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.lozenge-composition {
    position: relative;
    width: 280px;
    height: 280px;
}

/* Main center lozenge */
.center-lozenge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8F5E9 0%, var(--sage-green) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.center-lozenge i {
    font-size: 64px;
    color: white;
}

/* Supporting lozenges */
.support-lozenge {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.support-lozenge.coral {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--soft-coral) 0%, #FF9A85 100%);
    top: 10px;
    right: 10px;
    z-index: 2;
}

.support-lozenge.mint {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--soft-mint) 0%, #A8DFCA 100%);
    bottom: 10px;
    left: 10px;
    z-index: 1;
}

.support-lozenge.lavender {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, #C8B8F8 100%);
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

/* Flavor Grid */
.flavor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.flavor-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.flavor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.flavor-icon {
    width: 100%;
    max-width: 200px;
    height: 180px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.flavor-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.flavor-card p {
    font-size: 16px;
    color: #4A5568;
}

.flavor-ginger {
    background: linear-gradient(135deg, #e9d3f5 0%, #e8b8ed 100%);
}


.flavor-orange {
    background: linear-gradient(135deg, #FFE5CC 0%, #FFD4A8 100%);
}

.flavor-honey {
    background: linear-gradient(135deg, var(--soft-peach) 0%, #FFDDA1 100%);
}

.flavor-strawberry {
    background: linear-gradient(135deg, #FFD4D4 0%, #FFB8B8 100%);
}

.flavor-mint {
    background: linear-gradient(135deg, var(--soft-mint) 0%, #A8DFCA 100%);
}

.flavor-pure-honey {
    background: linear-gradient(135deg, #FFF4D4 0%, #FFE8A8 100%);
}


/* Mission Section */
.mission {
    padding: 0 0 150px 0;
    background: var(--off-white);
    text-align: center;
}

.mission .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--soft-lavender);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mission h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.mission-text {
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: right;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4A5568;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card i {
    font-size: 48px;
    color: var(--sage-green);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.value-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 0 0 160px 0;
    background: var(--off-white);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--sage-green);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.contact-header p {
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 15px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 16px;
    color: var(--sage-green);
    font-size: 16px;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Fustat', sans-serif;
    transition: all 0.3s;
    background: white;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(194, 210, 52, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #A0AEC0;
}

.submit-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 16px;
    padding: 16px 32px;
}

/* Map Section */
.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.location-card {
    background: linear-gradient(135deg, var(--sage-green) 0%, #B2C947 100%);
    padding: 32px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(194, 210, 52, 0.3);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.location-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.detail-item i {
    width: 20px;
    opacity: 0.9;
}

.map-embed {
    flex: 1;
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-section p {
    line-height: 1.8;
    color: #CBD5E0;
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: var(--sage-green);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: start;
    gap: 12px;
    color: #CBD5E0;
}

.contact-info i {
    color: var(--sage-green);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

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

.social-links a:hover {
    background: var(--sage-green);
    transform: translateY(-4px);
}

.footer-cta {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--soft-gold) 100%);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.footer-cta p {
    color: #6B5B3A;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--light-bg);
    z-index: 99;
    padding: 24px;
}



.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 16px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu ul li a:hover {
    background: var(--light-bg);
}

/* Mobile Social Links */
.mobile-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--primary-blue) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    padding: 0 !important;
}

.mobile-social a:hover {
    background: var(--sage-green) !important;
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-content,
    .feature-grid,
    .product-hero,
    .mission-text,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .flavor-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }

    .nav-social-links {
        display: none;
    }


    .feature-card,
    .flavor-card,
    .value-card {
        padding: 32px 24px;
    }

    .product-hero {
        padding: 40px 28px;
    }

    .footer-cta {
        padding: 36px 24px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .text-logo {
        height: 30px !important;
        display: block;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .map-wrapper {
        gap: 20px;
    }

    .map-embed {
        min-height: 300px;
    }

    .hero-visual {
        height: 350px;
    }

    .product-hero h2,
    .mission h2 {
        font-size: 32px;
    }

    .medical-composition {
        max-width: 100%;
        height: 320px;
    }

    .main-bottle {
        width: 140px;
        height: 200px;
    }

    .bottle-main {
        width: 110px;
        height: 160px;
    }

    .badge-circle {
        width: 90px;
        height: 90px;
    }

    .badge-circle .num {
        font-size: 28px;
    }

    .badge-circle .label {
        font-size: 12px;
    }

    .large-lozenge {
        width: 100px;
        height: 100px;
    }

    .floating-pills {
        right: 20px;
        bottom: 40px;
    }

    .pill-item {
        width: 80px;
        height: 34px;
    }

    .lozenge-composition {
        width: 240px;
        height: 240px;
    }

    .center-lozenge {
        width: 130px;
        height: 130px;
    }

    .center-lozenge i {
        font-size: 52px;
    }

    .support-lozenge.coral {
        width: 90px;
        height: 90px;
    }

    .support-lozenge.mint {
        width: 80px;
        height: 80px;
    }

    .support-lozenge.lavender {
        width: 70px;
        height: 70px;
    }
}