/* General Reset and Typography */
:root {
    --gold: #D4AF37;
    --nude: #F5E0D6;
    /* Adjusted for better contrast */
    --soft-pink: #FADADD;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --bg-light: #FFFBF9;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

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

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

section {
    scroll-margin-top: 100px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: flex-end !important;
    /* Forces links to the far right */
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    /* Reset margins to let parent justify-content work */
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}



.nav-links a:hover {
    color: var(--gold);
}

.nav-instagram-link {
    display: none;
}

.admin-btn {
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
    padding: 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span:nth-child(1) {
    top: 0;
}

.mobile-nav-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-nav-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: radial-gradient(circle at top right, var(--soft-pink), transparent),
        radial-gradient(circle at bottom left, var(--nude), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 40px;
    letter-spacing: 2px;
}

.cta-pulse {
    display: inline-block;
    padding: 15px 40px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-pulse:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* About Section */
#about {
    padding: 100px 0;
    scroll-margin-top: 60px;
    background: var(--white);
}

.flex-row {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.hours-card {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--gold);
}

/* Price List */
#prices {
    padding: 100px 0;
    background: var(--bg-light);
    /* Warm background to match about/booking */
    scroll-margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.price-list-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    border-radius: 30px;
    position: relative;
    z-index: 10;
}

.price-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Watermark effect - more subtle */
.price-list-wrapper::before {
    content: 'AK';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 25rem;
    color: rgba(0, 0, 0, 0.02);
    font-family: 'Pinyon Script', cursive;
    z-index: -1;
    pointer-events: none;
}

.price-category-group {
    margin-bottom: 50px;
}

.price-cat-title {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: var(--gold);
    /* Consistent with branding */
    font-weight: 700;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-row {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
}

.price-info {
    text-align: right;
    flex: 1;
}

.price-service {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2px;
}

.price-time {
    font-size: 0.75rem;
    color: #999;
    text-transform: lowercase;
}

.price-line-separator {
    width: 2px;
    background: #ddd;
    height: 35px;
    margin-bottom: 5px;
}

.price-value {
    width: 70px;
    font-weight: 400;
    color: #333;
    padding-bottom: 5px;
    font-size: 1.1rem;
}

.price-footer {
    margin-top: 80px;
    text-align: center;
    letter-spacing: 8px;
    font-size: 1rem;
    font-weight: 300;
    color: #333;
}

/* Booking System Premium Styles Update */
.s-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.s-duration {
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.8;
}

.service-option.selected .s-duration {
    color: white;
}

/* GalleryGrid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Booking Mockup */
.booking-placeholder {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mock-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 30px 0;
}

.mock-calendar-grid span {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    font-size: 0.8rem;
}

.available {
    background: var(--soft-pink) !important;
    font-weight: bold;
}

/* Booking System Premium Styles */
.booking-wizard {
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 50px;
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0 10px;
}

.booking-cat-group {
    margin-bottom: 40px;
}

.booking-cat-title {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 700;
}

.service-option {
    padding: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.service-option:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.service-option.selected {
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

.s-name {
    font-weight: 700;
    display: block;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.35;
}

.s-meta {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
}

.s-duration {
    font-size: 0.75rem;
    color: #999;
}

.service-option.selected .s-duration {
    color: rgba(255, 255, 255, 0.7);
}

.booking-flex {
    display: flex;
    gap: 40px;
}

.calendar-container {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    min-height: 350px;
}

.calendar-container.inactive {
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
}

.calendar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
    display: none;
}

.calendar-container.inactive .calendar-overlay {
    display: flex;
    font-weight: 700;
    text-align: center;
    padding: 40px;
}

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

.calendar-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: var(--bg-light);
}

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

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 1px solid var(--gold);
}

.booking-step {
    flex: 1;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-back {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: inherit;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-back:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

.time-slot:hover:not(.booked) {
    background: var(--soft-pink);
}

.time-slot.selected {
    background: var(--charcoal);
    color: white;
}

.time-slot.booked {
    background: #eee;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

#booking-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.form-row {
    display: flex;
    gap: 10px;
}

#booking-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    margin-bottom: 10px;
    width: 100%;
}

.form-row input {
    flex: 1;
}

.btn-primary-gold {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.booking-submit-area {
    margin-top: 20px;
    text-align: center;
}

.booking-notice {
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.hidden {
    display: none !important;
}

.booking-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #2ed573;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.btn-refresh {
    margin-top: 20px;
    background: none;
    border: 1px solid var(--gold);
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .booking-flex {
        flex-direction: column;
    }

    .booking-wizard {
        padding: 20px;
    }

    .form-row {
        display: block !important;
    }

    .form-row input {
        width: 100% !important;
        margin-bottom: 10px;
    }
}

/* Footer */
footer {
    padding: 80px 0 20px;
    background: var(--charcoal);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-hours {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-hours strong {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold) !important;
    text-decoration: none;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.instagram-link:hover {
    opacity: 0.8;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.date-divider td {
    background-color: var(--nude) !important;
    font-weight: 700;
    color: var(--charcoal);
    padding: 10px 15px !important;
    border-bottom: 2px solid var(--gold);
}
.booking-block-row td {
    background-color: #f0f0f0 !important;
    color: #888;
}
.block-badge {
    padding: 4px 10px;
    background: #555;
    color: white;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 1rem;
}


/* Responsive */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        gap: 40px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-instagram-link {
        display: flex !important;
        align-items: center;
        gap: 10px;
        color: var(--charcoal);
        text-decoration: none;
    }

    .nav-instagram-link svg {
        color: var(--gold);
    }

    .nav-links a:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links a:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links a:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-links a:nth-child(5) {
        transition-delay: 0.6s;
    }

    .nav-links a:nth-child(6) {
        transition-delay: 0.7s;
    }

    /* Fix logo position on mobile */
    .nav-container {
        justify-content: space-between !important;
    }

    /* Footer mobile: Kontakt na górze, Regulamin poniżej */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .price-list-wrapper {
        max-width: 600px;
        padding: 60px 30px;
    }

    .price-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .price-cat-title {
        margin-bottom: 25px;
    }

    .price-service {
        font-size: 0.9rem;
    }

    .price-value {
        width: 60px;
        font-size: 1rem;
    }

    .price-footer {
        margin-top: 50px;
        letter-spacing: 5px;
        font-size: 0.9rem;
    }
}
/* Selection Summary Bar */
.selection-summary {
    position: sticky;
    bottom: 20px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 100;
    margin-top: 30px;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.summary-stats {
    display: flex;
    gap: 25px;
}

.summary-stats span {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

.summary-stats span strong {
    color: var(--gold);
}

.btn-proceed {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-proceed:hover {
    background: white;
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-proceed:active {
    transform: translateY(0);
}

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

/* Service Option Multi-select enhancement */
.service-option.selected {
    border-color: var(--gold) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .selection-summary {
        bottom: 10px;
        padding: 12px 15px;
        border-radius: 15px;
    }
    .summary-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .summary-stats {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .summary-stats span {
        font-size: 0.85rem;
    }
    .btn-proceed {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-back {
        font-size: 0.9rem;
        text-align: left;
        display: block;
        width: 100%;
        line-height: 1.4;
    }
    .service-selector-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    .service-option {
        padding: 15px;
        min-height: 120px;
    }
    .s-name {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   🔑 Smart-Manage Self-Service Features Styles (Premium Glassmorphism)
   ========================================================================== */

.nav-manage-link {
    font-weight: 700 !important;
    color: var(--gold) !important;
    border: 1px dashed var(--gold);
    padding: 6px 12px;
    border-radius: 15px;
    transition: all 0.3s ease !important;
}

.nav-manage-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.03);
}

/* Success Screen PIN Box */
.success-pin-box {
    max-width: 400px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.pin-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.pin-code-display {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.8rem;
    padding-left: 0.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-family: monospace;
}

.pin-desc {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
}

.success-actions {
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.success-btn-action {
    flex: 1;
    margin-top: 0 !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-secondary-dark {
    background: var(--charcoal);
    color: white;
    border: none;
}

.btn-secondary-dark:hover {
    background: #444;
    transform: translateY(-2px);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Modal Overlay base for Manage Booking */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--charcoal);
}

.modal-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-subtitle {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.6;
    margin-bottom: 25px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modal-error {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: #ff4757;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.modal-success {
    background: rgba(46, 213, 115, 0.08);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: #2ed573;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Booking Details state in modal */
.booking-details-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

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

.detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.6;
}

.detail-val {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
    color: var(--charcoal);
}

.manage-details-actions {
    gap: 15px;
    margin-top: 20px;
}

.manage-details-actions button {
    margin-top: 0 !important;
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    .success-btn-action {
        width: 100%;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .manage-details-actions {
        flex-direction: column;
        gap: 10px;
    }
    .manage-details-actions button {
        width: 100%;
    }
}

