* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.main-container{
    display: flex;
    gap: 20px;
}
.right-container{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: 0;
    min-height: 500px;
    min-width: 250px;
    border: 2px solid #000000;
}
/* Navigation Menu Styles */
.navbar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    margin-bottom: 20px;
    border: 2px solid #000000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
#login1{
    position: absolute;
    right: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    border-right: 2px solid rgb(208, 208, 208);
    padding-right: 18px;
}

.logo {
    width: 40px;
    height: 40px;
    background-color: #f4662f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-weight: bold;
}

.navbar-nav-custom {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}


.nav-item {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f4662f;
    background-color: rgba(244, 102, 47, 0.1);
}

.nav-link.active {
    color: #f4662f;
    font-weight: bold;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #f4662f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: 0;
    min-height: 500px;
    border: 2px solid #000000;
}

.progress-bar-custom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar-custom::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.active .step-number {
    background-color: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.active .step-label {
    color: #ffffff;
    font-weight: bold;
}

.completed .step-number {
    background-color: #f4662f;
    color: #ffffff;
}
.completed .step-label{
    color: white;
}

.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.active-page {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    margin: 6px auto;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.service-table th {
    background-color: #f8f8f8;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

.service-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.time-slots {
    margin-top: 20px;
}

.days-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-bottom: 10px;
}

.day-header {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.time-slot {
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    margin: 2px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.time-slot.selected {
    background-color: #4CAF50;
    color: white;
    transform: scale(1.05);
}

.booking-summary {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.booking-details {
    line-height: 1.8;
}

.price {
    font-weight: bold;
    color: #4CAF50;
    font-size: 18px;
    margin-top: 5px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f4662f;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.checkbox-group input {
    margin-right: 10px;
}

.payment-options {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-option:hover {
    border-color: #f4662f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 102, 47, 0.1);
}

.payment-option.selected {
    border-color: #f4662f;
    background-color: #fff9f7;
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    cursor: pointer;
    font-weight: bold;
    color: #333;
    margin-left: 15px;
    flex-grow: 1;
}

.payment-option::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-option.selected::before {
    border-color: #f4662f;
    background-color: #f4662f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.paypal-logo {
    background: linear-gradient(45deg, #003087, #009cde);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
}

.confirmation-message {
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back {
    background-color: #f0f0f0;
    color: #333;
}

.btn-back:hover {
    background-color: #e0e0e0;
    transform: translateX(-5px);
}

.btn-next, .btn-start-over {
    background-color: #4CAF50;
    color: white;
    transition: all 0.3s ease;
}

.btn-next:hover, .btn-start-over:hover {
    background-color: #45a049;
    transform: translateX(5px);
}

.btn-start-over {
    display: block;
    margin: 30px auto 0;
    background-color: #f4662f;
}

.btn-start-over:hover {
    background-color: #e55a25;
}

/* Week days styles */
.bookly-col-label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #f4662f;
}

.bookly-week-days input[type="checkbox"] {
    display: none;
}

.bookly-week-days input[type="checkbox"] + label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.bookly-week-days input[type="checkbox"] + label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #f4662f;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #f4662f;
}

.bookly-week-days input[type="checkbox"]:checked + label::before {
    background: #f4662f;
    color: white;
    content: '✓';
    transform: scale(1.1);
}

.bookly-week-days input[type="checkbox"] + label:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(244, 102, 47, 0.3);
}

/* Flatpickr Calendar Positioning Fix */
.flatpickr-calendar {
    position: absolute !important;
    max-width: 300px;
    margin-top: 5px;
    z-index: 9999 !important;
}

.flatpickr-calendar.open {
    z-index: 9999;
}

.flatpickr-calendar.animate.open {
    animation: none;
}

.bookly-available-date {
    position: relative;
}

@media (min-width: 768px) {
    .payment-options {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .payment-option {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .payment-option label {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    body{
        overflow: auto;
    }

    .right-container{
        display: none;
    }
    .days-header, .time-slots-grid {
        grid-template-columns: 1fr;
    }
    #login1{
        position: relative;
        left: 3px;
    }
    
    .navbar-nav-custom {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-nav-custom.active {
        display: flex;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
}


/* Page Content Styles */
.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f4662f;
}

.page-header h1 {
    color: #f4662f;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #f4662f;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #f4662f;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #333;
    margin-bottom: 10px;
}

.team-member .role {
    color: #f4662f;
    font-weight: bold;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #f4662f;
}

.feature-item i {
    font-size: 2rem;
    color: #f4662f;
    margin-bottom: 10px;
    display: block;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f4662f;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    border-top: 1px solid #ddd;
}

/* contact info */
.contact-info {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f4662f;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #f4662f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-style: normal;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-form-container {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f4662f;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f4662f;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #f4662f;
    box-shadow: 0 0 0 3px rgba(244, 102, 47, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #f4662f;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 102, 47, 0.3);
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f4662f, #ff8c5a);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.business-hours {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 15px;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #333;
}

.hours-table td:last-child {
    color: #666;
}

.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, #f4662f);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.emergency-contact h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}








/* update site */

/* class style */
.px254{
    width: 254px;
}
.gap15px{
    gap: 11px;
}

    #overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      z-index: 9;
    }

     /* مودال فرم */
    #loginModal1 {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      z-index: 10;
      width: 350px;
    }

    #loginModal1 form {
      display: flex;
      flex-direction: column;
    }

    #loginModal1  input {
      margin: 8px 0 15px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    #loginModal1 button {
      background-color: #f4662f;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 6px;
      cursor: pointer;
    }

    /* دکمه بستن */
    #closeModal {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 22px;
      cursor: pointer;
      color: #888;
      padding: 0px 7px;
      border-radius: 5px;
    }
    #closeModal:hover{
       color: #f4662f;
       background-color: rgba(244, 102, 47, 0.1);
    }

    .forgotpass{
        text-decoration: none;
        font-size: 12px;
        margin-top: 7px;
    }
        .forgotpass:hover{
            color: #7dd5fa;
        }

        .nav-ll{
                color: #f4662f;
                 background-color: rgba(244, 102, 47, 0.1);
        }
        .nav-ll:hover{
                color: #f85312;
                 background-color: rgba(237, 83, 22, 0.2);

        }

#togglePassword{
    position: absolute;
    right: 45px;
    bottom: 125px;
    cursor: pointer;
}
#togglePassword:hover{
    color: #464646;
}
