/* CSS כללי לאתר מיא - טיפולי מים */

/* Reset ו-Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #4a90e2, #7bb3f0);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: -5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.contact-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-btn, .whatsapp-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.phone-btn:hover, .whatsapp-btn:hover {
    background: rgba(255,255,255,0.3);
}

.whatsapp-btn {
    background: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(123, 179, 240, 0.9));
    color: white;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.8);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Treatment Slider Styles */
.treatments-slider-container {
    position: relative;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.treatments-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}

.treatment-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.treatment-slide.active {
    display: block;
    opacity: 1;
}

.treatment-card-large {
    display: flex;
    align-items: center;
    padding: 50px;
    gap: 50px;
    min-height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}

.treatment-image {
    flex: 1;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.treatment-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.treatment-icon-large:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.treatment-content {
    flex: 2;
    padding: 20px;
    color: #2c3e50; /* צבע טקסט כהה על רקע בהיר */
}

.treatment-content h3 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.treatment-content .treatment-description {
    color: #495057;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}


.treatment-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 15px;
    border-left: 4px solid #4a90e2;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.detail-item i {
    color: #4a90e2;
      font-size: 1.2rem;
}

.detail-item span {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-item.price span {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: 700;
}

.select-treatment-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-treatment-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}


/* אלטרנטיבה - אם אתה רוצה רקע כהה עם טקסט בהיר */
.treatment-card-large.dark-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.treatment-card-large.dark-theme .treatment-content {
    color: white;
}

.treatment-card-large.dark-theme .treatment-content h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.treatment-card-large.dark-theme .treatment-content .treatment-description {
    color: rgba(255,255,255,0.9);
}

.treatment-card-large.dark-theme .detail-item span {
    color: white;
}

.treatment-card-large.dark-theme .detail-item i {
    color: #ffd700;
}

.treatment-card-large.dark-theme .detail-item.price span {
    color: #90ee90;
}

.treatment-card-large.dark-theme .treatment-details {
    background: rgba(255,255,255,0.1);
    border-left-color: #ffd700;
}

/* Slider Navigation */
.slider-nav { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    background: rgba(255,255,255,0.95);
    border: 2px solid #4a90e2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #4a90e2;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #4a90e2;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #4a90e2;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a90e2;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
}

.dot:hover {
    background: #4a90e2;
    transform: scale(1.1);
}

/* Calendar Styles */
.calendar-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.calendar-nav:hover {
    background: #357abd;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calendar-day-header {
    background: #4a90e2;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

.calendar-day {
    background: white;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-day:hover {
    background: #f0f8ff;
}

.calendar-day.available {
    background: #e8f5e8;
    color: #2d5a2d;
}

.calendar-day.booked {
    background: #ffe8e8;
    color: #8b0000;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #4a90e2;
    color: white;
}

.calendar-day.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-color.available {
    background: #e8f5e8;
    border: 1px solid #2d5a2d;
}

.legend-color.booked {
    background: #ffe8e8;
    border: 1px solid #8b0000;
}

.legend-color.disabled {
    background: #f5f5f5;
    border: 1px solid #ccc;
}

/* Time Slots */
.time-slots-container {
    max-width: 600px;
    margin: 0 auto;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.time-slot {
    background: white;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.time-slot:hover {
    background: #4a90e2;
    color: white;
}

.time-slot.selected {
    background: #4a90e2;
    color: white;
}

.time-slot.unavailable {
    background: #f5f5f5;
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

/* Booking Steps */
.booking-steps {
    margin-top: 3rem;
}

.booking-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
}

.booking-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-number {
    background: #4a90e2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
}

.back-step-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-right: auto;
    transition: background 0.3s;
}

.back-step-btn:hover {
    background: #5a6268;
}

.selected-treatment-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight: 500;
}

.selected-date-display {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #2c3e50;
}

.selected-date-display i {
    margin-left: 0.5rem;
    color: #4a90e2;
}

/* Forms */
.form-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-control.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Booking Summary */
.booking-summary-mobile {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.booking-summary-mobile h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4a90e2;
    border-top: 2px solid #4a90e2;
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background: #357abd;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-payment {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-payment:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight-item i {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.about-image {
    text-align: center;
}

.about-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-radius: 20px;
    color: #7b1fa2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Treatments Section */
.treatments-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.treatment-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.treatment-card .treatment-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.3s ease;
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #357abd, #1976d2);
}

.treatment-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.treatment-card .treatment-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.treatment-card .treatment-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.treatment-duration {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.treatment-duration i {
    margin-left: 8px;
    color: #4a90e2;
}

.treatment-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.treatment-book-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.treatment-book-btn:hover {
    background: linear-gradient(135deg, #357abd, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    color: white;
    text-decoration: none;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: #1976d2;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item:hover {
    transform: translateX(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #4a90e2;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: #1976d2;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Admin Styles */
.admin-header {
    background: #343a40;
    color: white;
    padding: 1rem 0;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.admin-nav a:hover, .admin-nav a.active {
    background: #495057;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.data-table tr:hover {
    background: #f8f9fa;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-paid {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #4a90e2;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Success Page Styles */
.success-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.success-content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.success-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.appointment-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: right;
}

.appointment-summary h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    gap: 1rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-item i {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.step-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #357abd;
    color: white;
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #1da851;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .treatment-card-large {
        padding: 30px;
        gap: 30px;
        min-height: 350px;
    }
    
    .treatment-icon-large {
        height: 200px;
        width: 200px;
    }
    
    .treatment-content h3 {
        font-size: 1.8rem;
    }
    
    .treatment-content .treatment-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-card .treatment-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .treatment-card-large {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        min-height: auto;
    }
    
    .treatment-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .treatment-icon-large {
        height: 180px;
        width: 180px;
        margin: 0 auto;
    }
    
    .treatment-content {
        padding: 0;
    }
    
    .treatment-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .treatment-content .treatment-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .treatment-details {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
    
    .select-treatment-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-icon i {
        font-size: 6rem !important;
    }
    
    .treatment-icon-large i {
        font-size: 3rem !important;
    }
    
    .about-icon {
        height: 200px;
    }
    
    .about-icon i {
        font-size: 4rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .booking-step {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .treatments-slider-container {
        margin: 0 -15px 30px -15px;
    }
    
    .treatment-card-large {
        padding: 20px 15px;
    }
    
    .treatment-icon-large {
        height: 150px;
        width: 150px;
    }
    
    .treatment-icon-large i {
        font-size: 3rem !important;
    }
    
    .treatment-content h3 {
        font-size: 1.4rem;
    }
    
    .slider-nav {
        display: none; /* Hide navigation arrows on very small screens */
    }
}

/* Animation for slide transitions */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.treatment-slide.active .treatment-content {
    animation: slideIn 0.6s ease-out;
}

.treatment-slide.active .treatment-icon-large {
    animation: slideIn 0.6s ease-out 0.2s both;
}

/* Hebrew Calendar Styles */
.hebrew-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.holiday-indicator {
    background: #ffeaa7;
    color: #d63031;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 2px;
}

.shabbat-indicator {
    background: #a29bfe;
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 2px;
}

/* Message Overlay */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.message-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.message-box.success {
    border-top: 4px solid #28a745;
}

.message-box.error {
    border-top: 4px solid #dc3545;
}

.message-box h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.message-box p {
    margin-bottom: 2rem;
    color: #666;
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .floating-whatsapp,
    .slider-nav,
    .slider-dots {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .treatment-card {
        border: 2px solid #000;
    }
    
    .calendar-day.available {
        background: #fff;
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-icon {
        animation: none;
    }
    
    .treatment-slide.active .treatment-content,
    .treatment-slide.active .treatment-icon-large {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.calendar-day:focus,
.time-slot:focus,
.slider-btn:focus,
.dot:focus {
    outline: 3px solid #4a90e2;
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4a90e2;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #e0e0e0;
        --card-bg: #2d2d2d;
        --border-color: #404040;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .treatment-card,
    .booking-step,
    .form-container,
    .calendar-container {
        background: var(--card-bg);
        border-color: var(--border-color);
    }
    
    .form-control {
        background: var(--card-bg);
        color: var(--text-color);
        border-color: var(--border-color);
    }
}



/* אפשרות 2: רקע כהה עם טקסט בהיר */
.treatment-slide,
.treatment-card-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.treatment-slide .treatment-content,
.treatment-card-large .treatment-content {
    color: white !important;
}

.treatment-slide .treatment-content h3,
.treatment-card-large .treatment-content h3 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.treatment-slide .treatment-content .treatment-description,
.treatment-card-large .treatment-content .treatment-description {
    color: rgba(255,255,255,0.9) !important;
}

.treatment-slide .detail-item span,
.treatment-card-large .detail-item span {
    color: white !important;
}

.treatment-slide .detail-item i,
.treatment-card-large .detail-item i {
    color: #ffd700 !important;
}

.treatment-slide .detail-item.price span,
.treatment-card-large .detail-item.price span {
    color: #90ee90 !important;
}

.treatment-slide .treatment-details,
.treatment-card-large .treatment-details {
    background: rgba(255,255,255,0.1) !important;
    border-left-color: #ffd700 !important;
}
/* תיקון האייקונים - יהיו כהים וברורים */
.treatment-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    border-radius: 20px;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.treatment-icon-large i {
    color: white !important;
    font-size: 4rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.treatment-icon-large:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #357abd 0%, #1976d2 100%) !important;
}

.treatment-icon-large:hover i {
    color: white !important;
}

/* תיקון האייקונים הקטנים בפרטי הטיפול */
.treatment-slide .detail-item i,
.treatment-card-large .detail-item i {
    color: #4a90e2 !important;
    font-size: 1.2rem !important;
    text-shadow: none !important;
}

/* אם אתה משתמש ברקע הכהה, תשתמש בזה במקום */
.treatment-card-large.dark-theme .detail-item i {
    color: #ffd700 !important;
}

/* ווידוא שהאייקון הגדול תמיד נראה */
.treatment-image .treatment-icon-large {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
    color: white !important;
}

.treatment-image .treatment-icon-large i {
    color: white !important;
    font-size: 4rem !important;
}

/* הוספה בתחילת הקובץ - תיקון לאייקוני Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ווידוא שהאייקונים מוצגים כראוי */
.fas, .fab, .far, .fal, .fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

