/* ============================================
   DELHI HOUSE CATERING PAGE - RESTORIA DESIGN
   Matching Home Page Style
   Brand Colors: Red #EA1C24, Gold #C9A35E, Blue #81B09C
   ============================================ */

:root {
    --brand-red: #EA1C24;
    --brand-gold: #C9A35E;
    --brand-blue: #81B09C;
    --dark-bg: #1A1A1A;
    --light-bg: #FAFAFA;
    --cream-bg: #FFF9F5;
    --text-dark: #222222;
    --text-light: #666666;
    --catering-bg: rgb(24, 49, 46);
}

body {
    background-color: var(--catering-bg) !important;
}

/* Hero Section */
.catering-hero-section {
    background: url('../images/banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    padding: 70px 0 40px;
    color: white;
    text-align: center;
}

.catering-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.catering-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.catering-hero-section .container {
    position: relative;
    z-index: 3;
}

.catering-hero-section .section-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.catering-hero-section .section-badge::before,
.catering-hero-section .section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--brand-gold);
}

.catering-hero-section .section-badge::before {
    left: 0;
}

.catering-hero-section .section-badge::after {
    right: 0;
}

.catering-hero-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.catering-hero-section .section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Catering Info Section */
.catering-info-section {
    padding: 80px 0;
    background: var(--catering-bg);
}

.catering-info-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.catering-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 163, 94, 0.4);
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(201, 163, 94, 0.3);
}

.card-icon-wrapper i {
    color: #18312e;
}

.catering-info-card .card-title {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
}

.catering-info-card .card-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Catering Form Section */
.catering-form-section {
    padding: 80px 0 100px;
    background: var(--catering-bg);
}

.catering-form-section .section-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.catering-form-section .section-badge::before,
.catering-form-section .section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--brand-gold);
}

.catering-form-section .section-badge::before {
    left: 0;
}

.catering-form-section .section-badge::after {
    right: 0;
}

.catering-form-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.catering-form-section .section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form Card */
.catering-form-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-body-content {
    padding: 3rem 2.5rem;
}

.form-section-title {
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    color: var(--brand-gold);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

/* Form Styles */
.catering-form .form-label {
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.catering-form .form-control {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.catering-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.catering-form .form-control:focus {
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.25);
    color: #ffffff;
}

.catering-form .form-control:focus-visible {
    outline: none;
}

/* Radio and Checkbox Styles */
.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.25);
}

.form-check-label {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
    font-size: 0.9rem;
    font-family: 'Jost', sans-serif;
}

/* Button Styles */
.btn-submit {
    background: var(--brand-gold);
    border: none;
    color: #18312e;
    padding: 14px 36px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #b89350;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 163, 94, 0.4);
    color: #18312e;
}

.btn-submit:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.5);
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-family: 'Jost', sans-serif;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #ffffff;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #ffffff;
    border-left: 4px solid #28a745;
}

/* Responsive Design */
@media (max-width: 992px) {
    .catering-hero-section {
        padding: 80px 0 60px;
    }

    .catering-hero-section .section-badge::before,
    .catering-hero-section .section-badge::after {
        width: 30px;
    }

    .catering-info-section {
        padding: 60px 0;
    }

    .catering-form-section {
        padding: 60px 0 80px;
    }

    .catering-form-section .section-badge::before,
    .catering-form-section .section-badge::after {
        width: 30px;
    }

    .catering-info-card {
        padding: 2.5rem 2rem;
    }

    .card-body-content {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .catering-hero-section {
        padding: 60px 0 50px;
    }

    .catering-hero-section .section-badge::before,
    .catering-hero-section .section-badge::after,
    .catering-form-section .section-badge::before,
    .catering-form-section .section-badge::after {
        display: none;
    }

    .catering-hero-section .section-badge,
    .catering-form-section .section-badge {
        padding: 0;
    }

    .catering-info-section {
        padding: 50px 0;
    }

    .catering-form-section {
        padding: 50px 0 60px;
    }

    .catering-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 20px;
    }

    .card-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .card-icon-wrapper i {
        font-size: 2.5rem !important;
    }

    .catering-info-card .card-title {
        font-size: 1.5rem;
    }

    .card-body-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .catering-hero-section {
        padding: 50px 0 40px;
    }

    .catering-info-section {
        padding: 40px 0;
    }

    .catering-form-section {
        padding: 40px 0 50px;
    }

    .catering-info-card {
        padding: 1.75rem 1.25rem;
    }

    .card-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .card-icon-wrapper i {
        font-size: 2rem !important;
    }

    .catering-info-card .card-title {
        font-size: 1.25rem;
    }

    .card-body-content {
        padding: 1.75rem 1.25rem;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Form Section Spacing */
.catering-form .mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Custom Radio Button Layout */
.form-check {
    margin-bottom: 8px;
}

/* ============================================
   OPTION CARDS (Radio Buttons)
   ============================================ */

.option-card {
    position: relative;
    height: 100%;
    min-height: 90px;
}

.option-card-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    min-height: 90px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.option-card-label i {
    font-size: 1.5rem;
    color: var(--brand-gold);
    transition: all 0.3s ease;
}

.option-card-label span {
    font-size: 0.95rem;
}

.option-card-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.2);
}

.option-card-input:checked+.option-card-label {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.3), rgba(201, 163, 94, 0.15));
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(201, 163, 94, 0.2);
}

.option-card-input:checked+.option-card-label i {
    color: var(--brand-gold);
    transform: scale(1.1);
}

.option-card-input:checked+.option-card-label span {
    color: #ffffff;
    font-weight: 600;
}

/* Small Option Cards (Numbers) */
.option-card-sm {
    min-height: 60px;
}

.option-card-sm .option-card-label {
    min-height: 60px;
    padding: 0.75rem;
}

.option-card-sm .option-number {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================
   CHECKBOX CARDS
   ============================================ */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.checkbox-card {
    position: relative;
}

.checkbox-card-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.checkbox-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: transparent;
    transition: all 0.3s ease;
}

.checkbox-card-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold);
    transform: translateX(3px);
}

.checkbox-card-input:checked+.checkbox-card-label {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.25), rgba(201, 163, 94, 0.1));
    border-color: var(--brand-gold);
    box-shadow: 0 2px 8px rgba(201, 163, 94, 0.2);
}

.checkbox-card-input:checked+.checkbox-card-label .checkbox-icon {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #18312e;
}

.checkbox-card-input:checked+.checkbox-card-label span {
    color: #ffffff;
    font-weight: 500;
}

/* ============================================
   INPUT WITH ICON
   ============================================ */

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-gold);
    font-size: 1rem;
    z-index: 2;
}

.form-control-with-icon {
    padding-left: 2.75rem !important;
}

/* Textarea Styles */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Number Input Styles */
input[type="number"].form-control {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"].form-control::-webkit-outer-spin-button,
input[type="number"].form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Date and Time Input Styles */
input[type="date"].form-control,
input[type="time"].form-control {
    position: relative;
    color-scheme: dark;
}

/* Focus States */
.catering-form .form-control:focus,
.catering-form .form-check-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.25);
}

/* Loading State */
.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   RESPONSIVE DESIGN FOR NEW CARDS
   ============================================ */

@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .option-card {
        min-height: 80px;
    }

    .option-card-label {
        min-height: 80px;
        padding: 0.75rem;
        gap: 0.35rem;
    }

    .option-card-label i {
        font-size: 1.25rem;
    }

    .option-card-label span {
        font-size: 0.85rem;
    }

    .option-card-sm {
        min-height: 55px;
    }

    .option-card-sm .option-card-label {
        min-height: 55px;
        padding: 0.5rem;
    }

    .option-card-sm .option-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .option-card {
        min-height: 70px;
    }

    .option-card-label {
        min-height: 70px;
        padding: 0.65rem;
    }

    .checkbox-card-label {
        padding: 0.75rem 0.875rem;
    }
}

/* Cancel Button */
.btn-cancel {
    background: #dc3545;
    border: 1px solid #dc3545;
    color: white;
    padding: 10px 24px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
}

/* .btn-cancel:hover {
    background: #dc3545;
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
} */