:root {
    /* Enhanced Color Palette */
    --primary-green: #2fa22f;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --white: #ffffff;
    --text-color: #333;
    --background-color: #f5f9f1;
    --border-color: #eee;
    --accent-color: #ff9800;
    --subtle-gray: #f7f7f7;

    /* Plan Header Colors - More vibrant */
    --diabetics-color: #8d6e63;
    --heart-patients-color: #e53935;
    --weight-gain-color: #9c27b0;
    --weight-loss-color: #673ab7;
    --hormones-color: #00acc1;
    --sports-person-color: #ff8f00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    width: 100%;
}

.navbar.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
    background: linear-gradient(45deg, #388e3c, #7cb342);
}

.navbar-brand {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.1);
}

.nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #f0f0f0 !important;
    transform: translateY(-3px);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-toggler {
    border: none;
    padding: 10px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imgs/pattern.svg');
    opacity: 0.1;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.header-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
}

.header-links a {
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    margin: 0 auto;
    padding: 15px 15px;
    margin-top: 10px;
}

/* ===== INTRO SECTION ===== */
.intro {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.intro:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-color));
}

.intro h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== CAROUSEL ===== */
.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    margin: 0;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.02);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

.carousel-control-prev, 
.carousel-control-next {
    width: 10%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
    opacity: 1;
}

/* ===== PLANS GRID ===== */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.plan-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.plan-header {
    padding: 20px 15px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    top: -80%;
    left: -25%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(35deg);
}

.plan-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Plan Header Colors */
.diabetics-header { 
    background: linear-gradient(135deg, var(--diabetics-color) 0%, #3e2723 100%);
}
.heart_patients-header { 
    background: linear-gradient(135deg, var(--heart-patients-color) 0%, #b71c1c 100%);
}
.weight_gain-header { 
    background: linear-gradient(135deg, var(--weight-gain-color) 0%, #6a1b9a 100%);
}
.weight_loss-header { 
    background: linear-gradient(135deg, var(--weight-loss-color) 0%, #4527a0 100%);
}
.hormones_imbalance-header { 
    background: linear-gradient(135deg, var(--hormones-color) 0%, #006064 100%);
}
.sports_person-header { 
    background: linear-gradient(135deg, var(--sports-person-color) 0%, #e65100 100%);
}
.general-header { 
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.plan-content {
    padding: 15px;
}

.plan-price {
    font-size: 2rem;
    text-align: center;
    margin: 15px 0;
    color: var(--primary-green);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.plan-price:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 60px;
    background: var(--primary-green);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 15px;
}

.plan-features li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.plan-features li:hover {
    transform: translateX(5px);
}

.plan-features li:before {
    content: "✓";
    color: var(--primary-green);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--light-green);
    border-radius: 50%;
}

/* Animation delays for plan cards */
.plan-card:nth-child(1) { animation-delay: 0.05s; }
.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.15s; }
.plan-card:nth-child(4) { animation-delay: 0.2s; }
.plan-card:nth-child(5) { animation-delay: 0.25s; }
.plan-card:nth-child(6) { animation-delay: 0.3s; }
.plan-card:nth-child(7) { animation-delay: 0.35s; }

/* ===== BUTTONS ===== */
.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px 3px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.btn-green {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%) !important;
    color: white !important;
}

.btn-green:hover {
    background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%) !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-green);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-secondary:hover:before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--dark-green);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.4s ease;
}

.close {
    color: #777;
    float: right;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #333;
    background-color: #f5f5f5;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-green);
    position: relative;
}

.modal-header h2 {
    color: var(--primary-green);
    font-weight: 700;
}

/* ===== WEEKLY PLAN TABLE ===== */
.weekly-plan-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.weekly-plan-table th, 
.weekly-plan-table td {
    border: none;
    padding: 10px;
    text-align: left;
}

.weekly-plan-table th {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.weekly-plan-table tr {
    transition: all 0.3s ease;
}

.weekly-plan-table tr:nth-child(even) {
    background-color: var(--subtle-gray);
}

.weekly-plan-table tr:hover {
    background-color: var(--light-green);
    transform: scale(1.01);
}

.weekly-plan-table td {
    border-bottom: 1px solid var(--border-color);
}

.weekly-plan-table tr:last-child td {
    border-bottom: none;
}

/* ===== CART FORM ===== */
.cart-form {
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.cart-form:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-color), var(--primary-green));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.cart-title {
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.cart-title:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 80px;
    background: var(--primary-green);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* ===== SELECTED PLAN ===== */
.selected-plan {
    padding: 12px;
    margin-bottom: 10px;
    background-color: var(--light-green);
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.selected-plan:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.selected-plan h3 {
    margin: 0;
    color: var(--dark-green);
    font-weight: 600;
}

.selected-plan p {
    margin: 5px 0 0;
    color: #555;
}

.remove-plan {
    color: #e53935;
    cursor: pointer;
    margin-left: 15px;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove-plan:hover {
    background-color: #ffebee;
    transform: rotate(90deg);
}

/* ===== FLOATING CART ===== */
.floating-cart {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #2c7a2c;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.floating-cart:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cart-icon {
    text-decoration: none;
    position: relative;
    color: white;
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4d4d;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* ===== PROMPTS ===== */
#plan-added-prompt {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    animation: slideIn 0.4s ease-out;
    font-weight: 500;
}

#plan-added-prompt:before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

/* ===== CHECKOUT BUTTON ===== */
#checkout-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: all 0.4s ease;
}

#checkout-btn:disabled {
    background-color: #aaa !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#checkout-btn:not(:disabled):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    margin-right: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--white);
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f4f4f4;
}

.footer-section a {
    color: #f4f4f4;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links {
    list-style-type: none;
    padding: 0;
}

.social-links li {
    display: inline;
    margin-right: 10px;
}

.social-icon {
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
}

.social-icon:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.1);
    align-items: center;
}

.designer-link {
    color: var(--white);
    font-weight: bold;
}

.designer-link:hover {
    text-decoration: underline;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero-section {
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9f4a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
    background-size: cover;
}

.contact-hero-divider {
    width: 100px;
    height: 4px;
    background: white;
    margin-top: 20px;
}

.contact-form-wrapper,
.contact-info-card {
    border-top: 4px solid #2c7a2c;
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(44, 122, 44, 0.15) !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    margin-top: 5px;
    font-size: 1.1em;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #2c7a2c;
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 44, 0.25);
}

.contact-btn-primary {
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9f4a 100%);
    border: none;
    transition: all 0.3s ease;
    color: white;
}

.contact-btn-primary:hover {
    background: linear-gradient(135deg, #245c24 0%, #3d8a3d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
    color: white;
}

.contact-bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-feature-item {
    display: flex;
    align-items: center;
}

.contact-map-section {
    border-top: 4px solid #2c7a2c;
}

.contact-email-quick {
    border-left: 4px solid #2c7a2c;
}

.contact-phone-link:hover,
.contact-email-link:hover {
    color: #2c7a2c !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {background-position: 0% 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0% 50%}
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 0.5s ease;
}

/* ===== ACCESSIBILITY & FOCUS STATES ===== */
a:focus, 
button:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
    .navbar-collapse {
        background-color: rgba(76, 175, 80, 0.95);
        border-radius: 0 0 10px 10px;
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 10px 20px;
        margin-right: 0;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .plans {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .carousel-item img {
        height: 350px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
    }
    
    .plans {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .header {
        padding: 25px 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .intro h2 {
        font-size: 1.8rem;
    }
    
    .weekly-plan-table {
        font-size: 0.9rem;
    }
    
    .weekly-plan-table th, 
    .weekly-plan-table td {
        padding: 10px;
    }
    
    .floating-cart {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .display-4 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 15px 10px;
    }
    
    .carousel-item img {
        height: 200px;
    }
    
    .intro {
        padding: 15px;
        margin: 15px 0;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
        margin: 5% auto;
    }
    
    .header-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    body {
        color: #000;
        background: #fff;
    }
    
    .header, .footer, .navbar, .floating-cart {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    .plan-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn {
        display: none;
    }
}


/* ===== ABOUT PAGE STYLES ===== */
.about-main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9f4a 50%, #2fa22f 100%);
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
    background-size: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: about-fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: about-fadeInUp 1s ease-out 0.2s both;
}

.about-hero-divider {
    width: 120px;
    height: 4px;
    background: white;
    margin: 0 auto;
    border-radius: 2px;
    animation: about-fadeInUp 1s ease-out 0.4s both;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Story Section */
.about-story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 122, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.about-story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2fa22f, #4a9f4a, #2fa22f);
}

.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: #2fa22f;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(47, 162, 47, 0.2);
}

.about-story-title {
    color: #2fa22f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.about-story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #2fa22f;
    border-radius: 2px;
}

.about-story-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-story-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2fa22f;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-highlight-item i {
    font-size: 1.2rem;
}

.about-story-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2fa22f, #4a9f4a);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f0f8f0 100%);
    position: relative;
}

.about-mission-content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 122, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.about-mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2fa22f, #4a9f4a, #2fa22f);
}

.about-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2fa22f, #4a9f4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(47, 162, 47, 0.3);
}

.about-section-icon i {
    font-size: 2rem;
    color: white;
}

.about-mission-title {
    color: #2fa22f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-mission-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2fa22f;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Vision Section */
.about-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f2e8 100%);
}

.about-vision-content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 122, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.about-vision-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2fa22f, #4a9f4a, #2fa22f);
}

.about-vision-title {
    color: #2fa22f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-title {
    color: #2fa22f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-values-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(44, 122, 44, 0.15);
}

.about-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2fa22f, #4a9f4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 16px rgba(47, 162, 47, 0.3);
}

.about-value-icon i {
    font-size: 1.8rem;
    color: white;
}

.about-value-title {
    color: #2fa22f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-value-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2fa22f, #4a9f4a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-value-card:hover .about-value-decoration {
    transform: scaleX(1);
}

/* Team Section */
.about-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f0f8f0 100%);
}

.about-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-team-title {
    color: #2fa22f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-team-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #2fa22f;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 122, 44, 0.12);
}

.about-team-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2fa22f, #4a9f4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(47, 162, 47, 0.3);
}

.about-team-image i {
    font-size: 2rem;
    color: white;
}

.about-team-name {
    color: #2fa22f;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-team-role {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animations */
@keyframes about-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .about-values-grid,
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-mission-stats {
        gap: 40px;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story-title,
    .about-mission-title,
    .about-vision-title,
    .about-values-title,
    .about-team-title {
        font-size: 2rem;
    }
    
    .about-story-content,
    .about-mission-content,
    .about-vision-content {
        padding: 30px 20px;
    }
    
    .about-story-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-mission-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-values-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-value-card,
    .about-team-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-story-section,
    .about-mission-section,
    .about-vision-section,
    .about-values-section,
    .about-team-section {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-story-title,
    .about-mission-title,
    .about-vision-title,
    .about-values-title,
    .about-team-title {
        font-size: 1.8rem;
    }
    
    .about-mission-text,
    .about-vision-text {
        font-size: 1.1rem;
    }
}

