/* WELLNESS SECTION STYLES */
.wellness-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fef8f8, #ffffff);
    position: relative;
    overflow: hidden;
}

.wellness-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(137, 143, 160, 0.1), transparent);
    border-radius: 50%;
}

/* Wellness Tabs */
.wellness-tabs {
    max-width: 800px;
    margin: 3rem auto;
}

.tab-track {
    display: flex;
    gap: 1rem;
    position: relative;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 50px;
}

.wellness-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 40px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wellness-tab:hover {
    color: #495057;
}

.wellness-tab.active {
    color: white;
}

.tab-icon {
    font-size: 1.25rem;
}

.tab-indicator {
    position: absolute;
    height: calc(100% - 1rem);
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

/* Wellness Content */
.wellness-content {
    display: none;
    opacity: 0;
}

.wellness-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Supplement Showcase */
.supplement-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.supplement-category {
    margin-bottom: 4rem;
}

.supplement-category .category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.molecule-icon {
    flex-shrink: 0;
}

.category-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.category-info p {
    color: #6c757d;
}

/* Supplement Grid */
.supplement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.supplement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.supplement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

/* 3D Bottle Visualization */
.supplement-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.bottle-3d {
    width: 80px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateBottle 10s infinite linear;
}

@keyframes rotateBottle {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.bottle-face {
    position: absolute;
    background: white;
    border: 1px solid #e0e0e0;
}

.bottle-face.front,
.bottle-face.back {
    width: 80px;
    height: 120px;
}

.bottle-face.front {
    transform: translateZ(20px);
}

.bottle-face.back {
    transform: rotateY(180deg) translateZ(20px);
}

.bottle-face.left,
.bottle-face.right {
    width: 40px;
    height: 120px;
}

.bottle-face.left {
    left: -20px;
    transform: rotateY(-90deg) translateZ(20px);
}

.bottle-face.right {
    right: -20px;
    transform: rotateY(90deg) translateZ(20px);
}

.bottle-cap {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #6c63ff;
    border-radius: 10px 10px 0 0;
}

.label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(21px);
    text-align: center;
    width: 70px;
}

.label h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #6c63ff;
    margin: 0;
}

.label span {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Supplement Details */
.supplement-details {
    padding: 1.5rem;
}

.supplement-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.indication {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit {
    color: #28a745;
    font-size: 0.875rem;
}

.dosing-info {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.dose-label {
    color: #6c757d;
}

.dose-value {
    color: #495057;
    font-weight: 600;
}

.btn-add-supplement {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-supplement:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
}

/* Supplement Options */
.supplement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #6c63ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.option-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.option-card .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #6c63ff;
    color: white;
}

/* Specialized Grid */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialized-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.specialized-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.specialized-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.specialized-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.specialized-card ul li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.specialized-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6c63ff;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-learn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #6c63ff;
    color: white;
}

/* Nutrient Matrix */
.nutrient-matrix {
    max-width: 1000px;
    margin: 0 auto;
}

.nutrient-matrix h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.nutrient-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.nutrient-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.nutrient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.nutrient-card.featured {
    border: 2px solid #6c63ff;
}

.nutrient-card.protocol-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
}

.protocol-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #212529;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.nutrient-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.element-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
}

.atomic-number {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.625rem;
    color: #6c757d;
}

.molecule-symbol {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ff6b6b;
}

.nutrient-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.function {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.forms-available {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-badge {
    padding: 0.25rem 0.75rem;
    background: #e0e0e0;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
}

.research-backed {
    margin-bottom: 1rem;
}

.evidence {
    color: #28a745;
    font-size: 0.875rem;
    font-weight: 500;
}

.nutrient-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-add-nutrient {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-nutrient:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
}

/* Protocol Includes */
.protocol-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.protocol-includes li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
}

.protocol-pricing {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.875rem;
}

.package-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin: 0.5rem 0 1rem;
}

.btn-select-protocol {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-protocol:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Testosterone Nutrients */
.testosterone-nutrients {
    max-width: 1000px;
    margin: 0 auto;
}

.testosterone-nutrients h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.nutrient-pathway {
    margin-bottom: 3rem;
}

.pathway-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pathway-node {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    text-align: center;
    position: relative;
}

.pathway-node.start {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.pathway-node.end {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
}

.pathway-node span {
    display: block;
    font-weight: 600;
}

.node-action {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: white;
    border: 1px solid #6c63ff;
    border-radius: 15px;
    font-size: 0.625rem;
    color: #6c63ff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.node-action:hover {
    background: #6c63ff;
    color: white;
}

.pathway-arrow {
    font-size: 1.5rem;
    color: #6c757d;
}

/* Support Nutrients */
.support-nutrients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nutrient-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Mineral Crystal Animation */
.mineral-crystal {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCrystal 8s infinite linear;
}

@keyframes rotateCrystal {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.crystal-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    opacity: 0.8;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.crystal-face:nth-child(1) {
    transform: translateZ(30px);
}

.crystal-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(30px);
}

.crystal-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(30px);
}

.mineral-crystal.magnesium .crystal-face {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.mineral-crystal.boron .crystal-face {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.sun-icon {
    animation: rotateSun 10s infinite linear;
}

@keyframes rotateSun {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.support-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.support-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.dosage-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dose-option {
    flex: 1;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dose-option:hover {
    border-color: #6c63ff;
}

.dose-option.active {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-color: transparent;
    color: white;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-add {
    padding: 0.5rem 1rem;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover {
    background: #5a52d5;
}

/* Health Essentials */
.health-essentials {
    max-width: 1000px;
    margin: 0 auto;
}

.health-essentials h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.essential-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.essential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.essential-card.premium {
    border: 2px solid #ffd700;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #212529;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Capsule Container */
.capsule-container {
    display: flex;
    gap: 0.5rem;
}

.capsule {
    width: 30px;
    height: 60px;
    position: relative;
    animation: floatCapsule 3s ease-in-out infinite;
}

.capsule:nth-child(2) {
    animation-delay: 0.5s;
}

.capsule:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatCapsule {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.capsule-half {
    position: absolute;
    width: 30px;
    height: 30px;
}

.capsule-half.left {
    top: 0;
    background: #ffd700;
    border-radius: 15px 15px 0 0;
}

.capsule-half.right {
    bottom: 0;
    background: #ffb300;
    border-radius: 0 0 15px 15px;
}

/* B Vitamins */
.b-vitamins {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.b-vitamin {
    padding: 0.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

/* Herb Icons */
.herb-icons {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

.herb {
    animation: swayHerb 3s ease-in-out infinite;
}

.herb:nth-child(2) {
    animation-delay: 1s;
}

.herb:nth-child(3) {
    animation-delay: 2s;
}

@keyframes swayHerb {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.essential-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.essential-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.purity-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.purity-stats .stat {
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
}

.benefits-compact {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefits-compact li {
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
}

.ingredients-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ingredients-preview span {
    padding: 0.25rem 0.5rem;
    background: #f0f0f0;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #495057;
}

.btn-add-premium {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #212529;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Supplement Builder CTA */
.supplement-builder-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.builder-content {
    position: relative;
    z-index: 2;
    color: white;
}

.builder-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.builder-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-primary-large {
    padding: 1rem 2rem;
    background: white;
    color: #6c63ff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.builder-visual {
    position: relative;
    width: 300px;
    height: 200px;
}

.floating-bottles {
    position: relative;
    width: 100%;
    height: 100%;
}

.bottle {
    position: absolute;
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    animation: floatBottle 4s ease-in-out infinite;
}

.bottle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.bottle-2 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.bottle-3 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}


@keyframes floatBottle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* CONSULTATION SECTION STYLES */
.consultation-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

/* Consultation Process */
.consultation-process {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.process-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.process-circle {
    width: 400px;
    height: 400px;
    position: relative;
}

.circle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.2;
}

.circle-layer.layer-1 {
    border-color: #6c63ff;
    animation: rotateLayer 20s linear infinite;
}

.circle-layer.layer-2 {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border-color: #8b85ff;
    animation: rotateLayer 25s linear infinite reverse;
}

.circle-layer.layer-3 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: #a8a3ff;
    animation: rotateLayer 30s linear infinite;
}

@keyframes rotateLayer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.process-time {
    font-size: 1.5rem;
    font-weight: 700;
}

.process-label {
    font-size: 0.875rem;
}

/* Process Steps */
.process-step {
    position: absolute;
    width: 100px;
    text-align: center;
}

.process-step.step-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.process-step.step-2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.process-step.step-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.process-step.step-4 {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
}

/* Process Details */
.process-details {
    flex: 1;
}

.process-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.expectation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expect-card {
    position: relative;
    padding: 1.5rem;
    padding-left: 3.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expect-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.card-number {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.expect-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.expect-card p {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Consultation Options */
.consultation-options {
    margin: 4rem 0;
}

.consultation-options h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-option {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.consultation-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.consultation-option.featured {
    border: 2px solid #6c63ff;
    transform: scale(1.05);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-header {
    margin-bottom: 1.5rem;
}

.option-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.duration {
    color: #6c757d;
    font-size: 0.875rem;
}

.option-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.includes-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.includes-list li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
}

.option-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.option-pricing .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6c63ff;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.btn-book-consultation {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

/* Insurance Section */
.insurance-section {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.insurance-section h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.insurance-info h4,
.payment-info h4,
.savings-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.insurance-info p,
.savings-info p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.insurance-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.insurance-logos img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.insurance-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.more-providers {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #6c757d;
}

.payment-options {
    list-style: none;
}

.payment-options li {
    padding: 0.5rem 0;
    color: #495057;
}

.savings-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
}

.stat-text {
    display: block;
    font-size: 0.875rem;
    color: #495057;
}

/* Final CTA */
.final-cta {
    margin-top: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    left: -200px;
}

.gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 133, 255, 0.2);
    bottom: -150px;
    right: -150px;
}

.gradient-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.final-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-stats .label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    padding: 1.25rem 2.5rem;
    background: white;
    color: #6c63ff;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary-hero {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .consultation-process {
        flex-direction: column;
    }
    
    .process-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .wellness-tabs .tab-track {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .wellness-tab {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .supplement-grid,
    .nutrient-cards,
    .support-nutrients,
    .essentials-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrient-card.protocol-card {
        grid-column: 1;
    }
    
    .supplement-builder-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .builder-visual {
        margin-top: 2rem;
    }
    
    .process-circle {
        width: 300px;
        height: 300px;
    }
    
    .expectation-cards {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-option.featured {
        transform: scale(1);
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wellness-tab {
        flex: 1 1 100%;
    }
    
    .bottle-3d {
        width: 60px;
        height: 90px;
    }
    
    .pathway-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pathway-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        position: static;
        margin: 1rem 0;
    }
    
    .final-cta {
        padding: 3rem 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

