/* Modern Auth and Dashboard Cards */

.auth-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(2, 155, 155, 0.08);
    padding: 40px;
    border: 1px solid rgba(2, 155, 155, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gotur-primary), #017a7a);
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    text-align: center;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 25px;
}

.auth-form-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.auth-form-control {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border: 1px solid #e0e6e6;
    border-radius: 10px;
    background: #fcfcfc;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
}

.auth-form-control:focus {
    background: #fff;
    border-color: var(--gotur-primary);
    box-shadow: 0 0 0 3px rgba(2, 155, 155, 0.15);
    outline: none;
}

.auth-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #aaa;
    font-size: 16px;
    transition: color 0.3s ease;
}

.auth-form-control.with-icon {
    padding-left: 45px;
}

.auth-form-control:focus + .auth-icon,
.auth-form-group:focus-within .auth-icon {
    color: var(--gotur-primary);
}

.auth-btn {
    width: 100%;
    height: 50px;
    background: var(--gotur-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-btn:hover {
    background: #017a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 155, 155, 0.2);
}

.auth-link {
    color: var(--gotur-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #017a7a;
    text-decoration: underline;
}

/* Dashboard / My Bookings */
.dashboard-container {
    padding: 50px 0;
    background: #f8fbfc;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #f0f0f0;
}

.booking-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-item:hover {
    border-color: rgba(2, 155, 155, 0.3);
    box-shadow: 0 10px 25px rgba(2, 155, 155, 0.08);
    transform: translateY(-2px);
}

.booking-item-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.booking-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.booking-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-badge.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.booking-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.booking-badge.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.booking-info-box {
    flex: 1;
    min-width: 200px;
}

.booking-info-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.booking-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-info-value i {
    color: var(--gotur-primary);
}

.booking-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.booking-action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.booking-action-btn.primary {
    background: var(--gotur-primary);
    color: #fff;
}

.booking-action-btn.primary:hover {
    background: #017a7a;
    color: #fff;
}

.booking-action-btn.outline {
    background: transparent;
    border: 1px solid var(--gotur-primary);
    color: var(--gotur-primary);
}

.booking-action-btn.outline:hover {
    background: rgba(2, 155, 155, 0.05);
}

/* Receipt Styles */
.receipt-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    padding: 40px;
    position: relative;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.receipt-logo img {
    max-height: 60px;
}

.receipt-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gotur-primary);
    margin: 0 0 5px 0;
    text-align: right;
}

.receipt-meta {
    text-align: right;
    color: #666;
    font-size: 14px;
}

.receipt-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.receipt-col {
    flex: 1;
    min-width: 250px;
}

.receipt-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.receipt-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.receipt-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #f5f5f5;
    font-size: 15px;
}

.receipt-details-list li:last-child {
    border-bottom: none;
}

.receipt-label {
    color: #666;
}

.receipt-value {
    font-weight: 600;
    color: #333;
}

.receipt-total-box {
    background: rgba(2, 155, 155, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.receipt-total-label {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.receipt-total-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--gotur-primary);
}

.print-btn-container {
    text-align: center;
    margin-top: 30px;
}

@media print {
    body * {
        visibility: hidden;
    }
    .receipt-wrapper, .receipt-wrapper * {
        visibility: visible;
    }
    .receipt-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        box-shadow: none;
        width: 100%;
    }
    .print-btn-container {
        display: none !important;
    }
    .top-one, .main-header, .site-footer {
        display: none !important;
    }
}

/* Top Bar Auth Links */
.top-one__auth-links {
    font-size: 13px;
    font-weight: 600;
    flex-wrap: wrap;
}

.auth-top-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.auth-top-link:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

.auth-top-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.auth-top-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.auth-top-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-top-btn-solid {
    background: var(--gotur-primary);
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.auth-top-btn-solid:hover {
    background: #fff;
    color: var(--gotur-primary) !important;
    transform: translateY(-1px);
}
