/* ========================================
   BOOKING CALENDAR MODAL SYSTEM - VERANDA STYLE
   ======================================== */

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 118, 116, 0.92);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.modal-container {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
    max-height: 95vh;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
    border: 3px solid var(--color-primary, #047674);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-container-booking {
    width: 90%;
    max-width: 1400px;
}

.modal-container-form {
    width: 90%;
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: var(--color-primary, #047674);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    font-size: 22px;
    color: #fff;
    padding: 8px;
}

.modal-close:hover {
    background: var(--color-accent, #D4AF37);
}

.modal-close::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    cursor: pointer;
}

.modal-scroll {
    overflow-y: auto;
    max-height: 95vh;
    padding: 0;
}

/* Modal Header Section */
.modal-title {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-family: 'Cambo', serif;
    letter-spacing: 0.05em;
    background: var(--color-primary, #047674);
    padding: 20px 35px;
    border-bottom: 2px solid var(--color-accent, #D4AF37);
}

.modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 6px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Booking Calendar Container */
.booking-calendar-container {

    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    margin-top: 0;
    align-items: start;
}

/* Calendar Section */
.calendar-wrapper {
    background: #fafafa;
    padding: 20px 30px 30px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
}

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

.calendar-month {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary, #047674);
    margin: 0;
    font-family: 'Cambo', serif;
    letter-spacing: 0.05em;
}

.calendar-nav {
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 1px solid var(--color-primary, #047674);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-primary, #047674);
    font-size: 13px;
}

.calendar-nav:hover {
    background: var(--color-primary, #047674);
    color: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    max-width: 480px;
    width: 100%;
}

.calendar-day-header {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-align: center;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Roboto', sans-serif;
}

.calendar-day {
    aspect-ratio: 1;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.calendar-day:hover:not(:disabled) {
    background: rgba(4, 118, 116, 0.08);
    border-color: var(--color-primary, #047674);
}

.calendar-day.empty {
    border: none;
    background: transparent;
    cursor: default;
}

.calendar-day.past,
.calendar-day.unavailable {
    background: #f5f5f5;
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
    border-color: #f0f0f0;
}

.calendar-day.selected {
    background: var(--color-primary, #047674);
    color: #fff;
    border-color: var(--color-primary, #047674);
    font-weight: 500;
}

.calendar-day.in-range {
    background: rgba(4, 118, 116, 0.12);
    border-color: rgba(4, 118, 116, 0.3);
}

.calendar-legend {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    font-family: 'Roboto', sans-serif;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
}

.legend-dot.available {
    background: #fff;
}

.legend-dot.selected {
    background: var(--color-primary, #047674);
    border-color: var(--color-primary, #047674);
}

.legend-dot.unavailable {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

/* Booking Details Panel */
.booking-details-panel {
    display: flex;
    flex-direction: column;
    background: #fff;
    min-height: 100%;
    align-self: stretch;
}

.booking-card {
    padding: 32px;
}

.booking-header {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-accent, #D4AF37);
}

.booking-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-label {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary, #047674);
    font-family: 'Cambo', serif;
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.rating-star {
    color: var(--color-accent, #D4AF37);
    font-size: 13px;
}

.rating-value {
    font-weight: 500;
    color: #333;
}

.rating-count {
    color: #999;
}

/* Date Selection */
.date-selection {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.date-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.date-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-input label {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
}

.date-input input,
.date-input select {
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s ease;
    background: #fafafa;
    cursor: pointer;
    font-weight: 300;
}

.date-input input:focus,
.date-input select:focus {
    outline: none;
    border-color: var(--color-primary, #047674);
    background: #fff;
}

/* Price Breakdown */
.price-breakdown {
    border-top: 1px solid #e0e0e0;
    padding-top: 18px;
    margin-bottom: 22px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.price-breakdown.visible {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.price-breakdown h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--color-primary, #047674);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 13px;
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.price-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
}

.price-row.price-total {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary, #047674);
    padding-top: 12px;
    font-family: 'Cambo', serif;
}

/* Booking Info Section */
.booking-info-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 22px;
    margin-bottom: 24px;
}

.booking-info-section h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--color-primary, #047674);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.booking-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.booking-info-list li i {
    width: 16px;
    flex-shrink: 0;
    color: var(--color-accent, #D4AF37);
    margin-top: 3px;
    font-size: 14px;
}

.booking-info-list li strong {
    color: #333;
    font-weight: 500;
}

/* Booking Submit Button */
.booking-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--color-primary, #047674);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.booking-submit-btn:hover {
    background: var(--color-accent, #D4AF37);
    color: #333;
}

.booking-submit-btn:active {
    transform: scale(0.98);
}

/* Booking Contact */
.booking-contact {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid #e0e0e0;
}

.booking-contact p {
    margin: 0 0 6px 0;
    font-size: 11px;
    color: #999;
    font-family: 'Roboto', sans-serif;
}

.booking-contact a {
    color: var(--color-primary, #047674);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    transition: color 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.booking-contact a:hover {
    color: var(--color-accent, #D4AF37);
}

/* ========================================
   BOOKING FORM MODAL
   ======================================== */

.booking-summary {
    background: #fafafa;
    border-radius: 0;
    padding: 25px;
    margin: 25px 35px;
    border: 1px solid #e0e0e0;
}

.booking-summary h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 18px 0;
    color: var(--color-primary, #047674);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.summary-row span {
    color: #999;
}

.summary-row strong {
    color: #333;
    font-weight: 400;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.summary-row.summary-total {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary, #047674);
    padding-top: 12px;
    font-family: 'Cambo', serif;
}

.summary-row.summary-total strong {
    color: var(--color-primary, #047674);
    font-size: 17px;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 35px 35px 35px;
}

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

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

.form-group label {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s ease;
    background: #fafafa;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary, #047674);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-primary, #047674);
}

.form-actions {
    margin-top: 8px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--color-primary, #047674);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.form-submit-btn:hover {
    background: var(--color-accent, #D4AF37);
    color: #333;
}

.form-submit-btn:active {
    transform: scale(0.98);
}

.form-note {
    margin-top: 18px;
    font-size: 11px;
    color: #999;
    text-align: center;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

/* ========================================
   RESPONSIVE DESIGN FOR BOOKING MODALS
   ======================================== */

@media (max-width: 1024px) {
    .booking-calendar-container {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .modal-title {
        padding: 25px 40px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .modal-title {
        font-size: 19px;
        padding: 18px 25px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .calendar-wrapper {
        padding: 25px;
        min-height: auto;
    }

    .booking-card {
        padding: 25px;
    }

    .date-input-group {
        grid-template-columns: 1fr;
    }

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

    .booking-form {
        padding: 0 25px 25px 25px;
    }

    .booking-summary {
        margin: 18px 25px;
        padding: 20px;
    }

    .calendar-month {
        font-size: 16px;
    }

    .calendar-nav {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .price-label {
        font-size: 18px;
    }

    .booking-info-list li {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        border: none;
    }

    .modal-scroll {
        max-height: 100vh;
    }

    .modal-title {
        font-size: 17px;
        padding: 16px 20px;
    }

    .modal-subtitle {
        font-size: 11px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .calendar-wrapper {
        padding: 20px;
        min-height: auto;
    }

    .calendar-month {
        font-size: 15px;
    }

    .calendar-nav {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .calendar-day {
        font-size: 12px;
    }

    .calendar-day-header {
        font-size: 9px;
        padding: 6px 0;
    }

    .calendar-grid {
        gap: 3px;
    }

    .legend-item {
        font-size: 10px;
    }

    .legend-dot {
        width: 10px;
        height: 10px;
    }

    .booking-card {
        padding: 20px;
    }

    .price-label {
        font-size: 17px;
    }

    .rating-star {
        font-size: 12px;
    }

    .booking-rating {
        font-size: 11px;
    }

    .date-input label {
        font-size: 9px;
    }

    .date-input input,
    .date-input select {
        padding: 9px 10px;
        font-size: 12px;
    }

    .price-breakdown h4,
    .booking-info-section h4 {
        font-size: 11px;
    }

    .price-row {
        font-size: 12px;
    }

    .price-row.price-total {
        font-size: 15px;
    }

    .booking-info-list li {
        font-size: 11px;
        gap: 8px;
    }

    .booking-info-list li i {
        width: 14px;
    }

    .booking-submit-btn,
    .form-submit-btn {
        font-size: 12px;
        padding: 12px 16px;
    }

    .booking-contact p {
        font-size: 10px;
    }

    .booking-contact a {
        font-size: 11px;
    }

    .booking-summary {
        margin: 15px 20px;
        padding: 18px;
    }

    .booking-summary h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .summary-row {
        font-size: 12px;
        padding: 7px 0;
    }

    .summary-row.summary-total {
        font-size: 15px;
    }

    .summary-row.summary-total strong {
        font-size: 16px;
    }

    .booking-form {
        padding: 0 20px 20px 20px;
        gap: 15px;
    }

    .form-row {
        gap: 15px;
    }

    .form-group label {
        font-size: 9px;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 12px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .checkbox-label {
        font-size: 11px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .form-note {
        font-size: 10px;
    }
}

/* ========================================
   INFO MODALS (House Rules & Safety)
   ======================================== */

.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.info-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 118, 116, 0.92);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.info-modal-container {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
    border: 3px solid var(--color-primary, #047674);
    display: flex;
    flex-direction: column;
}

.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: var(--color-primary, #047674);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    font-size: 22px;
    color: #fff;
    padding: 8px;
}

.info-modal-close:hover {
    background: var(--color-accent, #D4AF37);
}

.info-modal-close::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    cursor: pointer;
}

.info-modal-header {
    background: var(--color-primary, #047674);
    padding: 28px 35px;
    border-bottom: 2px solid var(--color-accent, #D4AF37);
}

.info-modal-title {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-family: 'Cambo', serif;
    letter-spacing: 0.05em;
}

.info-modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
}

.info-modal-scroll {
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    padding: 0;
}

.info-modal-content {
    padding: 35px;
}

.info-section {
    margin-bottom: 32px;
}

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

.info-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary, #047674);
    margin: 0 0 20px 0;
    font-family: 'Cambo', serif;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent, #D4AF37);
}

.info-section h3 i {
    color: var(--color-accent, #D4AF37);
    font-size: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    padding: 12px 16px;
    background: #fafafa;
    border-left: 3px solid var(--color-primary, #047674);
}

.info-list li i {
    color: var(--color-primary, #047674);
    margin-top: 2px;
    font-size: 16px;
    flex-shrink: 0;
}

.info-list li strong {
    color: #333;
    font-weight: 500;
}

.info-detail-item {
    margin-bottom: 20px;
    padding: 18px;
    background: #fafafa;
    border-left: 3px solid var(--color-primary, #047674);
}

.info-detail-item:last-child {
    margin-bottom: 0;
}

.info-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.info-detail-header i {
    color: var(--color-primary, #047674);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-detail-header strong {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.info-detail-item p {
    margin: 10px 0 0 30px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

/* Responsive for Info Modals */
@media (max-width: 768px) {
    .info-modal-container {
        width: 95%;
        max-width: 95%;
    }

    .info-modal-header {
        padding: 22px 25px;
    }

    .info-modal-title {
        font-size: 20px;
    }

    .info-modal-subtitle {
        font-size: 12px;
    }

    .info-modal-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .info-modal-content {
        padding: 25px;
    }

    .info-section {
        margin-bottom: 28px;
    }

    .info-section h3 {
        font-size: 16px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .info-section h3 i {
        font-size: 18px;
    }

    .info-list li {
        font-size: 13px;
        padding: 10px 14px;
        gap: 10px;
    }

    .info-list li i {
        font-size: 15px;
    }

    .info-detail-item {
        padding: 16px;
        margin-bottom: 16px;
    }

    .info-detail-header {
        gap: 10px;
    }

    .info-detail-header i {
        font-size: 16px;
    }

    .info-detail-header strong {
        font-size: 14px;
    }

    .info-detail-item p {
        font-size: 12px;
        margin-left: 26px;
    }
}

@media (max-width: 480px) {
    .info-modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }

    .info-modal-scroll {
        max-height: calc(100vh - 100px);
    }

    .info-modal-header {
        padding: 18px 20px;
    }

    .info-modal-title {
        font-size: 18px;
    }

    .info-modal-subtitle {
        font-size: 11px;
        margin-top: 6px;
    }

    .info-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .info-modal-content {
        padding: 20px;
    }

    .info-section {
        margin-bottom: 24px;
    }

    .info-section h3 {
        font-size: 15px;
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .info-section h3 i {
        font-size: 16px;
    }

    .info-list {
        gap: 12px;
    }

    .info-list li {
        font-size: 12px;
        padding: 10px 12px;
        gap: 10px;
    }

    .info-list li i {
        font-size: 14px;
    }

    .info-detail-item {
        padding: 14px;
        margin-bottom: 14px;
    }

    .info-detail-header {
        gap: 10px;
        margin-bottom: 8px;
    }

    .info-detail-header i {
        font-size: 15px;
    }

    .info-detail-header strong {
        font-size: 13px;
    }

    .info-detail-item p {
        font-size: 12px;
        margin-left: 25px;
        margin-top: 8px;
    }
}
