/* ============================================
   SOS Meal Subscription Website - Custom Styles
   ============================================ */

   @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* Color Variables */
:root {
    --primary-color: #292e55;
    --secondary-color: #ef7f38;
    --text-dark: #111;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-primary: #292e55;
    --bg-secondary: #ef7f38;
    --bg-tertiary: #f2f2f2;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
}
.small, small {
    font-size: 80%;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-image: url('../img/sosbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-primary {background-color: var(--bg-primary) !important;}
.bg-secondary {background-color: var(--bg-secondary) !important;}
.bg-tertiary {background-color: var(--bg-tertiary) !important;}

.bg-tertiary .plan-card-title-new, .bg-tertiary .plan-card-features-new li, 
.bg-tertiary .plan-card-price-new, .bg-tertiary .plan-card-period, .bg-tertiary .plan-card-price-old, .bg-tertiary .plan-card-currency{color: #000 !important;}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.lang-btn i {
    font-size: 1rem;
}

/* Typography */
.heading-primary {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom:6px;
}

.heading-secondary {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.heading-tertiary {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-muted {
    color: var(--text-light);
}
.bg-success-2 {background-color: #28a7451a;}


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

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

.btn-primary-custom:hover {
    background-color: #1f2344;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 46, 85, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary-custom:hover {
    background-color: #e06a1f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.3);
}

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

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

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

.btn-outline-secondary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Containers */
.container-custom {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-custom {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-custom {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-custom {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-custom {
        max-width: 1320px;
    }
}


.d-flex-custom {
    display: flex;
}

.flex-column-custom {
    flex-direction: column;
}

.justify-content-center-custom {
    justify-content: center;
}

.justify-content-between-custom {
    justify-content: space-between;
}

.align-items-center-custom {
    align-items: center;
}

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

/* Spacing */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* Home Page Styles */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.login-form {
    margin-bottom: 1.5rem;
}

.form-group-custom {
    margin-bottom: 15px;
}

.form-label-custom {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 0.375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(41, 46, 85, 0.25);
}

.form-control-custom::placeholder {
    color: #adb5bd;
}

/* Select2 Styling */
.select2-container--default .select2-selection--multiple {
    border: 2px solid var(--border-color);
    border-radius: 0.375rem;
    min-height: calc(0.75rem * 2 + 1rem + 2px);
    padding: 0.25rem;
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(41, 46, 85, 0.25);
    outline: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    border-radius: 0.25rem;
    padding: 0.25rem 6px;
    margin: 3px;
    font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--white);
    margin-right: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: var(--white);
}

.select2-container--default .select2-search--inline .select2-search__field {
    padding: 0.375rem;
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 0;
    height: auto;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #adb5bd;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-dropdown {
    border: 2px solid var(--border-color);
    border-radius: 0.375rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
    color: var(--white);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Flatpickr Styling */
.flatpickr-input {
    cursor: pointer;
}

.flatpickr-calendar {
    border: 2px solid var(--border-color);
    border-radius: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Raleway', sans-serif;
}

.flatpickr-months {
    background-color: var(--primary-color);
    border-radius: 0.375rem 0.375rem 0 0;
    padding: 0.75rem;
}

.flatpickr-month {
    color: var(--white);
}

.flatpickr-current-month {
    color: var(--white);
    font-weight: 600;
}

.flatpickr-weekdays {
    background-color: var(--bg-light);
}

.flatpickr-weekday {
    color: var(--primary-color);
    font-weight: 600;
}

.flatpickr-day {
    color: var(--text-dark);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.flatpickr-day:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.flatpickr-day.inRange {
    background-color: rgba(41, 46, 85, 0.1);
    border-color: rgba(41, 46, 85, 0.2);
    color: var(--text-dark);
}

.flatpickr-day.today {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.flatpickr-day.today:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.flatpickr-day.flatpickr-disabled {
    color: var(--text-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--white);
    fill: var(--white);
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 1;
}

.input-with-icon .form-control-custom {
    padding-left: 2.75rem;
}

.input-with-icon .input-icon-right {
    position: absolute;
    right: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.input-with-icon input[type="date"],
.input-with-icon input[type="text"].flatpickr-input {
    padding-right: 2.75rem;
    padding-left: 1rem;
}

.form-label-custom i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}
.form-check-input {margin-top: 15px;}
.form-check-input:checked {
    background-color: #292e55;
    border-color: #292e55;
}
.form-check-input:focus {
    border-color: #292e55;
    box-shadow: 0 0 0 .25rem rgb(41 46 85 / 23%);}

.form-check-label-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-check-label-custom {
    position: relative;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-check-label-custom input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.form-check-label-custom span {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.form-check-label-custom span::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-label-custom input[type="checkbox"]:checked ~ span {
    color: var(--text-dark);
}

.form-check-label-custom input[type="checkbox"]:checked + span::before {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.form-check-label-custom input[type="checkbox"]:checked + span::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    z-index: 1;
}

.form-check-label-custom:hover span::before {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(239, 127, 56, 0.1);
}


/* Button Icons */
.btn-custom i {
    margin-right: 0.5rem;
}

.btn-custom.btn-block-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-menu-link a i {
    margin-right: 0.5rem;
}

.btn-block-custom {
    width: 100%;
    display: block;
}

.login-divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.login-divider-text {
    position: relative;
    background-color: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.view-menu-link {
    text-align: center;
    margin-top: 1rem;
}

.view-menu-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s ease;
}



/* Navigation */
.navbar-custom {
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    padding: 0 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand-custom {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.navbar-brand-custom:hover {
    color: var(--white);
    transform: scale(1.05);
    opacity: 0.9;
}

.navbar-brand-custom img {
    transition: transform 0.3s ease;
    width: 120px;
}

.navbar-brand-custom:hover img {
    transform: scale(1.1);
}

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-nav-custom {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.navbar-nav-custom li {
    position: relative;
}

.navbar-logout-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
}

.navbar-logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-logout-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 0rem;
    margin: 0rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}


.nav-link-custom:hover {
    color: var(--white);
}

.nav-link-custom:hover::before {
    width: 100%;
}

.nav-link-custom.active {
    color: var(--secondary-color);
}

.nav-link-custom.active::before {
    width: 100%;
    background-color: var(--secondary-color);
}

/* Bootstrap Off-Canvas Styling */
.navbar-toggler {
    border: 2px solid var(--secondary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: var(--primary-color);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Off-Canvas Menu Navigation */
.offcanvas-menu-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.offcanvas-menu-nav li {
    position: relative;
}

.offcanvas-menu-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.offcanvas-menu-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.offcanvas-menu-link.active {
    color: var(--white);
    background-color: var(--secondary-color);
}

.offcanvas-menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.75rem 0;
    padding: 0;
}

.offcanvas-logout-btn {
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
}

.offcanvas-logout-btn:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cards */
.card-custom {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-header-custom {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.card-body-custom {
    padding: 1.25rem;
}

.card-footer-custom {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

/* Plan Cards */
.plan-card {
    height: 100%;
    text-align: center;
}

/* New Plan Card Design */
.plan-card-new {
    background-color: var(--primary-color);
    border-radius: 1rem;
    padding: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    min-height: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.plan-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-card-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.plan-card-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plan-card-features-new li {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.plan-card-features-new li::before {
    content: '-';
    font-weight: 600;
    margin-right: 0.25rem;
}

.plan-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.plan-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 3px;
    position: relative;
}

.plan-card-price-old {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255);
    text-decoration: line-through;
    position: relative;
    top: -15px;
}

.plan-card-price-new {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-card-currency {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-left: 0rem;
    writing-mode: sideways-lr;
}

.plan-card-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: right;
    width: 100%;
    margin-right: 5px;
}

@media (max-width: 768px) {


    

    .plan-card-title-new {
        font-size: 1.25rem;
        text-align: left;
    }
    
    .plan-card-features-new {
        align-items: flex-start;
    }
    
    .plan-card-price-new {
        font-size: 32px;
    }
    
    .plan-card-price-old {
        font-size:20px;
    }
    
    .plan-card-currency {
        font-size: 13px;
    }
}



.card-body-custom {
    padding: 1.25rem;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.plan-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.plan-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    margin-top: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: transform 0.2s ease;
}

.plan-features li:hover {
    transform: translateX(4px);
}

.feature-thumbnail {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-features li:hover .feature-thumbnail {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plan-features li span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Sections */
.section-custom {
    padding: 2rem 0;
}

.section-title {
    text-align: left;
    margin-bottom: 25px;
}

.section-subtitle {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 1rem;
}

/* Calendar Styles */
.calendar-container {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-nav-btn:hover {
    background-color: #1f2344;
}

.calendar-month-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.calendar-day:hover {
    border-color: var(--secondary-color);
    background-color: rgba(239, 127, 56, 0.1);
}

.calendar-day.selected {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.calendar-day.other-month {
    color: #adb5bd;
    background-color: var(--bg-light);
}

.calendar-day.today {
    border-color: var(--primary-color);
    font-weight: bold;
}

.calendar-day {
    position: relative;
}

.calendar-day-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    z-index: 1;
}
.calendar-day span {position: absolute; color: var(--primary-color); font-weight: 600; top: 0; left: 3px;}

.calendar-day-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Meal Selection Modal/Section */
.meal-selection-panel {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.meal-type-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 20px;
    justify-content: start;
    flex-wrap: wrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0.5rem 0;
}

.meal-type-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.meal-type-tab {
    padding: 0.625rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.meal-type-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 127, 56, 0.1), transparent);
    transition: left 0.5s;
}

.meal-type-tab:hover::before {
    left: 100%;
}

.meal-type-tab:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.meal-type-tab.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a1f 100%);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.meal-type-tab.active:hover {
    background: linear-gradient(135deg, #e06a1f 0%, var(--secondary-color) 100%);
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.meal-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.meal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.meal-item.selected {
    border: 2px solid var(--secondary-color);
    background-color: rgba(239, 127, 56, 0.05);
}

.meal-item-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.meal-item-body {
    padding: 12px 8px;
}

.meal-item-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.meal-item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.meal-item-calories {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.meal-item-nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.nutrition-item {
    white-space: nowrap;
}

.nutrition-item strong {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Responsive Utilities */
@media (max-width: 992px) {
    .navbar-nav-custom {
        gap: 0.75rem;
    }
    
    .nav-link-custom {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}



/* Subscription Page Styles */
.subscription-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 0 auto;
}

.plan-summary-card {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.plan-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.plan-summary-item:last-child {
    border-bottom: none;
}

.plan-days-item {
    align-items: flex-start;
}

.plan-days-item .summary-label {
    margin-top: 0.25rem;
}

.days-of-week {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.day-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color:var(--secondary-color);
    transition: all 0.3s ease;
}

.day-box.unavailable {
    position: relative;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--primary-color);
}



.day-box.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-40deg);
    width: 24px;
    height: 1.5px;
    background-color: var(--text-dark);
}

.summary-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    text-align: right;
}

.plan-price-summary {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.discount-value {
    color: var(--success-color);
    font-size: 1rem;
}

.plan-summary-total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
}

.plan-summary-total .summary-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-total-summary {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Package Information Section */
.package-info-section {margin-bottom: 40px;}
.package-header {
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-description {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.meal-type-boxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meal-type-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--primary-color);
    padding: 10px 1rem;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.meal-type-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.meal-type-box:hover .meal-type-image-wrapper {
    transform: scale(1.1);
}

.meal-type-image {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover;
}

.meal-type-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: center;
}

@media (max-width: 768px) {
    .meal-type-boxes {
        gap: 1rem;
    }
    
    .meal-type-box {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .meal-type-image-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .meal-type-name {
        font-size: 0.875rem;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-description {
        font-size: 0.9rem;
    }
    
    .days-of-week {
        gap: 0.375rem;
    }
    
    .day-box {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

.form-section {
    margin-bottom: 16px;
    padding-bottom: 0rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required-asterisk {
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.promo-code-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}
.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {fill: #fff;}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: rgb(255 255 255);
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: rgb(255 255 255 / 100%);
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {top: 7px;}

.promo-code-wrapper .form-control-custom {
    flex: 1;
}

.promo-apply-btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.payment-method-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.payment-option {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.payment-option-label {
    position: relative;
    display: flex;
    align-items: center;
}

.payment-option-label::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked ~ .payment-option-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.payment-option input[type="radio"]:checked ~ .payment-option-label::before {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.payment-option input[type="radio"]:checked ~ .payment-option-label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--white);
    z-index: 1;
}

.payment-option:hover .payment-option-label::before {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(239, 127, 56, 0.1);
}

.payment-option-label {
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.terms-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.terms-link:hover {
    color: #e06a1f;
}

@media (max-width: 992px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-summary-card {
        position: static;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .subscription-grid {
        gap: 1rem;
    }
    
    .plan-summary-item {
        padding: 0.5rem 0;
    }
    
    .form-section {
        margin-bottom: 1.25rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .form-group-custom {
        margin-bottom: 1rem;
    }
    
    .form-group-custom div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .promo-code-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .promo-apply-btn {
        width: 100%;
    }
    
    .payment-method-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-custom {
        padding: 0.75rem 0;
    }
    
    .navbar-brand-custom img {
        height: auto;
    }
    
    .navbar-nav-custom {
        display: none;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 0.4rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .meal-grid {
        gap: 0.75rem;
    }
    
    
    .meal-item-body {
        padding: 0.5rem;
    }
    
    .meal-item-title {
        font-size: 0.85rem;
    }
    
    .meal-item-nutrition {
        font-size: 0.7rem;
        gap: 0.25rem 0.4rem;
    }
}

/* Utilities */
.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.shadow-custom {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow-lg-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.rounded-custom {
    border-radius: 0.5rem;
}

.rounded-lg-custom {
    border-radius: 1rem;
}
.forgot-password-link {color: #111; font-weight: 500; text-decoration: none;}

/* Subscription Category Cards */


.subscription-category-card {
    text-decoration: none;
    display: block;
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.subscription-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--bg-light);
}

.category-card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.subscription-category-card:hover .category-card-image img {
    transform: scale(1.05);
}

.category-card-name {
    padding: 10px;
    color: var(--white);
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    width: 80%;
    border-radius: 0 10px 0 10px;
}

.category-card-name h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    transition: color 0.3s ease;
}


@media (max-width: 768px) {
  
    
    .category-card-name {
        padding: 1.25rem;
    }
    
    .category-card-name h3 {
        font-size: 1.25rem;
    }

    
    .card-body-custom {
        padding: 1rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-features {
        margin: 0.75rem 0;
    }
    
    .plan-features li {
        padding: 0.5rem 0;
        gap: 0.625rem;
    }
    
    .feature-thumbnail {
        width: 36px;
        height: 36px;
    }
    
    .plan-features li span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .subscription-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subscription-categories-grid .row {
        margin: 0;
    }
    
    .subscription-categories-grid .col-lg-4,
    .subscription-categories-grid .col-md-4 {
        padding: 0;
        margin-bottom: 1rem;
    }
}

/* Subscription Plan Card */
.subscription-plan-card {
    text-align: center;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    position: sticky;
    top: 75px;
    align-self: flex-start;
    z-index: 10;
}

.subscription-plan-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: left;
}

.progress-circle-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}
.date-item {background-color: #cfe2ff99; border-radius: 10px; padding: 5px 15px;}

.progress-circle {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
}

.progress-circle-fill {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-circle[data-progress="58"] .progress-circle-fill {
    stroke-dashoffset: calc(339.292 - (339.292 * 58 / 100));
}

.progress-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.progress-days {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.subscription-dates {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.date-item {
    text-align: left;
}

.date-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0rem;
    font-weight: 500;
}

.date-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.subscription-expiry {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
    font-weight: 700;
}

.motivational-text-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 0 0px;
}

.motivational-text-sub {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.subscription-card-actions {
    margin-top: 15px;
    padding-top: 15px;  
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.subscription-card-actions .btn-custom {
    min-width: 180px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 991px) {
    .subscription-plan-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .subscription-plan-card {
        padding: 15px;
    }
    
    .subscription-plan-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .progress-circle {
        width: 150px;
        height: 150px;
    }
    
    .progress-percentage {
        font-size: 24px;
    }
    
    .progress-days {
        font-size: 0.85rem;
    }
    
    /* .subscription-dates {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    } */
    
    .motivational-text-main {
        font-size: 1.1rem;
    }
    
    .motivational-text-sub {
        font-size: 0.875rem;
    }
}

/* Fixed Bottom Subscribe Button */
.fixed-bottom-subscribe {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(41, 46, 85, 0.1);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fixed-subscribe-btn {
    max-width: 350px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(41, 46, 85, 0.3);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fixed-subscribe-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: left 2s;
}

.fixed-subscribe-btn:hover::before {
    left: 100%;
}

.fixed-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 46, 85, 0.4);
    background: linear-gradient(135deg, #1f2344 0%, var(--primary-color) 100%);
}

.fixed-subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(41, 46, 85, 0.3);
}

.subscribe-btn-text {
    position: relative;
    z-index: 1;
}

.subscribe-btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.fixed-subscribe-btn:hover .subscribe-btn-icon {
    transform: translateX(53px);
}

@media (max-width: 768px) {
    .fixed-bottom-subscribe {
        padding: 0.625rem 0.875rem;
    }
    
    .fixed-subscribe-btn {
        max-width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .subscribe-btn-icon {
        font-size: 1rem;
    }
}

.account-menu-card {
    height: 100%;
    min-height: 450px;
}

.account-menu-section {
    padding: 0;
}

.account-section-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.account-section-heading:first-child {
    margin-top: 0;
}

.account-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(153px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.modal-header {background: #f38a38; color: #fff;}

.account-menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 140px;
}

.account-menu-box:hover {
    background-color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(239, 127, 56, 0.2);
    transform: translateY(-5px);
}

.account-menu-box:active {
    transform: translateY(-2px);
}

.account-menu-box-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color: rgba(239, 127, 56, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.account-menu-box-icon i {
    font-size: 24px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.account-menu-box:hover .account-menu-box-icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.account-menu-box:hover .account-menu-box-icon i {
    color: var(--white);
}

.account-menu-box-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
    word-wrap: break-word;
}

@media (max-width: 991px) {
    .account-menu-card {
        min-height: auto;
        margin-top: 2rem;
    }
    
    .account-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.875rem;
    }
    
    .account-menu-box {
        padding: 1.25rem 0.75rem;
        min-height: 130px;
    }
    
    .account-menu-box-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.625rem;
    }
    
    .account-menu-box-icon i {
        font-size: 1.75rem;
    }
    
    .account-menu-box-text {
        font-size: 0.875rem;
    }
}
@media (max-width: 767px) {
    .heading-primary {
        font-size: 20px;
    }
    .account-menu-card {margin-top: 0;}
    .subscription-card-actions .btn-custom {
        min-width: 140px;
        padding: 8px 10px;
        font-size: 14px;
    }
    .form-control-custom {padding: 10px 8px;}
    .plan-title {font-size: 20px; font-weight: 600;}
    
    .heading-secondary {
        font-size: 1.5rem;
    }
    .gridform-1, .gridform-3 {grid-template-columns: auto !important; gap: 0 !important}
    
    .login-card {
        padding: 1.5rem 1rem;
        background-color: #ffffffcf;
    }
    
    .home-hero-content {
        padding: 0rem;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .meal-type-tabs {
        margin-bottom: 1.5rem;
        padding: 0.375rem 0;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .meal-type-tab {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .meal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    
    .meal-item-body {
        padding: 0.75rem;
    }
    
    .meal-item-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .meal-item-nutrition {
        font-size: 0.75rem;
        gap: 0.25rem 0.5rem;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .account-section-heading {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .account-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .account-menu-box {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }

    .account-menu-box-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .account-menu-box-icon i {
        font-size: 1.5rem;
    }

    .account-menu-box-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .account-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .account-menu-box {
        padding: 0.875rem 0.5rem;
        min-height: 110px;
    }

    .account-menu-box-icon {
        width: 40px;
        height: 40px;
    }

    .account-menu-box-icon i {
        font-size: 1.25rem;
    }

    .account-menu-box-text {
        font-size: 0.75rem;
    }
}

/* Modal Styles */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 15px 18px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.1);
    transform: translateY(-2px);
}

.contact-info-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a1f 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.2);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

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

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.social-media-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.3);
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-info-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-info-icon-wrapper {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.25rem;
    }

    .contact-info-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-link,
    .contact-info-details p {
        font-size: 0.875rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .social-media-icons {
        gap: 0.5rem;
    }
}

/* Renew Plan Modal Styles */
.renew-plan-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.renew-plan-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 18px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.renew-plan-option:hover {
    background-color: #f8f9fa;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.15);
    transform: translateX(5px);
}

.renew-plan-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a1f 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.2);
}

.renew-plan-content {
    flex: 1;
}

.renew-plan-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.renew-plan-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.renew-plan-arrow {
    font-size: 1.25rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.renew-plan-option:hover .renew-plan-arrow {
    transform: translateX(5px);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .renew-plan-option {
        padding: 1rem;
        gap: 0.75rem;
    }

    .renew-plan-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }

    .renew-plan-title {
        font-size: 1rem;
    }

    .renew-plan-description {
        font-size: 0.85rem;
    }
}

.language-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option:hover {
    background-color: #f8f9fa;
    border-color: var(--secondary-color) !important;
}

.language-option input[type="radio"]:checked + label {
    color: var(--primary-color);
}

.language-option:has(input[type="radio"]:checked) {
    background-color: rgba(239, 127, 56, 0.1);
    border-color: var(--secondary-color) !important;
}

.terms-content h6,
.privacy-content h6 {
    color: var(--primary-color);
}

.terms-content ul,
.privacy-content ul {
    padding-left: 1.5rem;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
}

.modal-body {
    color: var(--text-dark);
}

/* Modal Footer Styling */
.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background-color: var(--white);
}

.modal-footer .btn-custom {
    min-width: 120px;
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
}

.modal-footer .btn-secondary-custom {
    background-color: #6c757d;
    color: var(--white);
}

.modal-footer .btn-secondary-custom:hover {
    background-color: #5a6268;
    color: var(--white);
}

@media (max-width: 576px) {
    .modal-footer {
        flex-direction: column;
        padding: 1rem;
    }

    .modal-footer .btn-custom {
        width: 100%;
        min-width: auto;
    }
}

/* Meal Selection Page Styles */
.download-app-section {
    background: linear-gradient(135deg, rgba(239, 127, 56, 0.1) 0%, rgba(41, 46, 85, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.download-app-content {
    text-align: center;
}

.download-app-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.app-download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-download-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-download-link:hover {
    transform: translateY(-5px);
}

.app-store-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.app-features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(239, 127, 56, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.calendar-features-section {
    padding: 2rem 0;
}

.calendar-showcase {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calendar-legend {
    margin-top: 2rem;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legend-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.legend-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.app-features-details {
    padding: 3rem 0;
}

.feature-detail-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(239, 127, 56, 0.15);
    border-color: var(--secondary-color);
}

.feature-detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a1f 100%);
    border-radius: 15px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(239, 127, 56, 0.3);
}

.feature-detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-detail-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 2rem 1.5rem;
    }

    .download-app-description {
        font-size: 1rem;
    }

    .app-store-img {
        height: 50px;
    }

    .app-features-preview {
        grid-template-columns: 1fr;
    }

    .calendar-showcase {
        padding: 1.5rem;
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .feature-detail-card {
        padding: 1.5rem;
    }

    .feature-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* Login Page with Text Slider */
.login-page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/sos-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.login-page-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.login-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Text Slider Section */
.login-slider-section {
    padding: 2rem;
}

.slider-content {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-wrapper {
    position: relative;
    min-height: 280px;
}

.slider-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slider-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.slider-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-indicators {
    display: flex;
    gap: 0.75rem;
    margin-top: 0rem;
    justify-content: flex-start;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--secondary-color);
}

/* Login Form Section */
.login-form-section {
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Login Page */
@media (max-width: 992px) {
    .login-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-slider-section {
        display: none;
    }

    .login-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .login-page-container {
        padding: 1rem;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .plan-card-new {
        gap: 15px;
        padding: 12px;
    }
    
    .subscription-grid {
        gap: 1.5rem;
    }
    
    .meal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscription-categories-grid .row {
        gap: 1rem;
    }
    
    .subscription-categories-grid .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .home-hero-content {
        max-width: 500px;
    }
    
    .login-card {
        padding: 1.75rem;
    }
    
    .subscription-plan-card {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }
    
    .account-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-section {
        margin-bottom: 1.5rem;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    /* Language Switcher */
    .language-switcher {
        top: 10px;
        left: auto;
        right: 10px;
        padding: 0.4rem;
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .lang-btn i {
        font-size: 0.9rem;
    }
    
    /* Typography */
    .heading-primary {
        font-size: 1.5rem;
    }
    
    .heading-secondary {
        font-size: 1.5rem;
    }
    
    .heading-tertiary {
        font-size: 1.25rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Home Hero & Login Card */
    .home-hero {
        padding: 1rem;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .home-hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .login-card {
        padding: 1.25rem;
        margin: 0.5rem;
    }
    
    .login-logo {
        max-width: 120px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    /* Plan Cards */
    .plan-card-new {
        gap: 12px;
        padding: 16px;
        min-height: auto;
    }
    
    .plan-card-price-new {
        font-size: 2rem;
    }
    
    .plan-card-price-old {
        font-size: 1.1rem;
        top: -10px;
    }
    
    /* Plans Grid */
    .plans-grid .col-lg-4,
    .plans-grid .col-md-4 {
        margin-bottom: 1rem;
    }
    
    /* Subscription Grid */
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-summary-card {
        position: static;
        top: auto;
    }
    
    /* Meal Grid */
    .meal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .meal-item {
        border-radius: 8px;
    }
    
    .meal-item-image {
        aspect-ratio: 1 / 1;
    }
    
    .meal-item-body {
        padding: 0.75rem;
    }
    
    .meal-item-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .meal-item-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .meal-item-calories {
        font-size: 0.8rem;
    }
    
    .meal-item-nutrition {
        font-size: 0.75rem;
        gap: 0.25rem 0.5rem;
        padding-top: 0.75rem;
    }
    
    /* Meal Type Tabs */
    .meal-type-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0.375rem 0;
    }
    
    .meal-type-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Subscription Categories */
    .subscription-categories-grid .row {
        gap: 1rem;
    }
    
    .subscription-categories-grid .col-lg-4,
    .subscription-categories-grid .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .category-card-name {
        padding: 0.875rem;
        width: 100%;
    }
    
    .category-card-name h3 {
        font-size: 1.1rem;
    }
    
    /* Forms */
    .form-group-custom {
        margin-bottom: 1rem;
    }
    
    .form-control-custom {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .form-label-custom {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-section-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Grid Forms */
    .gridform-1,
    .gridform-2,
    .gridform-3,
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    /* Package Info */
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-description {
        font-size: 0.9rem;
    }
    
    .meal-type-boxes {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .meal-type-box {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .meal-type-image-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .meal-type-name {
        font-size: 0.875rem;
    }
    
    /* Days of Week */
    .days-of-week {
        gap: 0.375rem;
        flex-wrap: wrap;
    }
    
    .day-box {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    /* Subscription Plan Card */
    .subscription-plan-card {
        position: static;
        top: auto;
        margin-bottom: 1.5rem;
    }
    
    .subscription-plan-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .progress-circle {
        width: 120px;
        height: 120px;
    }
    
    .progress-percentage {
        font-size: 1.5rem;
    }
    
    .progress-days {
        font-size: 0.8rem;
    }
    
    .subscription-dates {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .date-item {
        text-align: center;
    }
    
    .subscription-card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .subscription-card-actions .btn-custom {
        min-width: 100%;
        width: 100%;
    }
    
    /* Account Menu */
    .account-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .account-menu-box {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }
    
    .account-menu-box-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .account-menu-box-icon i {
        font-size: 1.5rem;
    }
    
    .account-menu-box-text {
        font-size: 0.8rem;
    }
    
    .account-section-heading {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    
    /* Calendar */
    .calendar-container {
        padding: 1rem;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .calendar-month-year {
        font-size: 1.25rem;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.875rem;
    }
    
    /* Download App Section */
    .download-app-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .download-app-description {
        font-size: 0.95rem;
    }
    
    .app-store-img {
        height: 45px;
    }
    
    .app-features-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h5 {
        font-size: 0.95rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    /* Buttons */
    .btn-custom {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-block-custom {
        width: 100%;
    }
    
    /* Promo Code */
    .promo-code-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .promo-apply-btn {
        width: 100%;
    }
    
    /* Payment Options */
    .payment-method-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
        padding: 1rem;
    }
    
    .modal-footer .btn-custom {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    /* Contact Info */
    .contact-info-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .contact-info-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.25rem;
    }
    
    .contact-info-title {
        font-size: 1rem;
    }
    
    .contact-link,
    .contact-info-details p {
        font-size: 0.875rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    /* Renew Plan Options */
    .renew-plan-option {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .renew-plan-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
    
    .renew-plan-title {
        font-size: 1rem;
    }
    
    .renew-plan-description {
        font-size: 0.85rem;
    }
    
    /* Fixed Subscribe Button */
    .fixed-bottom-subscribe {
        padding: 0.625rem 0.875rem;
    }
    
    .fixed-subscribe-btn {
        max-width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Login Page Slider */
    .slider-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .slider-description {
        font-size: 1rem;
    }
    
    .slider-wrapper {
        min-height: 250px;
    }
    
    /* Navigation */
    .navbar-custom {
        padding: 0.5rem 0;
    }
    
    .navbar-brand-custom img {
        width: 100px;
    }
    
    /* Section Padding */
    .section-custom {
        padding: 1.5rem 0;
    }
    
    /* Meal Selection Panel */
    .meal-selection-panel {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    /* View Menu Link */
    .view-menu-link {
        margin-top: 0.75rem;
    }
    
    .view-menu-link a {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .heading-primary {
        font-size: 1.25rem;
    }
    
    .heading-secondary {
        font-size: 1.25rem;
    }
    
    .login-card {
        padding: 1rem;
    }
    
    .login-title {
        font-size: 1.25rem;
    }
    
    .plan-card-new {
        padding: 16px;
        gap: 10px;
    }
    
    .plan-card-title-new {
        font-size: 1.1rem;
    }
    
    .plan-card-price-new {
        font-size: 1.75rem;
    }
    
    .plan-card-features-new li {
        font-size: 0.9rem;
    }
    
    .plan-card-period {
        font-size: 0.9rem;
    }
    
    .meal-grid {
        gap: 0.875rem;
    }
    
    .meal-item-body {
        padding: 0.625rem;
    }
    
    .meal-item-title {
        font-size: 0.9rem;
    }
    
    .meal-item-description {
        font-size: 0.8rem;
    }
    
    .meal-item-nutrition {
        font-size: 0.7rem;
        gap: 0.25rem 0.4rem;
    }
    
    .meal-type-tab {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .subscription-categories-grid .col-lg-4,
    .subscription-categories-grid .col-md-4 {
        margin-bottom: 0.75rem;
    }
    
    .category-card-name h3 {
        font-size: 1rem;
    }
    
    .form-control-custom {
        padding: 0.625rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-custom {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .account-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .account-menu-box {
        padding: 0.875rem 0.5rem;
        min-height: 110px;
    }
    
    .account-menu-box-icon {
        width: 40px;
        height: 40px;
    }
    
    .account-menu-box-icon i {
        font-size: 1.25rem;
    }
    
    .account-menu-box-text {
        font-size: 0.75rem;
    }
    
    .language-switcher {
        padding: 0.35rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .lang-btn i {
        display: none;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slider-description {
        font-size: 0.9rem;
    }
    
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    
    .progress-percentage {
        font-size: 1.25rem;
    }
    
    .day-box {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .meal-type-box {
        min-width: 70px;
        padding: 0.625rem;
    }
    
    .meal-type-image-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .meal-type-name {
        font-size: 0.8rem;
    }
}