/* ============================================
   Practical / Info Page Styles
   ============================================ */

/* ============================================
   Info Section
   ============================================ */
.info {
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card li:last-child {
    border-bottom: none;
}

/* Emergency & Dietary Info Cards */
.info-card.emergency {
    border-left: 4px solid #ff6b6b;
}

.info-card.dietary {
    border-left: 4px solid var(--accent-alt);
}

.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.dietary-tag {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.dietary-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* ============================================
   Map Container
   ============================================ */
.map-container {
    margin-top: 40px;
}

.map-container h3 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

/* ============================================
   Travel Coordination
   ============================================ */
.travel {
    background: var(--bg-white);
}

/* Flight Info Banner */
.flight-info-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.flight-leg {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flight-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.flight-detail {
    font-size: 1rem;
    font-weight: 600;
}

.flight-divider {
    font-size: 1.8rem;
}

.flight-note {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Travel Confirm Card */
.travel-confirm-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.travel-confirm-card h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.travel-confirm-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.travel-status-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-status-btn {
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-dark);
}

.travel-status-btn:hover {
    border-color: var(--primary);
    background: var(--bg-white);
    transform: translateX(4px);
}

.travel-confirmed-msg {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
}

.travel-login-note {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Admin Panel */
.travel-admin-panel {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    border: 2px dashed var(--primary);
    max-width: 700px;
    margin: 0 auto;
}

.travel-admin-panel h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.travel-admin-row {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-white);
    flex-wrap: wrap;
}

.travel-admin-label {
    font-weight: 600;
    min-width: 280px;
    font-size: 0.9rem;
}

.travel-admin-names {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Packing Checklist
   ============================================ */
.packing {
    background: var(--bg-light);
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.packing-category {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.packing-category h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.check-item:hover {
    background: var(--bg-light);
}

.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.check-item input:checked + span,
.check-item:has(input:checked) {
    text-decoration: line-through;
    color: var(--text-light);
}

.packing-progress {
    text-align: center;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.packing-progress #packing-count {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   Payment Tracker
   ============================================ */
.payments {
    background: var(--bg-light);
}

.payment-overview {
    max-width: 600px;
    margin: 0 auto 40px;
}

.payment-progress {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.payments .progress-bar {
    height: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.payments .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
}

.progress-amount {
    font-weight: 600;
    color: var(--primary);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.payment-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-2px);
}

.payment-card.paid {
    border-color: var(--accent-alt);
    background: linear-gradient(135deg, rgba(107, 203, 119, 0.1) 0%, rgba(107, 203, 119, 0.05) 100%);
}

.payment-card.paid::after {
    content: '\2713';
    display: block;
    color: var(--accent-alt);
    font-size: 1.5rem;
    margin-top: 5px;
}

.payment-card .name {
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-reminder {
    text-align: center;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.payment-reminder p {
    margin: 0;
    color: var(--text-light);
}

/* ============================================
   French Phrases
   ============================================ */
.french {
    background: var(--bg-light);
}

.phrases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.phrase-category {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.phrase-category h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.phrase-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phrase {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.phrase .french {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
    /* Reset section background since .french is also the section class */
    background: none;
}

.phrase .english {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.phrase .pronunciation {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Gallery / Venue Section
   ============================================ */
.gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

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

.gallery-item.placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-light);
}

.placeholder-content span {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-fast);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}

/* ============================================
   Responsive Overrides
   ============================================ */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .phrases-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .payment-card {
        padding: 10px;
    }

    .payment-card .name {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ============================================
   Expense Splitter
   ============================================ */
.expenses {
    background: var(--bg-white);
}

.exp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.exp-form-card,
.exp-summary-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 25px;
}

.exp-form-card h3,
.exp-summary-card h4 {
    color: var(--secondary);
    margin: 0 0 15px;
}

.exp-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 10px;
    background: var(--bg-white);
    box-sizing: border-box;
}

.exp-input:focus {
    outline: none;
    border-color: var(--primary);
}

.exp-amount-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.exp-currency {
    background: var(--bg-white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.exp-amount-row .exp-input {
    border-radius: 0 10px 10px 0;
}

.exp-split-section {
    margin-bottom: 12px;
}

.exp-split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.exp-select-all-btn {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.exp-select-all-btn:hover {
    background: var(--primary);
    color: white;
}

.exp-split-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 180px;
    overflow-y: auto;
    padding: 10px;
    background: var(--bg-white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.exp-cb-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.exp-cb-label:hover {
    background: var(--bg-light);
}

.exp-cb-label input {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
}

.exp-add-btn {
    width: 100%;
}

/* Totals & Settlements */
.exp-total {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 14px;
    margin-bottom: 20px;
}

.exp-total-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.exp-total-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.exp-settle-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0 0 12px;
}

.exp-settlements {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exp-settle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-white);
    border-radius: 10px;
}

.exp-settle-from {
    font-weight: 600;
    color: #ef4444;
    min-width: 60px;
}

.exp-settle-arrow {
    color: var(--text-light);
}

.exp-settle-to {
    font-weight: 600;
    color: #10b981;
    min-width: 60px;
}

.exp-settle-amount {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary);
}

.exp-all-settled {
    text-align: center;
    font-weight: 600;
    color: #10b981;
    padding: 15px;
}

/* Expense List */
.exp-list {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 25px;
}

.exp-list h4 {
    color: var(--secondary);
    margin: 0 0 15px;
}

.exp-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 8px;
}

.exp-list-info {
    flex: 1;
    min-width: 0;
}

.exp-list-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.exp-list-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.exp-list-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    white-space: nowrap;
}

.exp-delete-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.exp-delete-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* ============================================
   Weather Widget
   ============================================ */
.weather-section {
    background: var(--bg-light);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.weather-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.weather-day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
}

.weather-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.weather-icon {
    font-size: 2.5rem;
    margin: 5px 0;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.weather-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.weather-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.weather-sun {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.weather-wear {
    font-size: 0.75rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1.3;
}

.weather-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ============================================
   Restaurant & Bar Guide
   ============================================ */
.restaurants {
    background: var(--bg-white);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.restaurant-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 22px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.restaurant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.restaurant-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.restaurant-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.restaurant-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
    flex: 1;
}

.restaurant-type {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.restaurant-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.restaurant-desc {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0 0 12px;
    font-style: italic;
}

.restaurant-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.restaurant-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ============================================
   Transport Coordinator
   ============================================ */
.transport-section {
    background: var(--bg-light);
}

.transport-vans-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: var(--bg-white);
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.transport-activities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.transport-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.transport-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.transport-card-emoji {
    font-size: 2rem;
}

.transport-card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
}

.transport-card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.transport-capacity {
    margin-bottom: 15px;
}

.transport-capacity-bar {
    height: 10px;
    background: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}

.transport-capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 5px;
    transition: width 0.4s ease;
}

.transport-capacity-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.transport-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.transport-btn {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-light);
    color: var(--text-dark);
}

.transport-btn:hover {
    border-color: var(--primary);
    background: #f8f0ff;
}

.transport-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.transport-people {
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 6px 0;
}

.transport-people strong {
    color: var(--text-light);
}

/* ============================================
   Responsive - New Practical Features
   ============================================ */
@media (max-width: 768px) {
    .exp-layout {
        grid-template-columns: 1fr;
    }

    .weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .transport-activities {
        grid-template-columns: 1fr;
    }

    .transport-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .weather-grid {
        grid-template-columns: 1fr;
    }

    .exp-settle-row {
        flex-wrap: wrap;
    }
}

/* ============================================
   Packing Comparison
   ============================================ */
.packing-comparison {
    margin-top: 30px;
}

.packing-comparison-toggle {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.packing-comparison-toggle:hover {
    background: var(--primary);
    color: white;
}

.packing-comparison-toggle.open {
    background: var(--primary);
    color: white;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
}

.packing-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 8px;
    padding: 20px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.packing-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.packing-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.packing-stat-count {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.packing-stat-green {
    background: rgba(16, 185, 129, 0.08);
}

.packing-stat-green .packing-stat-count {
    background: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.packing-stat-orange {
    background: rgba(245, 158, 11, 0.08);
}

.packing-stat-orange .packing-stat-count {
    background: rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.packing-stat-red {
    background: rgba(239, 68, 68, 0.08);
}

.packing-stat-red .packing-stat-count {
    background: rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

/* ============================================
   Currency Converter
   ============================================ */
.currency-section {
    background: var(--bg-light);
}

.currency-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.currency-converter-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.currency-input-row {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.currency-symbol {
    background: var(--bg-light);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
}

.currency-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-left: none;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--bg-light);
    outline: none;
    -moz-appearance: textfield;
}

.currency-input::-webkit-outer-spin-button,
.currency-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.currency-input:focus {
    border-color: var(--primary);
}

.currency-code {
    background: var(--bg-light);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.currency-swap-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.currency-swap-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.currency-result {
    display: flex;
    align-items: baseline;
    gap: 4px;
    width: 100%;
    justify-content: center;
}

.currency-result-symbol {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.currency-result-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.currency-result .currency-code {
    background: none;
    border: none;
    padding: 0;
    margin-left: 4px;
}

.currency-rate {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Quick convert buttons */
.currency-quick {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.currency-quick-btn {
    padding: 8px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.currency-quick-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.currency-quick-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

/* Common prices reference */
.currency-reference h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0 0 14px;
    text-align: center;
}

.currency-ref-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.currency-ref-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 10px;
}

.currency-ref-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.currency-ref-eur {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 12px;
    min-width: 55px;
    text-align: right;
}

.currency-ref-gbp {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
    min-width: 50px;
    text-align: right;
}

/* ============================================
   Data Export / Import
   ============================================ */
.data-sync-section {
    background: var(--bg-white);
}

.data-sync-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
}

.data-sync-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.data-sync-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.data-sync-export .data-sync-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
}

.data-sync-export .data-sync-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.data-sync-import-label {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    text-align: center;
}

.data-sync-import-label:hover {
    background: var(--primary);
    color: white;
}

.data-sync-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 10px 0 0;
}

.data-sync-status-msg {
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.data-sync-status-msg.success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

.data-sync-status-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.data-sync-status-msg.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

/* ============================================
   Empty State (shared pattern)
   ============================================ */
.empty-state {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-light);
}

.empty-state-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    animation: emptyBounce 2s ease-in-out infinite;
}

.empty-state p {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-light);
}

@keyframes emptyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   Responsive - New Practical Features
   ============================================ */
@media (max-width: 768px) {
    .packing-comparison-grid {
        grid-template-columns: 1fr;
    }

    .currency-card {
        padding: 20px;
    }

    .currency-result-amount {
        font-size: 2rem;
    }

    .data-sync-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .currency-quick {
        gap: 6px;
    }

    .currency-quick-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
