:root {
    /* Casa Real Official Identity Colors */
    --primary: #A31D43;
    /* Magenta/Burgundy Seal */
    --secondary: #A31D43;
    /* Changed from blue to Red/Burgundy */
    --bg-dark: #110F25;
    /* Deep Navy Background */
    --text-main: #110F25;
    --text-muted: #444444;
    /* Darker muted text for white background */
    --accent: #E02F5B;
    /* Vibrant Pinkish/Red */
    --radius: 20px;

    /* Typographies */
    --font-heading: 'Paytone One', sans-serif;
    --font-logo: 'Playfair Display', serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-accent: 'Delius', cursive;
}

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

body {
    background-color: var(--bg-dark);
    /* Official Casa Real Pattern Background */
    background-image:
        linear-gradient(rgba(17, 15, 37, 0.1), rgba(17, 15, 37, 0.2)),
        url('images/blue-pattern.png');
    background-size: 150px;
    background-repeat: repeat;
    background-position: top left;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.links-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Banner Section */
.banner {
    width: 100%;
    height: 180px;
    position: relative;
    /* Display the restaurant interior */
    background-image:
        linear-gradient(rgba(4, 151, 209, 0.4), rgba(163, 29, 67, 0.4)),
        url('images/restaurant_interior.jpg');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Profile Section */
.profile {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 0 20px;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.profile-img-container {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 4px solid var(--secondary);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.profile-img-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    animation: spin 6s linear infinite;
    z-index: 1;
}

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

    to {
        transform: rotate(360deg);
    }
}

.profile img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
    z-index: 2;
    border-radius: 50%;
}

.profile h1 {
    font-family: var(--font-logo);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--primary);
    text-shadow: none;
    letter-spacing: 1px;
}

.profile .subtitle {
    font-family: var(--font-accent);
    color: #110F25;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: -5px;
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: none;
}

.brand-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: none;
}

/* Links Section */
.links-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.link-card {
    background: white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.link-card:hover {
    background: var(--secondary);
    border-color: white;
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(4, 151, 209, 0.4);
}

.link-card i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Delivery Buttons Styling */
.link-card.online-ordering {
    background: linear-gradient(135deg, #A31D43 0%, #7A1231 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(163, 29, 67, 0.3);
}

.link-card.online-ordering i {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 15px;
    margin-right: 15px;
}

.link-card.uber-eats {
    background: linear-gradient(135deg, #06C167 0%, #048C4B 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.3);
}

.link-card.grub-hub {
    background: linear-gradient(135deg, #F66D14 0%, #D4580D 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(246, 109, 20, 0.3);
}

.link-card.doordash {
    background: linear-gradient(135deg, #FF3008 0%, #D12504 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 48, 8, 0.3);
}

.link-card.online-ordering:hover,
.link-card.uber-eats:hover,
.link-card.grub-hub:hover,
.link-card.doordash:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Socials */
.socials {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    animation: fadeIn 1s ease-out forwards;
    justify-content: center;
}

.socials a {
    font-size: 1.4rem;
    color: #110F25;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 10px 25px rgba(163, 29, 67, 0.3);
}

/* Opening Hours Styles */
.hours-section {
    width: 100%;
    max-width: 440px;
    margin: 20px 0 30px;
    padding: 0 20px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
}

.hours-section h3 {
    font-family: var(--font-heading);
    color: #0497D1;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hours-grid {
    background: rgba(0, 0, 0, 0.03);
    border: 2px solid #0497D1;
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(4, 151, 209, 0.2);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hours-row strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 400;
}

/* Quote Section */
.quote-section {
    width: 90%;
    max-width: 420px;
    margin: 30px auto 20px;
    text-align: center;
    position: relative;
    padding: 30px 25px;
    background: rgba(163, 29, 67, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(163, 29, 67, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.2s ease-out forwards;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(163, 29, 67, 0.5));
}

.quote-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #110F25;
    margin-bottom: 20px;
    text-shadow: none;
}

.quote-author {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-author::before {
    content: '— ';
}

/* Image Slider Section */
.slider-section {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 0;
    padding: 0 20px;
    animation: fadeIn 1s ease-out forwards;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    /* 4:3 vertical aspect ratio */
    padding-bottom: 133.33%;
    background: #000;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 18px 14px;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--secondary);
}

.slider-btn.prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.slider-btn.next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot:hover {
    background: white;
}

.dot.active {
    background: var(--secondary);
    border-color: white;
    transform: scale(1.4);
}

/* Disclaimer Section */
.disclaimer-section {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 30px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    text-align: center;
}

.disclaimer-section p {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

.disclaimer-section strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 5px;
}

/* Footer */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
}

footer a {
    color: #110F25;
    text-decoration: none;
    font-family: var(--font-logo);
    font-size: 1.4rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Staggered animation for links */
.link-card:nth-child(1) {
    animation-delay: 0.1s;
}

.link-card:nth-child(2) {
    animation-delay: 0.2s;
}

.link-card:nth-child(3) {
    animation-delay: 0.3s;
}

.link-card:nth-child(4) {
    animation-delay: 0.4s;
}

.link-card:nth-child(5) {
    animation-delay: 0.5s;
}

.link-card:nth-child(6) {
    animation-delay: 0.6s;
}

.link-card:nth-child(7) {
    animation-delay: 0.7s;
}

.link-card:nth-child(8) {
    animation-delay: 0.8s;
}

.link-card:nth-child(9) {
    animation-delay: 0.9s;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .links-container {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Dock Styles (iPhone Style) */
.mobile-dock {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 35px;
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUpDock 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideUpDock {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 25px;
        opacity: 1;
    }
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #110F25;
    gap: 6px;
    transition: transform 0.3s ease;
    width: 25%;
}

.dock-item i {
    font-size: 1.5rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(163, 29, 67, 0.2));
}

.dock-item span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
}

.dock-item:hover {
    transform: translateY(-8px);
}

.dock-item:active {
    transform: scale(0.9);
}

/* Adjust container padding to prevent content from being hidden by the dock */
.links-container {
    padding-bottom: 120px !important;
}

/* Hide dock if screen is very small */
@media (max-width: 320px) {
    .dock-item span {
        display: none;
    }

    .mobile-dock {
        padding: 10px;
    }
}

/* ========================================
   FOOD TRUCK MODAL STYLES
   ======================================== */

/* Food Truck Button */
.food-truck-btn {
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: white !important;
    font-weight: 600;
}

.food-truck-btn i {
    color: white !important;
}

.food-truck-btn:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(163, 29, 67, 0.5) !important;
    filter: brightness(1.1);
}

/* Modal Container */
.modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 15, 37, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 800px;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
    border: 2px solid var(--primary);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: none;
    overflow: visible;
    position: relative;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(163, 29, 67, 0.4);
    animation: slideUp 0.4s ease;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(163, 29, 67, 0.1);
    border: 1px solid rgba(163, 29, 67, 0.2);
    color: var(--primary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(163, 29, 67, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInStep 0.5s ease;
}

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

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.form-step h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}

.step-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Event Type Grid */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.event-type-btn {
    background: rgba(163, 29, 67, 0.05);
    border: 1px solid rgba(163, 29, 67, 0.2);
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.event-type-btn i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.event-type-btn span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--font-body);
}

.event-type-btn:hover,
.event-type-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(163, 29, 67, 0.3);
}

.event-type-btn:hover i,
.event-type-btn.selected i {
    color: white;
    transform: scale(1.1);
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group label i {
    margin-right: 8px;
}

.form-input {
    background: rgba(163, 29, 67, 0.05);
    border: 1px solid rgba(163, 29, 67, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(163, 29, 67, 0.08);
    box-shadow: 0 0 0 3px rgba(163, 29, 67, 0.1);
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

select.form-input {
    cursor: pointer;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Services Checklist */
.services-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-item {
    background: rgba(163, 29, 67, 0.05);
    border: 1px solid rgba(163, 29, 67, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item:hover {
    background: rgba(163, 29, 67, 0.08);
    border-color: var(--primary);
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(163, 29, 67, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.7rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

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

.checkbox-label span {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-label {
    color: var(--primary);
}

/* Modal Navigation */
.modal-nav {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 400;
}

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

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(163, 29, 67, 0.3);
}

.btn-secondary {
    background: rgba(163, 29, 67, 0.1);
    border: 1px solid rgba(163, 29, 67, 0.3);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(163, 29, 67, 0.2);
    border-color: var(--primary);
}

/* Confirmation Step */
.confirmation-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

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

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

.confirmation-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.confirmation-details {
    background: rgba(163, 29, 67, 0.05);
    border: 1px solid rgba(163, 29, 67, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.confirmation-details p {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.confirmation-details ul {
    list-style: none;
    padding: 0;
}

.confirmation-details li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.confirmation-details li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .form-step h2 {
        font-size: 1.2rem;
    }

    .event-type-btn {
        padding: 20px 10px;
    }

    .event-type-btn i {
        font-size: 1.5rem;
    }

    .modal-nav {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}