/* style.css - طراحی مدرن و شیک */

/* فونت‌های فارسی */
@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* متغیرهای رنگی */
:root {
    --primary: #2a9d8f;
    --primary-dark: #21867a;
    --primary-light: #40b4a6;
    --secondary: #264653;
    --accent: #e9c46a;
    --white: #ffffff;
    --cream: #faf9f6;
    --cream-light: #f5f4f0;
    --light-blue: #e8f4f8;
    --light-blue-2: #d4ecf5;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-muted: #adb5bd;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 50px rgba(42, 157, 143, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تنظیمات پایه */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
    direction: rtl;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--cream);
    overflow-x: hidden;
}

/* هدر و نوبار */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 1.6rem;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* هیرو سکشن */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 50%, var(--cream-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary);
    line-height: 1.3;
    animation: fadeInUp 1s ease;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-outline-custom {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    margin-right: 100px;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 30px;
    z-index: -1;
    transition: var(--transition);
}

.hero-image:hover::before {
    top: 30px;
    right: 30px;
}

/* درباره دکتر */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--cream), transparent);
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(42, 157, 143, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.about-img:hover::after {
    opacity: 1;
}

.section-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--light-blue);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-item:hover i {
    color: white;
}

/* خدمات */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light-blue) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.05rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(42, 157, 143, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* آمار و ارقام */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a3140 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* نظرات بیماران */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.05rem;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 5px;
    right: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-author-info h5 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1rem;
}

.rating {
    color: var(--accent);
    font-size: 0.9rem;
}

/* تماس با ما */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--cream) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.05rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-2) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.working-hours {
    background: var(--light-blue);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 30px;
}

.working-hours h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* فرم */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.form-card:hover {
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--cream-light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
    background: white;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* نقشه */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 50px;
}

/* فوتر */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--primary);
    animation: heartbeat 2s infinite;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer h4 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--primary);
}

/* دکمه شناور */
.appointment-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.4);
    z-index: 999;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.appointment-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: 0 15px 40px rgba(42, 157, 143, 0.5);
}

/* اسکرول بار */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ریسپانسیو */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section, .services-section, .testimonials-section, .contact-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contact-info-card, .form-card {
        padding: 30px;
    }
    
    .appointment-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .appointment-btn:hover {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .btn-primary-custom, .btn-outline-custom {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* انیمیشن‌های اضافی */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* استایل‌های Bootstrap ریسپانسیو */
@media (min-width: 992px) {
    .navbar .container {
        max-width: 1300px;
    }
}
/* تایم‌تیبل رزرو نوبت */
.time-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 15px 10px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

/* وقت‌های فعال - سبز شفاف */
.time-slot.available {
    background: rgba(42, 157, 143, 0.15);
    color: #2a9d8f;
    border-color: rgba(42, 157, 143, 0.3);
}

.time-slot.available:hover {
    background: rgba(42, 157, 143, 0.3);
    transform: translateY(-2px);
}

.time-slot.available.selected {
    background: #2a9d8f;
    color: white;
    border-color: #2a9d8f;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.4);
}

/* وقت‌های پر - قرمز شفاف */
.time-slot.booked {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.booked:hover {
    background: rgba(220, 53, 69, 0.15);
}

/* وقت‌های غیرفعال - خاکستری */
.time-slot.disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ریسپانسیو تایم‌تیبل */
@media (max-width: 576px) {
    .time-table {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* اعلان مستطیلی */
.custom-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification-success {
    background: linear-gradient(135deg, #2a9d8f 0%, #21867a 100%);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.custom-notification button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}