
/* Pages Styles - Separate CSS file for new pages */

/* Custom Icon Buttons */
.btn-icon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #F56476;
    background: transparent;
    color: #F56476;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-icon-outline:hover {
    background: #F56476;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 100, 118, 0.3);
}

.btn-icon-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(245, 100, 118, 0.2);
}

/* RTL Stars */
.stars-rtl {
    direction: rtl;
    display: inline-block;
}

.stars-rtl i {
    margin-left: 2px;
}

/* Salon Gallery */
.salon-gallery-image {
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Map Container */
.map-container {
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-placeholder {
    text-align: center;
}

/* Sidebar Sections */
.sidebar-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Quality Metrics */
.quality-metric .progress {
    height: 8px;
    border-radius: 4px;
}

.quality-metric .text-sm {
    font-size: 0.875rem;
}

/* Account Page Styles */
.account-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Bookings Page Styles */
.bookings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #F56476;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.booking-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.booking-status.confirmed {
    background: #d4edda;
    color: #155724;
}

.booking-status.pending {
    background: #fff3cd;
    color: #856404;
}

.booking-status.completed {
    background: #cce5ff;
    color: #004085;
}

/* Favorites Page Styles */
.favorites-header {
    text-align: center;
    margin-bottom: 2rem;
}

.favorite-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.favorite-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.favorite-content {
    padding: 20px;
}

/* Ratings Page Styles */
.ratings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.salon-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.salon-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 15px;
}

.salon-details h5 {
    margin-bottom: 5px;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star-rating i {
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffc107;
}

/* Notifications Page Styles */
.notifications-header {
    text-align: center;
    margin-bottom: 2rem;
}

.notification-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border-right: 4px solid #F56476;
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.notification-item.unread {
    background: #f8f9fa;
    border-right-color: #007bff;
}

.notification-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #F56476 0%, #ff7a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F56476, #ff7a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #F56476;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

/* FAQ Page Styles */
.faq-hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: right;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #F56476;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #6c757d;
    line-height: 1.6;
    display: none;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Auth Page Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F56476 0%, #ff7a8a 100%);
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.auth-tab.active {
    background: #F56476;
    color: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Privacy Policy Styles */
.privacy-hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.privacy-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-section h3 {
    color: #F56476;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.privacy-section p, .privacy-section li {
    line-height: 1.8;
    color: #555;
}

.privacy-section ul {
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-icon-outline {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .salon-gallery-image {
        height: 250px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .auth-card {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .feature-card,
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb a {
    color: #212529cb;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
    transition: color 0.3s ease;
}

.btn-close {
    margin-right: auto !important;
    margin-left: 1rem !important;
}

.no-hover-effects {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    background-color: white !important;
    color: #333 !important;
}

.no-hover-effects:hover, .no-hover-effects:focus, .no-hover-effects:active {
    border-color: #e9ecef !important;
    box-shadow: none !important;
    background-color: white !important;
    color: #333 !important;
}

.no-hover-button:hover, .no-hover-button:focus, .no-hover-button:active {
    border-color: #e9ecef00 !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0) !important;
}

.accordion-button::after {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.accordion-button:hover, .accordion-button:focus, .accordion-button:active {
    background-color: white !important;
    color: #333 !important;
    box-shadow: 0 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
    color: #333 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

.title {
    color: var(--primary-border) !important;
}

.legal ul, .legal ol {
    padding-right: 2rem !important;
    padding-left: 0 !important;
}

.form-control:focus {
    border-color: #e43f6f3d !important;
    box-shadow: 0 0 0 .25rem rgb(228 63 111 / 15%) !important;
}