:root {
    --royal-green: #1B4D3E;
    --royal-gold: #cfa957;
    --royal-black: #000000;
    --royal-white: #ffffff;
    --royal-bg: #fdfdfd;
    --light-border: #eeeeee;
    --text-dark: #2c2c2c;
    --text-muted: #666666;
}

/* Minimal Royal Event Booking Page Redesign */

.booking-redesign-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0;
}

/* 1. Main Wrapper */
.booking-royal-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

/* 2. Sidebar Redesign (Minimal) */
.booking-royal-sidebar {
    background: var(--royal-green);
    padding: 40px 30px;
    color: #ffffff;
    height: 100%;
    position: relative;
}

.booking-royal-sidebar .sidebar-brand {
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.booking-royal-sidebar .sidebar-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-bottom: 0;
}

/* Minimal Steps Indicator */
.royal-steps-nav {
    margin-top: 30px;
}

.royal-step-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.royal-step-item.active {
    opacity: 1;
}

.royal-step-item.completed {
    opacity: 0.8;
}

.step-number-pill {
    width: 32px;
    height: 32px;
    border: 1px solid var(--royal-gold);
    border-radius: 4px;
    /* Squared off for minimal look */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.royal-step-item.active .step-number-pill {
    background: var(--royal-gold);
    color: #fff;
}

.royal-step-item.completed .step-number-pill {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.step-label h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    color: var(--royal-gold);
    font-weight: 700;
}

.step-label p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* 3. Form Container */
.booking-royal-form-area {
    padding: 50px;
}

.booking-royal-header {
    margin-bottom: 30px;
}

.booking-royal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--royal-green);
    margin-bottom: 5px;
    font-weight: 700;
}

.booking-royal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 4. Form Controls (Neat) */
.royal-form-group {
    margin-bottom: 20px;
}

.royal-form-label {
    font-weight: 700;
    color: #374151; /* Darker gray for better contrast */
    margin-bottom: 10px;
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.royal-form-control {
    height: 54px;
    border: 1px solid #d1d5db; /* Lighter border as seen in design */
    border-radius: 6px;
    padding: 12px 18px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    font-size: 1rem;
    color: #1f2937;
}

.royal-form-control:focus {
    border-color: var(--royal-green);
    background: #fff;
    box-shadow: none;
    outline: none;
}

/* Royal Selection Cards (Minimal) */
.royal-pref-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.royal-pref-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fbfbfb;
}

.royal-pref-card:hover {
    border-color: var(--royal-green);
}

.royal-pref-card.selected {
    border-color: var(--royal-green);
    background: var(--royal-green);
    color: #fff;
}

.royal-pref-card i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.royal-pref-label {
    font-weight: 600;
    font-size: 0.85rem;
}

/* 5. Buttons (Neat) */
.btn-royal-submit {
    background: var(--royal-green);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-royal-submit:hover {
    background: #143d31;
    transform: translateY(-1px);
}

.btn-royal-back {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.btn-royal-back:hover {
    border-color: #999;
    color: #333;
}

/* Progress Bar (Minimal) */
.royal-progress-bar {
    height: 2px;
    background: #eee;
    margin-bottom: 40px;
    position: relative;
}

.royal-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--royal-gold);
    transition: width 0.4s ease;
}

/* 6. Food Selection Step */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--royal-green);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    font-weight: 700;
}

.food-items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.food-item-pill {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    color: #444;
    display: flex;
    align-items: center;
    user-select: none;
}

.food-item-pill:hover {
    border-color: var(--royal-green);
    background: #f8f9fa;
}

.food-item-pill.selected {
    background: var(--royal-gold);
    border-color: var(--royal-gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(207, 169, 87, 0.3);
}

.food-item-pill i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.food-item-pill.selected i {
    opacity: 1;
}

/* Success Card Royal */
.royal-success-container {
    padding: 100px 0;
    text-align: center;
}

.royal-success-card {
    background: #fff;
    max-width: 650px;
    margin: 0 auto;
    padding: 80px 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-border);
}

.royal-success-icon {
    font-size: 5rem;
    color: var(--royal-gold);
    margin-bottom: 30px;
}

.royal-success-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--royal-green);
    margin-bottom: 20px;
}

.royal-success-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .booking-royal-sidebar {
        border-right: none;
        border-bottom: 2px solid var(--royal-gold);
        padding: 40px 20px;
    }

    .royal-steps-nav {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .royal-step-item {
        margin-bottom: 0;
    }

    .step-label {
        display: none;
    }

    .step-number-pill {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .booking-royal-form-area {
        padding: 40px 20px;
    }

    .royal-pref-options {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
   7. Premium Package Modal (Royal Design)
------------------------------------------------------------- */
.modal-premium .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.modal-premium .modal-header {
    background-color: var(--royal-green);
    color: #fff;
    border-bottom: 2px solid var(--royal-gold);
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-premium .modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.modal-premium-label {
    color: var(--royal-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.modal-premium-icon {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(207, 169, 87, 0.3);
}

.modal-premium-body {
    padding: 2.5rem;
    background-color: #fff;
    /* geometric pattern overlay could go here */
    background-image: 
        linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4d3e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.modal-premium-quote {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #4b5563;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    line-height: 1.6;
}

.modal-menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.modal-menu-category {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 250px;
    margin-bottom: 1rem;
}

.modal-menu-cat-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-menu-cat-icon {
    color: var(--royal-gold);
    font-size: 1.2rem;
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.modal-menu-cat-title {
    font-weight: 700;
    color: var(--royal-green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0;
}

.modal-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-menu-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.modal-menu-item::before {
    content: "•";
    color: #4CAF50; /* Green bullet */
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -2px;
}

.modal-premium-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-premium-header {
        padding: 1.5rem;
    }
    
    .modal-premium-title {
        font-size: 1.8rem;
    }
    
    .modal-premium-body {
        padding: 1.5rem;
    }
}