/**
 * TripCabinet Attraction Details CSS
 * Additional styles specific to attraction detail pages
 */

/* ══════════════════════════════════════════════════════════════════════════
   ENQUIRY FORM STYLES (shared between sidebar and mobile drawer)
   ══════════════════════════════════════════════════════════════════════════ */

.tc-enq-group {
    margin-bottom: 16px;
}

.tc-enq-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.tc-enq-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tc-enq-input:focus {
    outline: none;
    border-color: var(--theme-color, #4D40CA);
    box-shadow: 0 0 0 3px rgba(77, 64, 202, 0.1);
}

.tc-enq-input::placeholder {
    color: #9ca3af;
}

textarea.tc-enq-input {
    resize: vertical;
    min-height: 80px;
}

.tc-enq-alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.tc-enq-alert--success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.tc-enq-alert--danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.tc-enq-alert--warning {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.tc-enq-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: tc-spin 0.8s linear infinite;
}

@keyframes tc-spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════════════════════
   REVIEW LOGIN BOX
   ══════════════════════════════════════════════════════════════════════════ */

.tc-review-login {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    margin: 30px 0;
}

.tc-review-login__icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color, #4D40CA);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.tc-review-login__text {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
}

.tc-review-login__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--theme-color, #4D40CA);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.tc-review-login__btn:hover {
    background: var(--theme-color-hover, #3d32a0);
    color: #fff;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════════════
   TRUST SIGNALS (sidebar bottom)
   ══════════════════════════════════════════════════════════════════════════ */

.tc-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.tc-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.tc-trust__icon {
    color: var(--theme-color, #4D40CA);
    font-size: 16px;
}

/* ══════════════════════════════════════════════════════════════════════════
   STICKY SIDEBAR
   ══════════════════════════════════════════════════════════════════════════ */

.tour-details-sidebar.sticky-style {
    position: sticky;
    top: 100px;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .tc-trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tc-packages__title {
        font-size: 18px;
    }

    .tc-pkg-card__header {
        padding: 15px;
    }

    .tc-pkg-card__name {
        font-size: 16px;
    }

    .tc-pkg-card__amount {
        font-size: 18px;
    }

    .tc-pkg-book-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tc-how-to-use__title,
    .tc-important-info__title,
    .tc-faqs__title {
        font-size: 18px;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   DRAWER SPINNER (mobile)
   ══════════════════════════════════════════════════════════════════════════ */

.tc-drawer__spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: tc-spin 0.8s linear infinite;
}

.tc-drawer__alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.tc-drawer__alert--success {
    background: #ecfdf5;
    color: #059669;
}

.tc-drawer__alert--danger {
    background: #fef2f2;
    color: #dc2626;
}

.tc-drawer__alert--warning {
    background: #fffbeb;
    color: #d97706;
}

/* ══════════════════════════════════════════════════════════════════════════
   HIGHLIGHTS GRID (for inclusions/exclusions)
   ══════════════════════════════════════════════════════════════════════════ */

.tc-highlights {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
}

.tc-highlights__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tc-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .tc-highlights__grid {
        grid-template-columns: 1fr;
    }
}

.tc-highlights__card {
    padding: 20px;
    border-radius: 12px;
}

.tc-highlights__card--included {
    background: #ecfdf5;
}

.tc-highlights__card--excluded {
    background: #fef2f2;
}

.tc-highlights__card-head {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-highlights__card--included .tc-highlights__card-head {
    color: #059669;
}

.tc-highlights__card--excluded .tc-highlights__card-head {
    color: #dc2626;
}

.tc-highlights__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-highlights__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.tc-highlights__card--included .tc-highlights__list li i {
    color: #10b981;
    margin-top: 3px;
}

.tc-highlights__card--excluded .tc-highlights__list li i {
    color: #ef4444;
    margin-top: 3px;
}
