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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

:root {
    /* Exact Colors from Jabon Soap Website */
    --primary-green: #6b9f78;
    --primary-green-dark: #5a8a66;
    --primary-green-light: #7fb08d;
    --secondary-green: #8bc49a;
    --accent-green: #a5d4b3;
    --light-green: #e8f5eb;
    --lighter-green: #f5faf7;
    --dark-bg: #ffffff;
    --dark-surface: #f8f9fa;
    --dark-card: #ffffff;
    --dark-accent: #f0f4f2;
    --cream: #fafafa;
    --beige: #f5f5f5;
    --text-primary: #2c3e2d;
    --text-secondary: #5a6b5c;
    --text-muted: #8a9a8b;
    --text-dark: #1a2e1c;
    --border-color: #e0e8e2;
    --shadow-dark: rgba(0, 0, 0, 0.08);
    --shadow-glow: rgba(107, 159, 120, 0.2);
    --gold: #d4a574;
    --gold-dark: #c49564;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5faf7 100%);
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 159, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.model-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 40px var(--shadow-dark), 0 0 20px var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px var(--shadow-dark), 0 0 30px var(--shadow-glow);
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.model-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 30px 20px 20px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2FE576 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Why Choose Natural Section */
.why-natural {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.why-natural::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(107, 159, 120, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-natural .section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-text {
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background-color: var(--white);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow-dark), 0 0 15px var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--lighter-green) 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-green-light);
    margin-bottom: 50px;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-dark);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-dark), 0 0 20px var(--shadow-glow);
    border-color: var(--primary-green);
}

.benefit-image-placeholder {
    font-size: 4rem;
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Quality Promise Section */
.quality-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    position: relative;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(107, 159, 120, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.quality-content {
    max-width: 900px;
    margin: 0 auto;
}

.quality-text {
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-dark);
    border-left: 5px solid var(--primary-green);
    position: relative;
    z-index: 1;
}

.quality-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.quality-list {
    list-style: none;
    margin-bottom: 30px;
}

.quality-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    background-color: var(--light-green);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-green);
}

.quality-tagline {
    font-size: 1.3rem;
    color: var(--primary-green-light);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background-color: var(--white);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 5px 20px var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 15px var(--shadow-dark);
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green-light);
    text-align: right;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 159, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background-color: var(--white);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(107, 159, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.shampoos-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    display: none; /* Hidden for now, do not remove */
}

/* Packages Section */
.packages-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(107, 159, 120, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--lighter-green) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px var(--shadow-dark);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 159, 120, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-dark), 0 0 25px var(--shadow-glow);
    border-color: var(--primary-green);
}

.package-featured {
    border: 3px solid var(--primary-green);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
    box-shadow: 0 10px 30px var(--shadow-dark), 0 0 30px var(--shadow-glow);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px var(--shadow-glow);
    animation: pulse 2s infinite;
}

.package-name {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    padding-right: 100px;
}

.package-products {
    background-color: var(--lighter-green);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.package-product-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.package-product-item:last-child {
    border-bottom: none;
}

.package-product-item span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.package-product-item span:last-child {
    color: var(--primary-green);
    font-weight: 600;
}

.package-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.package-old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

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

.package-savings {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 5px 12px;
    background-color: rgba(45, 134, 89, 0.2);
    border-radius: 20px;
    display: inline-block;
}

.package-controls {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark), 0 0 15px var(--shadow-glow);
    border-color: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: var(--lighter-green);
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.product-card:hover .product-image {
    border-color: var(--primary-green);
}

.product-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.product-weight {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-style: italic;
}

.product-price {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
    padding: 8px 15px;
    background-color: var(--light-green);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--primary-green);
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--lighter-green);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px var(--shadow-glow);
}

.qty-btn:hover {
    background-color: var(--primary-green-light);
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--shadow-glow);
}

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

.quantity {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 30px;
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    background-color: var(--lighter-green);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.checkbox-label:hover {
    border-color: var(--primary-green);
    background-color: var(--light-green);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-label span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Fixed Order Button */
.fixed-order-btn {
    position: fixed;
    bottom: 20px;
    left: 80%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 400px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 25px var(--shadow-dark), 0 0 20px var(--shadow-glow);
    border: 2px solid var(--border-color);
}

.order-summary {
    margin-bottom: 12px;
    padding: 12px;
    background-color: var(--lighter-green);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    max-height: 300px;
    overflow-y: auto;
}

/* Cart Items Display */
.cart-items {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 10px;
    font-size: 0.9rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 2px 8px var(--shadow-dark);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cart-item-qty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cart-remove-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    width: 28px;
    height: 28px;
}

.cart-remove-btn:hover {
    background-color: #ef4444;
    color: var(--white);
    transform: scale(1.1);
}

.remove-icon {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
}

/* Order Breakdown */
.order-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.order-subtotal, .delivery-charge, .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.order-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px solid var(--border-color);
    font-size: 1.1rem;
}

.subtotal-label, .delivery-label, .total-label {
    font-weight: 600;
    color: var(--text-dark);
}

.total-label {
    font-size: 1.1rem;
}

#orderSubtotal, #deliveryCharge {
    font-weight: 600;
    color: var(--text-secondary);
}

#orderTotal {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.fixed-order-btn .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Payment Info Section */
.payment-info {
    padding: 80px 20px;
    background-color: var(--lighter-green);
    position: relative;
}

.payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(107, 159, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px var(--shadow-dark);
    border-left: 4px solid var(--primary-green);
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.info-card ul li.sub-item {
    padding-left: 45px;
    font-style: italic;
    color: var(--primary-green);
}

/* Doctor Recommendations Section */
.doctor-recommendations {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--lighter-green) 100%);
    position: relative;
    overflow: hidden;
}

.doctor-recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23d4e6dc" opacity="0.3"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.recommendation-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-dark), 0 0 15px var(--shadow-glow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark), 0 0 25px var(--shadow-glow);
    border-color: var(--primary-green);
}

.doctor-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.doctor-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--shadow-glow);
}

.doctor-icon {
    font-size: 2.5rem;
}

.doctor-details {
    flex: 1;
}

.doctor-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.doctor-credentials {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 3px;
}

.doctor-specialty {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.recommendation-text {
    margin-bottom: 20px;
}

.recommendation-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.recommendation-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23d4e6dc" opacity="0.3"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-dark), 0 0 15px var(--shadow-glow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark), 0 0 25px var(--shadow-glow);
    border-color: var(--primary-green);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-info-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.contact-info-card .btn {
    margin-top: 15px;
    width: 100%;
}

.contact-form-container {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-dark), 0 0 15px var(--shadow-glow);
    border: 2px solid var(--border-color);
}

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

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

.contact-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--lighter-green);
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--shadow-glow);
}

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

.contact-form .form-actions {
    margin-top: 10px;
}

.contact-form .form-actions .btn {
    width: 100%;
}

/* Terms Section */
.terms {
    padding: 80px 20px;
    background-color: var(--white);
    position: relative;
}

.terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.terms-content ul {
    list-style: none;
}

.terms-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.terms-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 50px 20px;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    border-top: 2px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(107, 159, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-brand {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.footer .btn {
    margin-top: 10px;
}

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

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-name {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

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

    .fixed-order-btn {
        width: auto;
    }
}

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

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }

    .recommendations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero {
        min-height: 80vh;
    }

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

    .hero-text {
        text-align: left;
    }

    .brand-name {
        font-size: 5rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .product-image {
        height: 300px;
    }
}

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

/* Selection Highlight */
::selection {
    background-color: var(--primary-green);
    color: var(--text-primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px var(--shadow-dark), 0 0 30px var(--shadow-glow);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 2px solid var(--border-color);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-green);
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Form Styles */
#customerForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--lighter-green);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--shadow-glow);
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-cancel {
    background-color: var(--lighter-green);
    color: var(--text-dark);
    flex: 1;
    border: 2px solid var(--border-color);
}

.btn-cancel:hover {
    background-color: var(--light-green);
    border-color: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.form-actions .btn-primary {
    flex: 2;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 25px 20px;
        width: 95%;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .hero-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }
}

