/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #a0424c;
    /* --secondary: #2C3E50; */
    --secondary-light: #34495E;
    --accent: #ff5722;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --gray: #95A5A6;
    --gray-light: #e9ecef;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.16);

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

}

.dark-mode {
    --light: #1a1a1a;
    --dark: #f8f9fa;
    --text: #e9ecef;
    --text-light: #adb5bd;
    --white: #2d3748;
    --gray-light: #4a5568;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
    gap: 8px;
    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.3), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-accent:hover {
    background-color: #e64a19;
    border-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    /* color: var(--dark); */
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 25px auto 0;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

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

/* ===== Logo image styling (header + loading screen) ===== */

/* header logo image */
.logo img {
    display: block;
    /* ensure img block layout */
    width: auto;
    height: 80px;
    /* tweak as needed for desktop */
    object-fit: contain;
    border-radius: 6px;
    /* optional: soft corners if logo is square */
    transition: transform 0.45s cubic-bezier(.17, .85, .32, 1.15), opacity .35s ease;
}

/* smaller size on mobile */
@media (max-width: 576px) {
    .logo img {
        height: 72px;
    }
}

/* loading-screen logo */
.loading-logo {
    width: 140px;
    /* main size for loading screen */
    max-width: 45%;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    display: block;
    opacity: 0;
    transform: translateY(6px) scale(.98);
    transition: opacity .45s ease, transform .45s cubic-bezier(.17, .85, .32, 1.15);
}

/* subtle pop-in animation for the logo while loader spins */
.loading-screen .loading-logo.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* smaller loading-logo on small screens */
@media (max-width: 576px) {
    .loading-logo {
        width: 110px;
        margin-bottom: 14px;
    }
}

/* when the loading screen hides, gently fade out children */
.loading-screen.hidden .loading-logo,
.loading-screen.hidden .loader,
.loading-screen.hidden h2,
.loading-screen.hidden p {
    opacity: 0;
    transform: translateY(-6px);
}

/* optional: if your logo is round and you'd rather show a circle */
.loading-logo.circle {
    border-radius: 50%;
    padding: 6px;
    background: var(--light);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}


/* ===== HEADER ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo i {
    color: var(--secondary);
    margin-right: 10px;
    transition: var(--transition);
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 10px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 1.3rem;
    color: var(--dark);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* ===== VIDEO HERO ===== */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/banner.jpeg') no-repeat;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.85) 0%, rgba(76, 175, 80, 0.85) 100%);
}

.hero-content {
    max-width: 100%;
    /* max-width: 700px; */
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="%23f8f9fa"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
    opacity: 1;
}

.steps-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.step-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* ===== MODERN NUTRITION CALCULATOR ===== */
.nutrition-calculator {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    margin: 50px auto;
    max-width: 900px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.nutrition-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0L100,0L100,100L0,100Z" fill="white" opacity="0.05"/></svg>');
    background-size: cover;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.calculator-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    /* color: var(--white); */
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.result-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Select2 Customization */
.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(46, 125, 50, 0.3);
    border-radius: 8px;
    height: 52px;
    color: var(--white);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--primary);
    line-height: 48px;
    padding-left: 18px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--white) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--white) transparent;
}

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

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

.select2-dropdown {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
}

.dark-mode .select2-dropdown {
    background-color: var(--white);
    color: var(--dark);
}

/* ===== ANIMATED STATISTICS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 30px;
}

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

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


/* ===== ADVANCED FILTER SYSTEM ===== */
.filters-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    margin-bottom: 0;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-tag {
    background: var(--light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tag.active {
    background: var(--primary);
    color: var(--white);
}

.filter-tag:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* ===== MEALS SHOWCASE ===== */
.meals-showcase {
    background-color: var(--light);
    position: relative;
}

.meals-showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="%23f8f9fa"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 1;
    transform: rotate(180deg);
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.meal-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.meal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.meal-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    position: relative;
}

.meal-card:hover .meal-img {
    transform: scale(1.05);
}

.meal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.meal-card:hover .meal-overlay {
    opacity: 1;
}

.meal-tags {
    display: flex;
    gap: 8px;
}

.meal-tag {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.meal-content {
    padding: 25px;
}

.meal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.meal-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.meal-calories {
    display: flex;
    align-items: center;
}

.meal-calories i {
    color: var(--accent);
    margin-right: 5px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* ===== INTERACTIVE MEAL BUILDER ===== */
.meal-builder {
    background: var(--light);
    padding: 80px 0;
}

.builder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.builder-preview {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.preview-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.builder-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-card:hover,
.option-card.active {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.option-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ===== CHEF VIDEOS ===== */
.chef-videos {
    padding: 80px 0;
    background: var(--light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.video-thumbnail:hover .video-play-btn {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 25px;
}

/* ===== TESTIMONIALS ===== */

/* ===== TESTIMONIALS SLIDER SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    animation: fadeInDown 0.8s ease-out;
}

.testimonials-section .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials-section .section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 25px auto 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Wrapper */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Slider */
.testimonials-grid {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* Card */
.testimonial-card {
    flex: 0 0 33.3333%;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    margin: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Tablet */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Navigation */
.testimonial-nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.testimonial-nav button {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.testimonial-dot.active {
    background: #111;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    padding: 20px 0 60px;
}

/* Desktop Grid View */

/* Individual Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideCardUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes slideCardUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }

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

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Testimonial Content */
.testimonial-text {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial-text::before {
    content: '❝';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 3.5rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Rating */
.rating {
    color: #FFB300;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.rating i.fas.fa-star {
    color: #FFB300;
}

.rating i.fas.fa-star-half-alt {
    color: #FFB300;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        opacity: 0;
        transform: translateX(100%);
        animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        margin: 0 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card.active {
        opacity: 1;
        transform: translateX(0);
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(100px);
        }

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

    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-100px);
        }

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

    .testimonials-section .section-title h2 {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 25px;
    }

    .testimonial-text::before {
        font-size: 2.5rem;
        top: -10px;
    }
}

/* Mobile Navigation Dots */

@media (max-width: 768px) {
    .testimonial-dots {
        display: flex;
    }
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Navigation Arrows */

@media (max-width: 768px) {
    .testimonial-nav {
        display: flex;
    }
}

.testimonial-nav button {
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.testimonial-nav button:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-nav button.prev {
    margin-left: -20px;
}

.testimonial-nav button.next {
    margin-right: -20px;
}

/* Auto-play indicator */
.testimonial-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .testimonial-progress {
        display: block;
    }
}


@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-title h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin: 0 5px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="white" opacity="0.05"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SMART SHOPPING CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    padding: 30px;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-total {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-row.final {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--gray-light);
    padding-top: 10px;
    margin-top: 10px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.dark-mode-toggle:hover {
    transform: rotate(30deg);
}

/* ===== SUCCESS ANIMATION ===== */
.success-animation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    justify-content: center;
    align-items: center;
}

.success-animation.active {
    display: flex;
}

.success-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    animation: zoomIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== MICRO-INTERACTIONS ===== */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}


@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CHECKOUT STYLES ===== */
.checkout-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.checkout-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.checkout-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 50px 0;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gray-light);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.checkout-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.payment-method span {
    font-weight: 600;
}

.card-element {
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-summary {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary);
    font-weight: 600;
}

.order-item-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-totals {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-row.final {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--gray-light);
    padding-top: 10px;
    margin-top: 10px;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-back {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--gray-light);
}

.btn-back:hover {
    background: var(--gray-light);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== SUCCESS SECTION ===== */
.success-section {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.success-section.active {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.success-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.order-details {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.order-details h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.detail-label {
    font-weight: 600;
}

.tracking-info {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .checkout-hero h1 {
        font-size: 2rem;
    }

    .checkout-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex: 1;
        min-width: 100px;
    }

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

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .checkout-hero h1 {
        font-size: 1.8rem;
    }

    .checkout-form,
    .order-summary {
        padding: 20px;
    }

    .checkout-actions {
        flex-direction: column;
        gap: 15px;
    }

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

/* ===== LOGIN HERO ===== */
.login-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.login-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.login-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== LOGIN CONTAINER ===== */
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 80px 0;
    align-items: center;
}

.login-content {
    padding-right: 40px;
}

.login-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.login-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== LOGIN FORM ===== */
.login-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.login-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.password-input {
    position: relative;
}

.toggle-password,
.toggle-new-password,
.toggle-confirm-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 18px;
    height: 18px;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--primary);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
}

.form-footer a {
    font-weight: 600;
}

/* ===== SOCIAL LOGIN ===== */
.social-login {
    margin: 30px 0;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.divider span {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.social-btn.google i {
    color: #DB4437;
}

.social-btn.facebook i {
    color: #4267B2;
}

/* ===== PASSWORD STRENGTH ===== */
.password-strength {
    margin-top: 8px;
}

.strength-meter {
    height: 5px;
    background: var(--gray-light);
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-level {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: var(--transition);
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== SECURITY FEATURES ===== */
.security-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-item i {
    color: var(--primary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .login-content {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .login-hero h1 {
        font-size: 2rem;
    }

    .login-content h2 {
        font-size: 1.8rem;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .security-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .login-hero h1 {
        font-size: 1.8rem;
    }

    .login-form-container {
        padding: 30px 20px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===== PAGE HERO ===== */
.academy-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') !important;
    background-size: cover;
    background-position: center;
}

.page-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 100%;
    /* max-width: 700px; */
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PLAN COMPARISON SECTION ===== */
.plan-comparison {
    background-color: var(--light);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    border-bottom: 2px solid var(--gray-light);
}

.comparison-header>div {
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.comparison-row:hover {
    background-color: rgba(46, 125, 50, 0.05);
}

.comparison-row>div {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-title {
    justify-content: flex-start !important;
    font-weight: 500;
}

.comparison-row i {
    color: var(--primary);
    font-size: 1.2rem;
}

.comparison-row .fa-times {
    color: var(--text-light);
}

.plan-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    /* color: var(--dark); */
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

/* ===== MEAL PLANS SECTION ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plan-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--white);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 35px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.plan-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0L100,0L100,100L0,100Z" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-features ul li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* ===== CUSTOMIZATION SECTION ===== */
.customization-section {
    background-color: var(--light);
}

.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.customization-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.customization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.customization-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    background: var(--light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
    color: var(--white);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== TESTIMONIALS ===== */

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-right: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="white" opacity="0.05"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header>div:not(:first-child),
    .comparison-row>div:not(:first-child) {
        display: none;
    }

    .row-title::before {
        content: attr(data-title) ": ";
        font-weight: 600;
    }

    .plan-name {
        display: block !important;
        text-align: center;
    }

    .plan-name::before {
        content: "Plan: ";
        font-weight: 600;
    }

    .plan-price::before {
        content: "";
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 2.3rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* ===== CATEGORY NAVIGATION ===== */
.category-nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    padding: 10px 25px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== ADVANCED FILTER SYSTEM ===== */
.filters-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-tag {
    background: var(--light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tag.active {
    background: var(--primary);
    color: var(--white);
}

.filter-tag:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* ===== MEALS SHOWCASE ===== */
.meals-showcase {
    background-color: var(--light);
    position: relative;
}

.meals-showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="%23f8f9fa"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 1;
    transform: rotate(180deg);
}


.meal-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.meal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.meal-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    position: relative;
}

.meal-card:hover .meal-img {
    transform: scale(1.05);
}

.meal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.meal-card:hover .meal-overlay {
    opacity: 1;
}

.meal-tags {
    display: flex;
    gap: 8px;
}

.meal-tag {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.meal-content {
    padding: 25px;
}

.meal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.meal-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.meal-calories {
    display: flex;
    align-items: center;
}

.meal-calories i {
    color: var(--accent);
    margin-right: 5px;
}

.meal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meal-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.add-to-cart {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* ===== MEAL CATEGORIES SECTION ===== */
.meal-categories {
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 200px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(76, 175, 80, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== CHEF'S SPECIALS SECTION ===== */
.chef-specials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.chef-specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="white" opacity="0.05"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.special-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.special-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.special-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.special-content {
    padding: 25px;
}

.special-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.special-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ===== DIETARY OPTIONS SECTION ===== */
.dietary-options {
    background-color: var(--light);
}

.dietary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dietary-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dietary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dietary-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.dietary-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dietary-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== MEAL PLANS CTA ===== */
.plans-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffb74d 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.plans-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,100 250,50S0,0,0,0Z" fill="white" opacity="0.1"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
}

.plans-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.plans-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 768px) {

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .category-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .category-btn {
        flex-shrink: 0;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {


    .section-title h2 {
        font-size: 1.8rem;
    }

    .meals-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRIVACY HERO ===== */
.privacy-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== PRIVACY CONTAINER ===== */
.privacy-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 60px 0;
}

.privacy-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.privacy-nav {
    list-style: none;
}

.privacy-nav li {
    margin-bottom: 15px;
}

.privacy-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text);
    transition: var(--transition);
}

.privacy-nav a:hover,
.privacy-nav a.active {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.privacy-nav i {
    width: 20px;
    text-align: center;
}

.privacy-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.last-updated {
    background: var(--light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-updated i {
    color: var(--primary);
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    color: var(--primary);
}

.privacy-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.privacy-section p,
.privacy-section li {
    color: var(--text);
    margin-bottom: 15px;
}

.privacy-section ul,
.privacy-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
}

.highlight-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.contact-info {
    background: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.data-table th {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.data-table tr:hover {
    background-color: rgba(46, 125, 50, 0.05);
}

/* ===== AGREEMENT SECTION ===== */
.agreement-section {
    background: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
}

.agreement-section h3 {
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .privacy-container {
        grid-template-columns: 1fr;
    }

    .privacy-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .privacy-hero h1 {
        font-size: 1.8rem;
    }

    .agreement-section {
        padding: 30px 20px;
    }
}

/* ===== SIGNUP HERO ===== */
.signup-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.signup-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.signup-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== SIGNUP STEPS ===== */
.signup-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 60px;
    position: relative;
}

.signup-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gray-light);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== SIGNUP CONTAINER ===== */
.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
}

.signup-content {
    padding-right: 40px;
}

.signup-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.signup-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== SIGNUP FORM ===== */
.signup-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.signup-form {
    margin-bottom: 25px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.password-input {
    position: relative;
}

.toggle-password,
.toggle-new-password,
.toggle-confirm-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 18px;
    height: 18px;
}

/* ===== MEAL PLAN SELECTION ===== */
.plan-selection {
    margin: 30px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.plan-option {
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.plan-option:hover,
.plan-option.selected {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.plan-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.plan-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.plan-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price .text-default {
    color: var(--primary) !important;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--shadow);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* ===== DIETARY PREFERENCES ===== */
.dietary-preferences {
    margin: 30px 0;
}

.preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.preference-option {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.preference-option:hover,
.preference-option.selected {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.preference-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.preference-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== DELIVERY PREFERENCES ===== */
.delivery-preferences {
    margin: 30px 0;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.delivery-option {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.delivery-option:hover,
.delivery-option.selected {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.delivery-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.delivery-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.delivery-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== FORM NAVIGATION ===== */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-back {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--gray-light);
}

.btn-back:hover {
    background: var(--gray-light);
}

/* ===== SOCIAL SIGNUP ===== */
.social-signup {
    margin: 30px 0;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.divider span {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.social-btn.google i {
    color: #DB4437;
}

.social-btn.facebook i {
    color: #4267B2;
}

/* ===== PASSWORD STRENGTH ===== */
.password-strength {
    margin-top: 8px;
}

.strength-meter {
    height: 5px;
    background: var(--gray-light);
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-level {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: var(--transition);
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== SECURITY FEATURES ===== */
.security-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-item i {
    color: var(--primary);
}

.order-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-label {
    font-weight: 600;
}

.next-steps {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}


/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .signup-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-content {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .signup-hero h1 {
        font-size: 2rem;
    }

    .signup-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex: 1;
        min-width: 100px;
    }

    .signup-content h2 {
        font-size: 1.8rem;
    }

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

    .plans-grid {
        grid-template-columns: 1fr;
    }

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

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .security-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .signup-hero h1 {
        font-size: 1.8rem;
    }

    .signup-form-container {
        padding: 30px 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

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

/* ===== TRACKING HERO ===== */
.tracking-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.tracking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tracking-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.order-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.order-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.order-search button {
    padding: 15px 30px;
}

/* ===== TRACKING CONTAINER ===== */
.tracking-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 50px 0;
}

.tracking-main {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.tracking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

/* ===== TRACKING STATUS ===== */
.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.order-info h2 {
    margin-bottom: 5px;
}

.order-number {
    color: var(--text-light);
    font-size: 1rem;
}

.status-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.preparing {
    background: var(--secondary);
}

.status-badge.on-the-way {
    background: var(--accent);
}

.status-badge.delivered {
    background: var(--primary);
}

/* ===== TRACKING PROGRESS ===== */
.tracking-progress {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-light);
    z-index: 1;
}

.progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: var(--primary);
    z-index: 2;
    transition: var(--transition);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.progress-step.active .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.progress-step.completed .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.step-time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* ===== DELIVERY MAP ===== */
.delivery-map {
    margin-bottom: 30px;
}

.map-container {
    height: 300px;
    background: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.driver-marker {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.destination-marker {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ===== DELIVERY INFO ===== */
.delivery-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.info-card h3 i {
    color: var(--primary);
}

.info-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    color: var(--text-light);
}

/* ===== DRIVER INFO ===== */
.driver-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.driver-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
}

.driver-details h3 {
    margin-bottom: 5px;
}

.driver-rating {
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-driver {
    display: flex;
    gap: 10px;
}

.contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== ORDER SUMMARY ===== */
.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary);
    font-weight: 600;
}

.order-item-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-totals {
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-row.final {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--gray-light);
    padding-top: 10px;
    margin-top: 10px;
}

/* ===== DELIVERY COMPLETED ===== */
.delivery-completed {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.delivery-completed.active {
    display: block;
}

.completed-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.delivery-completed h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.delivery-completed p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.rating-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto 40px;
}

.rating-section h3 {
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.star {
    font-size: 2rem;
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.star.active,
.star:hover {
    color: var(--secondary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .tracking-container {
        grid-template-columns: 1fr;
    }

    .tracking-sidebar {
        grid-row: 1;
    }
}

@media (max-width: 768px) {

    .tracking-hero h1 {
        font-size: 2rem;
    }

    .order-search {
        flex-direction: column;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .progress-step {
        flex: 1;
        min-width: 100px;
    }

    .delivery-info {
        grid-template-columns: 1fr;
    }

    .driver-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .tracking-hero h1 {
        font-size: 1.8rem;
    }

    .tracking-main,
    .sidebar-card {
        padding: 20px;
    }

    .tracking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===== TERMS HERO ===== */
.terms-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.terms-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== TERMS CONTAINER ===== */
.terms-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 60px 0;
}

.terms-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.terms-nav {
    list-style: none;
}

.terms-nav li {
    margin-bottom: 15px;
}

.terms-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text);
    transition: var(--transition);
}

.terms-nav a:hover,
.terms-nav a.active {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.terms-nav i {
    width: 20px;
    text-align: center;
}

.terms-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.last-updated {
    background: var(--light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-updated i {
    color: var(--primary);
}

.terms-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    color: var(--primary);
}

.terms-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.terms-section p,
.terms-section li {
    color: var(--text);
    margin-bottom: 15px;
}

.terms-section ul,
.terms-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.highlight-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.contact-info {
    background: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

/* ===== AGREEMENT SECTION ===== */
.agreement-section {
    background: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
}

.agreement-section h3 {
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
    .terms-container {
        grid-template-columns: 1fr;
    }

    .terms-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 30px 20px;
    }

    .terms-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .terms-hero h1 {
        font-size: 1.8rem;
    }

    .agreement-section {
        padding: 30px 20px;
    }
}

/* Customization-specific styles */
.customization-wizard {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wizard-step {
    display: none;
    padding: 40px;
}

.wizard-step.active {
    display: block;
}

.wizard-header {
    margin-bottom: 30px;
    text-align: center;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.wizard-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.wizard-progress-step.active .step-number {
    background: var(--primary);
}

.wizard-progress-step.completed .step-number {
    background: var(--accent);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary);
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.option-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.option-description {
    font-size: 0.85rem;
    color: #666;
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.allergen-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
}

.allergen-option.selected {
    border-color: var(--accent);
    background: rgba(255, 152, 0, 0.05);
}

.customization-summary {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

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

.btn-outline:hover {
    background: rgba(76, 175, 80, 0.1);
}

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

.customization-preview {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 40px;
}

.preview-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.preview-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.preview-item {
    margin-bottom: 15px;
}

.preview-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.preview-value {
    color: #666;
}

/* Custom Alert Modal Styles */
.custom-alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.custom-alert-modal.active {
    display: flex;
}

.alert-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: alertSlideIn 0.3s ease-out;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alert-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.alert-icon i {
    animation: iconPop 0.5s ease-out;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.alert-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.alert-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.alert-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.alert-actions .btn {
    min-width: 140px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .alert-content {
        padding: 30px 20px;
    }

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

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

/* Verification Hero */
.verification-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.verification-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.verification-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Verification Section */
.verification-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
    align-items: start;
}

.verification-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.verification-header {
    text-align: center;
    margin-bottom: 40px;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.verification-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.verification-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* OTP Inputs */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.otp-digit {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.otp-digit:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.timer-container {
    text-align: center;
    margin-bottom: 30px;
}

.timer-container p {
    color: var(--text-light);
    margin-bottom: 0;
}

#countdown {
    font-weight: 700;
    color: var(--accent);
}

.verification-btn {
    width: 100%;
    margin-bottom: 25px;
}

.verification-footer {
    text-align: center;
}

.verification-footer p {
    margin-bottom: 0;
}

#resend-code {
    color: var(--primary);
    font-weight: 600;
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition);
}

/* Verification Info */
.verification-info {
    padding: 20px;
}

.verification-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .verification-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .verification-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .verification-hero-content h1 {
        font-size: 2rem;
    }

    .verification-card {
        padding: 30px 20px;
    }

    .otp-inputs {
        gap: 10px;
    }

    .otp-digit {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .verification-hero-content h1 {
        font-size: 1.8rem;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-digit {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Forgot Password Hero */
.forgot-password-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.forgot-password-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.forgot-password-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Forgot Password Section */
.forgot-password-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
    align-items: start;
}

.forgot-password-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.forgot-password-header {
    text-align: center;
    margin-bottom: 40px;
}

.forgot-password-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.forgot-password-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.forgot-password-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.forgot-password-form {
    margin-bottom: 25px;
}

.forgot-password-btn {
    width: 100%;
    margin-bottom: 25px;
}

.forgot-password-footer {
    text-align: center;
}

.forgot-password-footer p {
    margin-bottom: 0;
}

/* Password Reset Info */
.password-reset-info {
    padding: 20px;
}

.password-reset-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.process-steps {
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-tips {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.security-tips h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

.security-tips ul {
    list-style: none;
    margin-bottom: 0;
}

.security-tips li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.security-tips li:last-child {
    margin-bottom: 0;
}

.security-tips i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .forgot-password-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .password-reset-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .forgot-password-hero-content h1 {
        font-size: 2rem;
    }

    .forgot-password-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .forgot-password-hero-content h1 {
        font-size: 1.8rem;
    }
}

/* Change Password Hero */
.change-password-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.change-password-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.change-password-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Change Password Section */
.change-password-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
    align-items: start;
}

.change-password-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.change-password-header {
    text-align: center;
    margin-bottom: 40px;
}

.change-password-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.change-password-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.change-password-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.change-password-form {
    margin-bottom: 25px;
}

.password-input {
    position: relative;
}

.toggle-password,
.toggle-new-password,
.toggle-confirm-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
}

.password-strength {
    margin-top: 10px;
}

.strength-meter {
    height: 5px;
    background: var(--gray-light);
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-level {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: var(--transition);
    background: #e74c3c;
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.password-match {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.password-match i {
    font-size: 0.9rem;
}

.change-password-btn {
    width: 100%;
    margin-bottom: 25px;
}

.change-password-footer {
    text-align: center;
}

.change-password-footer p {
    margin-bottom: 0;
}

/* Password Security Info */
.password-security-info {
    padding: 20px;
}

.password-security-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.security-tips {
    margin-bottom: 40px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.tip-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tip-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-features {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.security-features h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

.security-features ul {
    list-style: none;
    margin-bottom: 0;
}

.security-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.security-features li:last-child {
    margin-bottom: 0;
}

.security-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* User Menu */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.user-avatar:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover,
.user-dropdown a.active {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.user-dropdown i {
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .change-password-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .password-security-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .change-password-hero-content h1 {
        font-size: 2rem;
    }

    .change-password-card {
        padding: 30px 20px;
    }

    .header-actions .btn-secondary {
        display: none;
    }
}

@media (max-width: 576px) {
    .change-password-hero-content h1 {
        font-size: 1.8rem;
    }

    .tip-item {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Additional styles specific to the 404 page */
.error-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.error-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    color: var(--white);
}

.error-content h1 {
    font-size: 8rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-illustration {
    margin: 40px 0;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

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

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.error-features {
    padding: 80px 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.search-section {
    padding: 80px 0;
    background-color: var(--white);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.search-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.popular-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.popular-link {
    background: var(--light);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 6rem;
    }

    .error-content h2 {
        font-size: 2rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .error-content h1 {
        font-size: 4rem;
    }

    .error-content h2 {
        font-size: 1.5rem;
    }

    .error-content p {
        font-size: 1.1rem;
    }
}

/* Additional styles specific to the coming soon page */
.coming-soon-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.coming-soon-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    padding: 40px 20px;
    margin: auto;
}

.coming-soon-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coming-soon-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-container {
    margin: 50px 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.newsletter-section {
    padding: 80px 0;
    background-color: var(--light);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin: 30px 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.newsletter-btn {
    padding: 18px 35px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.proof-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

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

.proof-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.proof-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}


.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Success message */
/* .success-message {
    display: none;
    background: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .coming-soon-content h1 {
        font-size: 3rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 10px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
        border-radius: 0;
    }

    .newsletter-input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .newsletter-btn {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .social-proof {
        flex-direction: column;
        align-items: center;
    }

    .proof-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .coming-soon-content p {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 5px;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

.text-end {
    float: right;
}

/* ===== PLAN CARD ALIGNMENT FIXES ===== */
.plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-features {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-cta-wrapper {
    margin-top: auto;
    padding-top: 20px;
}

.plan-cta-wrapper .btn {
    width: 100%;
    margin-bottom: 0;
}

/* Ensure all plan cards have the same height */
/* .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
} */

/* Fix for plan header to maintain consistent height */
.plan-header {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.plan-header h3 {
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 5px;
}

.billing-description {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Billing Toggle Styles (updated for better alignment) */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(46, 125, 50, 0.05);
    border-radius: var(--border-radius);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* billing slider visuals */
.billing-switch input:checked+.billing-slider {
    background: var(--accent, #28a745);
}

.billing-slider {
    display: block;
    border-radius: 26px;
    position: relative;
}

.billing-slider:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform .25s;
}

#billing-toggle:checked+.billing-slider:before {
    transform: translateX(24px);
}

.billing-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.billing-label:last-child {
    color: var(--primary);
}

.billing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-light);
    transition: var(--transition);
    border-radius: 34px;
}

.billing-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked+.billing-slider {
    background-color: var(--primary);
}

input:checked+.billing-slider:before {
    transform: translateX(30px);
}

.billing-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Dark mode support */
.dark-mode .billing-toggle-container {
    background: rgba(255, 255, 255, 0.05);
}

.dark-mode .billing-slider {
    background-color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plan-header {
        min-height: 160px;
        padding: 25px 20px;
    }

    .plan-features {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .plan-header {
        min-height: 150px;
        padding: 20px 15px;
    }

    .plan-features {
        padding: 20px 15px;
    }

    .billing-toggle-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
}

/* ===== FOUNDER PAGE STYLES ===== */

/* Founder Container */
.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Founder Profile Card */
.founder-profile-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.founder-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.founder-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-basic-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.founder-title {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.founder-credentials {
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.credential-item i {
    width: 20px;
    color: var(--primary);
    font-size: 1.1rem;
}

.founder-social-links {
    display: flex;
    gap: 15px;
}

.founder-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.founder-social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.3;
}

.mission-statement blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Story Sections */
.story-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gray-light);
}

.story-section:last-child {
    border-bottom: none;
}

.story-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.story-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 30px;
    background: var(--primary);
    border-radius: 4px;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

/* Education Timeline */
.education-timeline {
    margin: 30px 0;
    padding-left: 30px;
    border-left: 3px solid var(--primary);
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    margin: 60px 0;
}

.achievements-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #ffb74d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 20px;
}

.achievement-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.achievement-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
    margin: 60px 0;
}

.philosophy-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.philosophy-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.philosophy-item p {
    /* color: var(--text-light); */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .founder-profile-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .founder-profile-card {
        padding: 30px 20px;
    }

    .founder-basic-info h2 {
        font-size: 2rem;
    }

    .mission-statement {
        padding: 30px 20px;
    }

    .mission-statement blockquote {
        font-size: 1.2rem;
    }

    .achievements-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .education-timeline {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -26px;
    }
}

@media (max-width: 576px) {
    .founder-image img {
        height: 300px;
    }

    .founder-badge {
        top: 15px;
        left: 15px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .story-section h3 {
        font-size: 1.5rem;
    }

    .philosophy-item {
        padding: 30px 20px;
    }
}

/* ===== MOBILE MENU & DROPDOWN STYLES ===== */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px;
    z-index: 1110;
    /* above nav */
    color: var(--text);
    background: transparent;
    border: none;
}

.mobile-menu-btn:focus {
    outline: 2px solid rgba(0, 0, 0, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    margin-left: 8px;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down,
.dropdown.active .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Desktop Dropdown Styles */
nav ul {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    display: block;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.22s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text);
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* Navigation container */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 18px rgba(0, 0, 0, 0.12);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    /* Navigation list */
    nav ul {
        display: flex;
        flex-direction: column;
        padding: 80px 20px 20px;
        margin: 0;
        height: auto;
        min-height: 100%;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        color: var(--dark);
    }

    /* Dropdown styles */
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: auto;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 0 12px 20px;
        border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 0, 0, 0.05);
        border-left-color: var(--primary);
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* Desktop tweaks */
@media (min-width: 769px) {
    nav {
        position: static;
        box-shadow: none;
    }

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


/* Enquiry page specific styles */
.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.enquiry-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-card h3 i {
    color: var(--primary);
}

.contact-methods {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-method input {
    margin: 0;
}

.response-times {
    margin-top: 20px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.time-label {
    font-weight: 600;
}

.time-value {
    color: var(--primary);
    font-weight: 600;
}

.business-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.business-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-hours h4 i {
    color: var(--primary);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.faq-links {
    list-style: none;
    margin-top: 15px;
}

.faq-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.faq-links li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input {
    width: 18px;
    height: 18px;
}

.btn-block {
    width: 100%;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .enquiry-container {
        grid-template-columns: 1fr;
    }

    .enquiry-info {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .enquiry-form-container {
        padding: 30px 20px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 2.3rem;
    }

    .info-card {
        padding: 25px 20px;
    }
}


/* Why AfroFusionPlate page specific styles */
.feature-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commitment-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    border-bottom: 2px solid var(--gray-light);
    background: var(--light);
}

.comparison-header>div {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.comparison-row:hover {
    background-color: rgba(46, 125, 50, 0.05);
}

.comparison-row>div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-title {
    justify-content: flex-start !important;
    font-weight: 500;
}

.comparison-row i {
    color: var(--primary);
    font-size: 1.1rem;
}

.comparison-row .fa-times {
    color: #e74c3c;
}

.comparison-row .fa-question {
    color: var(--text-light);
}

/* Animation classes */
.animated {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 1100px) {

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header>div:not(:first-child),
    .comparison-row>div:not(:first-child) {
        display: none;
    }

    .row-title::before {
        content: attr(data-title) ": ";
        font-weight: 600;
    }
}

@media (max-width: 768px) {

    .philosophy-grid,
    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 2.3rem;
    }

    .comparison-header>div,
    .comparison-row>div {
        padding: 15px;
    }
}

/* About Page Specific Styles */
.mission-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    padding: 4rem 0;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section .lead {
    font-size: 1.25rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.country-flag {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Flag colors (simplified) */
.country-flag.nigeria {
    background: linear-gradient(90deg, #008751 33%, #fff 33%, #fff 66%, #008751 66%);
}

.country-flag.ghana {
    background: linear-gradient(180deg, #CE1126 33%, #FCD116 33%, #FCD116 66%, #006B3F 66%);
}

.country-flag.liberia {
    background: linear-gradient(180deg, #BF0A30 33%, #fff 33%, #fff 66%, #002868 66%);
}

.country-flag.sierra-leone {
    background: linear-gradient(180deg, #1EB53A 33%, #fff 33%, #fff 66%, #0072C6 66%);
}

.country-flag.south-sudan {
    background: linear-gradient(180deg, #000 33%, #fff 33%, #fff 66%, #DA121A 66%);
}

.country-flag.congo {
    background: linear-gradient(135deg, #009543 0%, #FBDE4A 50%, #DC241F 100%);
}

.country-flag.cameroon {
    background: linear-gradient(90deg, #007A5E 33%, #CE1126 33%, #CE1126 66%, #FCD116 66%);
}

.country-flag.senegal {
    background: linear-gradient(90deg, #0C1C8C 33%, #FDE82A 33%, #FDE82A 66%, #E31B23 66%);
}

.bridge-section {
    background: #f8f5f0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.bridge-icon {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.bridge-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.bridge-point {
    text-align: center;
}

.bridge-point i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

/* Sidebar Styles */
.values-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.value-icon {
    background: #f8f5f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #e67e22;
}

.story-highlight {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlight-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-content {
    padding: 1.5rem;
    background: white;
}

/* Philosophy Section */
.philosophy-section.dark-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.philosophy-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-icon-large {
    font-size: 4rem;
    color: #e67e22;
    margin-bottom: 2rem;
}

.philosophy-statement {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ecf0f1;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.philosophy-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e67e22;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Welcome Section */
.welcome-section {
    background: #f8f5f0;
}

.welcome-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.welcome-icon {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.welcome-message {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .bridge-points {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .welcome-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Core Pillars Section */
.pillars-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    padding: 5rem 0;
}

.pillars-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pillars-section .section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pillars-section .section-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #e67e22;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8e5d6 0%, #f5d0b1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #e67e22;
}

.pillar-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(230, 126, 34, 0.1);
    line-height: 1;
}

.pillar-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pillar-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for pillars */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .pillar-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .pillars-section {
        padding: 3rem 0;
    }

    .pillar-card {
        padding: 1.5rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .pillar-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}

/* Additional adjustments for mission section */
.mission-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
}

.mission-statement blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mission-statement .quote-icon {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .mission-statement blockquote {
        font-size: 1.25rem;
    }

    .mission-statement .quote-icon {
        font-size: 2.5rem;
    }
}

/* Why Choose Us Page Styles */
.page-hero[style*="background"] {
    background-size: cover !important;
    background-position: center !important;
}

/* Brand Origin Story */
.brand-origin-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f5f0 100%);
}

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

.origin-quote {
    text-align: center;
    margin-bottom: 3rem;
}

.origin-quote i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.origin-quote blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.origin-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.origin-highlight {
    background: rgba(230, 126, 34, 0.1);
    border-left: 4px solid #e67e22;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    background: #e67e22;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.legacy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.legacy-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legacy-item i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.legacy-item h5 {
    color: #2c3e50;
    font-size: 1rem;
    margin: 0;
}

.closing-statement {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: #2c3e50 !important;
    text-align: center;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    padding: 2rem 0;
    margin-top: 2rem !important;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.why-choose-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e67e22;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8e5d6 0%, #f5d0b1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.why-choose-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-card>p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.why-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
}

.why-details li i {
    color: #e67e22;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Heritage Section */
.heritage-section {
    padding: 5rem 0;
    background: white;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.heritage-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heritage-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.heritage-text>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.heritage-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.country-badge {
    background: #f8f5f0;
    color: #e67e22;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(230, 126, 34, 0.2);
}

.heritage-note {
    font-style: italic;
    color: #7f8c8d !important;
    border-left: 3px solid #e67e22;
    padding-left: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.value-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.value-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Experience Section */
.experience-section {
    padding: 5rem 0;
    background: #f8f5f0;
}

.experience-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e67e22;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e67e22;
    border: 3px solid #e67e22;
    z-index: 1;
    flex-shrink: 0;
    margin-right: 2rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .legacy-points {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .origin-quote blockquote {
        font-size: 1.25rem;
    }

    .experience-timeline::before {
        left: 30px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .origin-highlight {
        flex-direction: column;
        text-align: center;
    }

    .heritage-text h2 {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* Base Styles */
.reservation-page {
    background: linear-gradient(135deg, #F8F5F0 0%, #FFF 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--secondary);
}

/* Modern Hero */
.reservation-hero-modern {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    overflow: hidden;
}

.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 126, 34, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
}

.floating-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.restaurant-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
}

.popular-tables {
    display: grid;
    gap: 16px;
}

.table-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.table-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

.table-item.trending {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border-color: var(--primary);
}

.table-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.table-item span {
    flex: 1;
    font-weight: 600;
    color: var(--secondary);
}

.table-item small {
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.1;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Minimal Progress Bar */
.progress-minimal {
    padding: 30px 0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.progress-track {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.track-line {
    height: 3px;
    background: var(--gray-light);
    border-radius: 2px;
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.track-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.dot-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.dot-inner i {
    display: none;
}

.step-dot.active .dot-inner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.step-dot.active .dot-inner span {
    display: none;
}

.step-dot.active .dot-inner i {
    display: block;
}

.step-dot.completed .dot-inner {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.step-dot.active .step-label {
    color: var(--primary);
}

/* Modern Wizard */
.wizard-modern {
    padding: 60px 0;
    min-height: 60vh;
}

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

.step-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-light);
}

.header-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
}

.header-decor {
    position: relative;
    width: 100px;
    height: 40px;
}

.decor-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.decor-circle {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -4px;
    animation: pulse 2s ease-in-out infinite;
}

/* Step 1: Modern Calendar */
.calendar-modern {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.calendar-sidebar {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 40px 30px;
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.time-slots-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.time-slot-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.time-slot-mini:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.time-slot-mini.popular {
    border-color: var(--primary);
    background: rgba(230, 126, 34, 0.15);
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.time-slot-mini .time {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 60px;
}

.time-slot-mini .label {
    flex: 1;
    font-size: 0.9rem;
    opacity: 0.9;
}

.guests-modern {
    margin-bottom: 32px;
}

.guests-modern h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.guest-counter-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.counter-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.counter-display {
    text-align: center;
}

.counter-display span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.counter-display small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.counter-note {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
}

.quick-tips {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary);
}

.quick-tips h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.calendar-main {
    padding: 40px;
}

.calendar-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.current-month {
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}

.ozibus-modern {
    margin-bottom: 40px;
}

.calendar-wrapper {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ozibus-calendar {
    width: 100% !important;
    min-height: 400px !important;
    border: none !important;
}

.selected-slot-display {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFF 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 2px dashed var(--primary);
    transition: var(--transition);
}

.selection-placeholder {
    text-align: center;
    color: var(--gray);
}

.selection-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.5;
}

.selection-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.selection-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.selection-content {
    flex: 1;
}

.selection-content h4 {
    margin-bottom: 12px;
    color: var(--secondary);
}

.selection-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.selection-info span {
    padding: 8px 16px;
    background: white;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.selection-info .date {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.selection-info .time {
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.selection-info .guests {
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-confirm {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-confirm.active {
    background: linear-gradient(135deg, var(--success), #2ECC71);
}

/* Step 2: Modern Table Selection */
.reservation-details-card {
    display: flex;
    gap: 24px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
}

.detail-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.detail-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item small {
    font-size: 0.8rem;
    color: var(--gray);
}

.detail-item strong {
    font-size: 1.1rem;
    color: var(--secondary);
}

.table-selection-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.table-map-container {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-controls-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.view-options {
    display: flex;
    gap: 12px;
}

.view-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.zoom-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.zoom-level {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
}

.restaurant-map-modern {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E2D6 100%);
    overflow: hidden;
}

.map-area {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.table-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
}

.table-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 10;
}

.table-marker.selected {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 20;
}

.marker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.table-marker.available .marker-icon {
    background: var(--success);
    color: white;
}

.table-marker.selected .marker-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    animation: pulse 2s infinite;
}

.table-marker.unavailable .marker-icon {
    background: var(--gray-light);
    color: var(--gray);
    opacity: 0.5;
}

.marker-label {
    background: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.marker-capacity {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.legend-modern {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.available {
    background: var(--success);
}

.legend-color.selected {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.legend-color.reserved {
    background: var(--gray);
}

.legend-color.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.room-features {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.feature-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--secondary);
    font-size: 0.9rem;
}

.feature-marker i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.feature-marker.entrance i {
    color: var(--success);
}

.feature-marker.kitchen i {
    color: var(--primary);
}

.feature-marker.bar i {
    color: var(--accent);
}

/* Table Details Sidebar */
.table-details-sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selected-table-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.table-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.table-card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
}

.table-badge {
    padding: 6px 16px;
    background: var(--gray-light);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-badge.window {
    background: linear-gradient(135deg, #E3F2FD, #BBDFFB);
    color: #1976D2;
}

.table-badge.booth {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    color: #7B1FA2;
}

.table-badge.private {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #388E3C;
}

.table-preview-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.table-visual {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-shape-modern {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.table-shape-modern.window {
    background: linear-gradient(135deg, #64B5F6, #1976D2);
}

.table-shape-modern.booth {
    width: 140px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #BA68C8, #7B1FA2);
}

.table-shape-modern.private {
    background: linear-gradient(135deg, #81C784, #388E3C);
}

.table-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

.table-info-modern {
    text-align: center;
    width: 100%;
}

.info-placeholder {
    text-align: center;
    color: var(--gray);
    padding: 40px 0;
}

.info-placeholder i {
    font-size: 3rem;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.table-info-modern h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.table-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
    color: var(--secondary);
}

.stat i {
    color: var(--primary);
}

.table-features h5 {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    background: var(--gray-light);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-select-table {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.btn-select-table:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-select-table:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.table-filters-modern {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.table-filters-modern h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 10px 16px;
    background: var(--gray-light);
    border: 2px solid var(--gray-light);
    color: var(--secondary);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-chip:hover {
    border-color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.capacity-slider {
    padding: 20px 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary);
}

#capacity-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--success), var(--primary), var(--warning));
    border-radius: 4px;
    outline: none;
}

#capacity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.sort-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--secondary);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.step-actions-modern {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-light);
}

.btn-back,
.btn-next {
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-back {
    background: transparent;
    border: 2px solid var(--gray-light);
    color: var(--secondary);
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-next {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border: none;
    color: white;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Step 3: Modern Confirmation */
.confirmation-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.confirmation-summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summary-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.summary-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
}

.reservation-id {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.summary-details-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.detail-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.detail-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-card.location .detail-icon {
    background: var(--primary);
    color: white;
}

.detail-content h4 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.detail-content p {
    color: var(--secondary);
    margin-bottom: 4px;
}

.time-display,
.capacity-display {
    font-weight: 600;
    color: var(--primary);
}

.location-detail {
    color: var(--gray);
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover {
    text-decoration: underline;
}

.table-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

.deposit-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary);
}

.deposit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.deposit-content h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.deposit-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(230, 126, 34, 0.2);
    font-weight: 600;
}

.deposit-amount strong {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-support {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.contact-support h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-option:hover {
    background: var(--primary);
    color: white;
}

/* Modern Form */
.customer-form-modern {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.form-card {
    padding: 40px;
}

.form-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.form-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
}

.form-progress {
    display: flex;
    gap: 8px;
}

.progress-step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* background: var(--gray-light); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.progress-step.active {
    /* background: var(--primary); */
    color: white;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.1rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.form-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group-modern input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--secondary);
    background: white;
    transition: var(--transition);
}

.form-group-modern input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

.checkbox-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.checkbox-modern:hover {
    background: var(--gray-light);
}

.checkbox-modern input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-modern input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-modern input:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-modern.large .checkmark {
    width: 24px;
    height: 24px;
}

.terms-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.terms-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}

.btn-submit-reservation {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--success), #27AE60);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.btn-submit-reservation:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.secure-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Restaurant Highlights */
.restaurant-highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

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

.highlights-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.highlights-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.highlight-icon.ambient {
    background: linear-gradient(135deg, #FF9F43, #E67E22);
}

.highlight-icon.culinary {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

.highlight-icon.service {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .hero-content,
    .calendar-modern,
    .table-selection-modern,
    .confirmation-modern {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .floating-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .step-header-modern {
        flex-direction: column;
        gap: 20px;
    }

    .reservation-details-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-grid-modern,
    .checkbox-grid-modern {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .step-actions-modern {
        flex-direction: column;
        gap: 20px;
    }

    .btn-back,
    .btn-next {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .calendar-sidebar {
        padding: 30px 20px;
    }

    .selected-slot-display {
        padding: 20px;
    }

    .selection-details {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .table-filters-modern,
    .form-card,
    .summary-card {
        padding: 20px;
    }
}

.text-white {
    color: var(--white) !important;
}

/* ===== CHEF VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px 30px;
    background: var(--white);
}

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

.video-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 100%;
        border-radius: 0;
        height: 100%;
    }

    .video-container {
        height: 60vh;
        padding-bottom: 0;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

/* Video loader */
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.video-loader .loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-light);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== SEAT RESERVATION PAGE STYLES ===== */

/* Reservation Hero */
.reservation-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.reservation-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reservation-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Reservation Steps */
.reservation-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 60px;
    position: relative;
}

.reservation-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gray-light);
    z-index: 1;
}

.reservation-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: var(--transition);
}

.reservation-step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.reservation-step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.reservation-step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Reservation Container */
.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0 80px;
}

/* Search Form */
.search-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.search-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.search-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.route-selection {
    margin-bottom: 30px;
}

.route-fields {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 15px;
    align-items: center;
}

.swap-btn {
    background: var(--light);
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    margin-top: 10px;
}

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

.passenger-selector {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.passenger-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.passenger-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.passenger-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.passenger-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.passenger-count {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

/* Ozibus Integration */
.ozibus-integration {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.ozibus-integration h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.ozibus-info {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ozibus-info i {
    color: var(--primary);
    font-size: 1.5rem;
}

.ozibus-frame {
    width: 100%;
    height: 500px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.ozibus-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%, transparent 50%, #f8f9fa 50%, #f8f9fa 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.ozibus-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gray);
}

/* Seat Selection */
.seat-selection {
    margin-bottom: 30px;
}

.bus-layout {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
}

.bus-driver {
    text-align: center;
    margin-bottom: 30px;
}

.driver-seat {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.seat {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.seat.available {
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--text);
}

.seat.available:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--white);
}

.seat.selected {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.seat.unavailable {
    background: var(--gray-light);
    border: 2px solid var(--gray);
    color: var(--text-light);
    cursor: not-allowed;
}

.seat.aisle {
    visibility: hidden;
    pointer-events: none;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: var(--white);
    border: 1px solid var(--gray-light);
}

.legend-color.selected {
    background: var(--primary);
    border: 1px solid var(--primary);
}

.legend-color.unavailable {
    background: var(--gray-light);
    border: 1px solid var(--gray);
}

/* Reservation Summary */
.reservation-summary {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
}

.reservation-summary h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.summary-details {
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text);
}

.detail-value {
    color: var(--text-light);
}

.seat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.seat-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-breakdown {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--gray-light);
    padding-top: 10px;
    margin-top: 10px;
}

/* Integration Notice */
.integration-notice {
    background: linear-gradient(135deg, #a0424c 0%, #ffb74d 100%);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.integration-notice h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white);
}

.integration-notice p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reservation-hero h1 {
        font-size: 2rem;
    }

    .reservation-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .reservation-step {
        flex: 1;
        min-width: 100px;
    }

    .route-fields {
        grid-template-columns: 1fr;
    }

    .swap-btn {
        margin: 10px auto;
        transform: rotate(90deg);
    }

    .search-form-container,
    .ozibus-integration {
        padding: 30px 20px;
    }

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

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

@media (max-width: 576px) {
    .reservation-hero h1 {
        font-size: 1.8rem;
    }

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

    .passenger-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .passenger-counter {
        align-self: flex-end;
    }
}

/* Additional Form Styles */
.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.date-input {
    position: relative;
}

.date-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

/* Loading State for Ozibus Integration */
.ozibus-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ozibus-loading .loader {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

/* Success Modal */
.booking-success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    justify-content: center;
    align-items: center;
}

.booking-success.active {
    display: flex;
}

.success-modal {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: zoomIn 0.5s ease;
}

.success-modal h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.booking-details {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.booking-details h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.booking-id {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.download-ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.download-ticket:hover {
    text-decoration: underline;
}


/* ===== ACADEMY APPLICATION PAGE ===== */

.academy-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.academy-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.academy-hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 20px;
    display: block;
}

.academy-hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Academy Application Form */
.academy-application-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.academy-application-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.academy-application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}



/* Form Sections */
.form-sections {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.form-sections:last-child {
    border-bottom: none;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(46, 125, 50, 0.1);
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.section-title {
    margin-bottom: 0;
}

.section-title h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.section-title p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Form Group Enhancements */


.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
    background: var(--white);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.radio-option,
.checkbox-option {
    position: relative;
}

.radio-option input,
.checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: var(--light);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text);
    user-select: none;
}

.radio-label::before,
.checkbox-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.checkbox-label::before {
    border-radius: 4px;
}

.radio-option input:checked + .radio-label,
.checkbox-option input:checked + .checkbox-label {
    background: rgba(46, 125, 50, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.radio-option input:checked + .radio-label::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: inset 0 0 0 4px var(--white);
}

.checkbox-option input:checked + .checkbox-label::before {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Other Specification Field */
.other-specification {
    margin-top: 15px;
    padding-left: 30px;
    display: none;
}

.radio-option input:checked ~ .other-specification,
.checkbox-option input:checked ~ .other-specification {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Date and Time Inputs */
.date-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.date-input,
.time-input {
    position: relative;
}

.date-input i,
.time-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

/* Experience Level */
.experience-level {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.experience-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 20px;
    background: var(--light);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.experience-btn input {
    display: none;
}

.experience-btn.active {
    background: rgba(46, 125, 50, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.experience-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Source Selection */
.source-select {
    position: relative;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 56px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    background: var(--white);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    padding-left: 20px;
    color: var(--text);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
    right: 10px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
}

.privacy-note {
    flex: 1;
    color: var(--text-light);
    font-size: 0.9rem;
}

.privacy-note a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 50px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: var(--border-radius);
    border: 2px solid var(--primary);
    margin-top: 30px;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Dark Mode Support */
.dark-mode .academy-application-form {
    background: var(--white);
}

.dark-mode .form-control {
    background: var(--white);
    color: var(--dark);
    border-color: var(--gray-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .academy-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .academy-hero-content .subtitle {
        font-size: 1.3rem;
    }
    
    .academy-application-form {
        padding: 30px 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-number {
        margin-right: 0;
    }
    
    .radio-group,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .date-time-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-level {
        flex-direction: column;
    }
    
    .experience-btn {
        min-width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .privacy-note {
        order: 2;
    }
    
    .btn-submit {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .academy-hero {
        padding: 80px 0;
    }
    
    .academy-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .academy-hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h3 {
        font-size: 1.4rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .radio-label,
    .checkbox-label {
        padding: 15px;
    }
}

/* Form Validation Styles */
.form-control.error {
    border-color: var(--danger);
    background: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-control.error + .error-message {
    display: block;
}

/* Loading State for Submit Button */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

/* Premium Hero */
.premium-catering-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(46, 125, 50, 0.92) 0%,
            rgba(27, 94, 32, 0.95) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.premium-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.premium-hero-content .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Form Container */
.premium-form-container {
    max-width: 1000px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.premium-form-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234caf50' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.form-header-content {
    position: relative;
    z-index: 2;
}

.form-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Progress Indicator */
.premium-progress {
    padding: 30px 40px;
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-light);
    z-index: 1;
}

.progress-connector {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 2;
    transition: width 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 3px;
}

.progress-step {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-light);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step-indicator::after {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.progress-step.active .step-indicator {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.progress-step.active .step-indicator::after {
    /* border-color: var(--primary-light); */
    animation: pulseRing 2s infinite;
}

.progress-step.completed .step-indicator {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.progress-step.completed .step-indicator::before {
    content: '✓';
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--primary);
}

.progress-step.completed .step-label {
    color: var(--dark);
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

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

/* Premium Form Content */
.premium-form-content {
    padding: 50px;
}

@media (max-width: 768px) {
    .premium-form-content {
        padding: 30px;
    }
}

/* Premium Form Sections */
.premium-form-section {
    display: none;
    animation: fadeSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-form-section.active {
    display: block;
}

.section-header-1 {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Form Grid */
.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .premium-form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.premium-form-group {
    margin-bottom: 25px;
}

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

.premium-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    position: relative;
}

.required::after {
    content: '*';
    color: var(--accent);
    margin-left: 4px;
}

.premium-input-wrapper {
    position: relative;
}

.premium-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8fdf9;
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.premium-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.premium-input::placeholder {
    color: #a0b0a0;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
}

textarea.premium-input {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Premium Checkbox and Radio Groups */
.premium-option-group {
    margin: 25px 0;
}

.option-group-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-group-title i {
    color: var(--primary);
}

.checkbox-grid,
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.premium-checkbox,
.premium-radio {
    position: relative;
}

.premium-checkbox input,
.premium-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: #f8fdf9;
    border: 2px solid #e8f5e9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    color: var(--text);
}

.checkbox-label:hover,
.radio-label:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(46, 125, 50, 0.1);
}

.premium-checkbox input:checked+.checkbox-label,
.premium-radio input:checked+.radio-label {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(76, 175, 80, 0.04));
    border-color: var(--primary);
    color: var(--primary-dark);
}

.checkbox-label::before,
.radio-label::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid #c8e6c9;
    margin-right: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label::before {
    border-radius: 50%;
}

.premium-checkbox input:checked+.checkbox-label::before {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10.28 2.28L4 8.56 1.72 6.28a1 1 0 00-1.41 1.41l3 3a1 1 0 001.41 0l7-7a1 1 0 00-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.premium-radio input:checked+.radio-label::before {
    border-color: var(--primary);
    background: radial-gradient(circle, var(--primary) 40%, transparent 45%);
}

/* Premium Select Styling */
.premium-select-wrapper {
    position: relative;
}

.premium-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    pointer-events: none;
}

select.premium-input {
    appearance: none;
    padding-right: 50px;
    cursor: pointer;
}

/* Premium Form Navigation */
.premium-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px;
    margin-top: 50px;
    border-top: 2px solid #f0f7f0;
}

.nav-btns {
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-prevs {
    background: transparent;
    color: var(--text-light);
    border: 2px solid #e8f5e9;
}

.btn-prevs:hover {
    background: #f8fdf9;
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateX(-5px);
}

.btn-nexts {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.btn-nexts:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #ff5722, #ff8a65);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e64a19, #ff5722);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 87, 34, 0.4);
}

/* Premium Form Help Text */
.form-help {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
    padding: 12px 15px;
    background: #f9fbf9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
}

.form-help i {
    color: var(--primary);
}

/* Premium Success Modal */
.premium-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.premium-success-modal.active {
    display: flex;
}

.success-content {
    background: linear-gradient(135deg, #ffffff, #f8fdf9);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
    animation: iconBounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.success-content p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Dark Mode Support */
.dark-mode .premium-form-card {
    background: #1a1f2e;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .premium-input {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.dark-mode .premium-input:focus {
    background: #2a3142;
    border-color: var(--primary);
}

.dark-mode .checkbox-label,
.dark-mode .radio-label {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.dark-mode .form-help {
    background: #2a3142;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-catering-hero {
        height: 55vh;
        min-height: 400px;
    }

    .premium-hero-content {
        padding: 30px 20px;
    }

    .premium-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .premium-form-container {
        margin-top: -40px;
    }

    .form-header {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .premium-progress {
        padding: 20px;
    }

    .progress-step {
        min-width: 60px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .premium-form-content {
        padding: 25px;
    }

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

    .checkbox-grid,
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .premium-form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }

    .success-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .premium-hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        min-width: 80px;
        padding: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .form-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Additional Styles for Number Input */
input[type="number"].premium-input {
    appearance: textfield;
}

input[type="number"].premium-input::-webkit-inner-spin-button,
input[type="number"].premium-input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f8e9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

.dark-mode ::-webkit-scrollbar-track {
    background: #2a3142;
}

.dark-mode ::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.form-header-paragraph {
    color: var(--light) !important;
}

.resend-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: none;
}
