@font-face {
    font-family: 'Atyan Dsegh';
    src: url('../fonts/Atyan%20Dsegh%20regular.ttf');
}
header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-nav-row {
    display: none;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #E5E5E5;
    margin-top: 10px;
}

header.scrolled .header-nav-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-nav-link {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
    color: #2E3E25;
    text-shadow: 0px 4px 1.8px #8D9991;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.header-nav-link:hover {
    color: #3A523A;
}

.header-nav-link.active {
    text-decoration: underline;
}



/* Container responsive breakpoints */
@media (min-width: 576px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-smart {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.logo-note {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    display: inline-block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-btn {
    background: #C9DBC2;
    color: #4A634A;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

.language-btn:hover {
    background: #B8CEAF;
    color: #4A634A;
}

.auth-link {
    color: #4A634A;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #3A523A;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    color: #4A634A;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

.user-dropdown-toggle:hover {
    color: #3A523A;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.user-dropdown:hover .user-dropdown-menu {
    display: block;
}

.user-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #4A634A;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.user-dropdown-item:hover {
    background: #F5F5F5;
}

.user-dropdown-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #4A634A;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2E3E25;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 60px 30px 30px;
    overflow-y: auto;
    z-index: 10000;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mobile-menu-close span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #2E3E25;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 20px;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
    color: #2E3E25;
    text-shadow: 0px 4px 1.8px #8D9991;
    padding: 12px 0;
    transition: color 0.3s;
    border-bottom: 1px solid #E5E5E5;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #3A523A;
}

.mobile-nav-link.active {
    text-decoration: underline;
}

/* Account Settings Styles */
.account-settings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.settings-form {
    background: #8F8F8F;
    border-radius: 0;
    padding: 40px 20px;
    color: #2E3E25;
}

.profile-image-placeholder {
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 12px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-image-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-field {
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    width: 100%;
    font-size: 16px;
    color: #2E3E25;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
}

.form-field::placeholder {
    color: #efd6d6;
}

.form-select {
    background: transparent;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    width: 100%;
    font-size: 16px;
    color: #2E3E25;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232E3E25' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.toggle-label {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: #666;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: #4A634A;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
}

.toggle-switch.active::after {
    transform: translateX(24px);
}

.expandable-section {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #2E3E25;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.expandable-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.expandable-section .plus-icon {
    font-size: 24px;
    color: #2E3E25;
    font-weight: 300;
}

.file-input-hidden {
    display: none;
}

.file-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.file-upload-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
}

.legal-entity-fields {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.legal-entity-fields.show {
    display: block;
}

.submit-btn {
    background: #FFFFFF;
    color: #2E3E25;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background: #F5F5F5;
}

.submit-btn[href] {
    text-decoration: none;
    display: block;
    text-align: center;
}

.image-upload-area {
    display: none;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-upload-area.show {
    display: block;
}

.settings-alert-success {
    background: #4A634A;
    color: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-placeholder-icon {
    color: #9CA3AF;
    font-size: 48px;
}

.settings-small-text {
    color: #5b626f;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav-row {
        display: none !important;
    }

    header.scrolled .header-nav-row {
        display: none !important;
    }

    .home-nav {
        display: none !important;
    }

    /* .home-search-container {
        display: none !important;
    } */
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo-smart, .logo-note {
        font-size: 22px;
    }

    .header-right {
        gap: 12px;
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }

    header.scrolled {
        padding: 10px 0;
    }

    header.scrolled .header-nav-row {
        display: none !important;
    }

    .header-nav-link {
        font-size: 16px;
    }

    .language-btn, .auth-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .mobile-menu-content {
        width: 85%;
    }
}

.logo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.categories img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Hero Section with Blur/Glass Effect */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
}

/* Glass morphism effect overlay */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 219, 194, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 0 15px;
    color: #4A634A;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A634A;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.1);
}

.search-btn svg {
    width: 24px;
    height: 24px;
}

/* Alternative: Pure CSS blur without backdrop-filter (for older browsers) */
@supports not (backdrop-filter: blur(10px)) {
    .hero-background {
        filter: blur(15px) brightness(0.6);
    }
    
    .hero-background::after {
        background: rgba(201, 219, 194, 0.5);
    }
    
    .search-container {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* Body styles for home page */
body {
    margin: 0;
    padding: 0;
}

/* Home Page Styles */
.home-page {
    position: relative;
}

.home-background-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.home-background-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-background-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.home-background-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-background-swiper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.home-content-overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.home-nav .nav-link {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
    color: #2E3E25;
    text-shadow: 0px 4px 1.8px #8D9991;

}

.home-nav .nav-link:hover {
    color: #3A523A;
}

.home-nav .nav-link.active {
    color: #4A634A;
}

.home-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4A634A;
}

.home-search-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 700px;
    margin: 100px auto 0;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    padding: 0 15px;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.home-search-input::placeholder {
    color: #9CA3AF;
}

.home-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A634A;
    transition: transform 0.2s;
}

.home-search-btn:hover {
    transform: scale(1.1);
}

.home-search-btn svg {
    width: 28px;
    height: 28px;
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(20px)) {
    .home-background {
        filter: blur(20px) brightness(0.75);
    }

    .home-search-container {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Categories Section */
.categories-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: #bacaaf;
    

}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #FFFFFF;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.category-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-label {
    padding: 12px 16px;
    background: #d9d9d9;
    color: #4A634A;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    color: #4A634A;
    font-size: 18px;
    padding: 40px;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .home-nav {
        gap: 20px;
        padding: 20px 15px;
        margin-top: 60px;
    }

    .home-nav .nav-link {
        font-size: 16px;
    }

    .home-search-container {
        margin-top: 60px;
        padding: 15px 25px;
        max-width: calc(100% - 40px);
    }

    .home-search-input {
        font-size: 16px;
    }

    .categories-section {
        padding: 40px 15px;
    }

    .categories-grid {
        gap: 16px;
    }

    .category-image-wrapper {
        height: 150px;
    }

    .settings-form {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        
    }
    .category-image-wrapper {
        height: 72px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-image-wrapper {
        height: 72px;
    }
}

/* Salons Section */
.salons-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: #FFFFFF;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #4A634A;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.salons-swiper {
    position: relative;
    padding-bottom: 50px;
}

.salon-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

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

.salon-image-wrapper {
    width: 100%;
    height:  440px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
    /* Brooks & Brooks _  Award-Winning Covent Garden, London Hair Salon 1 */

}

.salon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.salon-card:hover .salon-image {
    transform: scale(1.05);
}

.salon-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.salon-name {
    font-size: 18px;
    font-weight: 700;
    color: #4A634A;
    margin: 0 0 8px 0;
    font-family: 'Arial', sans-serif;
}

.salon-address {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.no-salons {
    text-align: center;
    color: #4A634A;
    font-size: 18px;
    padding: 40px;
    font-family: 'Arial', sans-serif;
}

/* Swiper Navigation for Salons */
.salons-swiper .swiper-button-next,
.salons-swiper .swiper-button-prev {
    color: #4A634A;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.salons-swiper .swiper-button-next:after,
.salons-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.salons-swiper .swiper-button-next:hover,
.salons-swiper .swiper-button-prev:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pagination removed as requested */

@media (max-width: 768px) {
    .salons-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .salon-image-wrapper {
        height: 200px;
    }

    .salon-name {
        font-size: 16px;
    }

    .salon-address {
        font-size: 12px;
    }
}

/* Specialists Section */
.specialists-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: #bacaaf;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-link {
    color: #4A634A;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    padding: 8px 16px;
    border: 2px solid #4A634A;
    border-radius: 8px;
}

.view-all-link:hover {
    background: #4A634A;
    color: #FFFFFF;
}

.specialists-swiper {
    position: relative;
    padding-bottom: 50px;
}

.specialist-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

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

.specialist-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.specialist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.specialist-card:hover .specialist-image {
    transform: scale(1.05);
}

.specialist-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.specialist-name {
    font-size: 18px;
    font-weight: 700;
    color: #4A634A;
    margin: 0 0 8px 0;
    font-family: 'Arial', sans-serif;
}

.specialist-position {
    font-size: 14px;
    color: #4A634A;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: 'Arial', sans-serif;
}

.specialist-address {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.no-specialists {
    grid-column: 1 / -1;
    text-align: center;
    color: #4A634A;
    font-size: 18px;
    padding: 40px;
    font-family: 'Arial', sans-serif;
}

/* Swiper Navigation for Specialists */
.specialists-swiper .swiper-button-next,
.specialists-swiper .swiper-button-prev {
    color: #4A634A;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.specialists-swiper .swiper-button-next:after,
.specialists-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.specialists-swiper .swiper-button-next:hover,
.specialists-swiper .swiper-button-prev:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .specialists-section {
        padding: 40px 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .view-all-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .specialist-image-wrapper {
        height: 250px;
    }

    .specialist-name {
        font-size: 16px;
    }

    .specialist-position {
        font-size: 13px;
    }

    .specialist-address {
        font-size: 12px;
    }
}

/* Specialists Page Section */
.specialists-page-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: #bacaaf;
}
.specialists-page .specialists-page-section {
    background: #fff;
}

/* Specialists Filters */
.specialists-filters {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.filter-select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.filter-select:hover {
    border-color: #4A634A;
}

.filter-select:focus {
    outline: none;
    border-color: #4A634A;
    box-shadow: 0 0 0 3px rgba(74, 99, 74, 0.1);
}

.clear-filters-btn {
    padding: 10px 20px;
    background: #4A634A;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    height: fit-content;
}

.clear-filters-btn:hover {
    background: #3a523a;
    transform: translateY(-1px);
}

.clear-filters-btn:active {
    transform: translateY(0);
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.specialist-page-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.specialist-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.specialist-page-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.specialist-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.specialist-page-card:hover .specialist-page-image {
    transform: scale(1.05);
}

.specialist-page-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specialist-page-name {
    font-size: 16px;
    font-weight: 700;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.specialist-page-address {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.specialist-page-phone {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: #4A634A;
    color: #FFFFFF;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Arial', sans-serif;
}

.load-more-btn:hover {
    background: #3a503a;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1024px) {
    .specialists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .specialists-page-section {
        padding: 40px 15px;
    }

    .specialists-filters {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .filter-group {
        min-width: 100%;
    }

    .clear-filters-btn {
        width: 100%;
    }

    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .specialist-page-image-wrapper {
        height: 250px;
    }

    .specialist-page-name {
        font-size: 14px;
    }

    .specialist-page-address,
    .specialist-page-phone {
        font-size: 12px;
    }
}

/* Halls Page Styles */
.halls-page .specialists-page-section {
    background: #fff;
}

.halls-map-container {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    height: calc(100vh - 300px);
    min-height: 600px;
}

.halls-list-container {
    flex: 0 0 40%;
    overflow-y: auto;
    padding-right: 10px;
}

.halls-list-container::-webkit-scrollbar {
    width: 8px;
}

.halls-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.halls-list-container::-webkit-scrollbar-thumb {
    background: #4A634A;
    border-radius: 4px;
}

.halls-list-container::-webkit-scrollbar-thumb:hover {
    background: #3a523a;
}

.halls-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hall-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.hall-card.active {
    border-color: #4A634A;
    box-shadow: 0 4px 16px rgba(74, 99, 74, 0.3);
}

.hall-card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.hall-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hall-card:hover .hall-card-image {
    transform: scale(1.05);
}

.hall-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hall-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.hall-card-address {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.hall-card-photos {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.hall-card-photo-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.map-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.halls-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hall-map-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    padding: 20px;
    overflow-y: auto;
    z-index: 10;
}

.hall-map-cards::-webkit-scrollbar {
    width: 6px;
}

.hall-map-cards::-webkit-scrollbar-track {
    background: transparent;
}

.hall-map-cards::-webkit-scrollbar-thumb {
    background: rgba(74, 99, 74, 0.3);
    border-radius: 3px;
}

.hall-map-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    pointer-events: auto;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hall-map-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hall-map-card.main-card {
    background: #4A634A;
    color: #fff;
}

.hall-map-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hall-map-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-map-card-content {
    padding: 16px;
}

.hall-map-card-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Arial', sans-serif;
}

.hall-map-card.main-card .hall-map-card-name {
    color: #fff;
}

.hall-map-card-address,
.hall-map-card-phone {
    font-size: 14px;
    margin: 4px 0;
    font-family: 'Arial', sans-serif;
}

.hall-map-card.main-card .hall-map-card-address,
.hall-map-card.main-card .hall-map-card-phone {
    color: rgba(255, 255, 255, 0.9);
}

.hall-map-card-description {
    font-size: 13px;
    margin: 8px 0;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

.hall-map-card.main-card .hall-map-card-description {
    color: rgba(255, 255, 255, 0.85);
}

.hall-map-card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #fff;
    color: #4A634A;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.hall-map-card.main-card .hall-map-card-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hall-map-card-link:hover {
    background: #4A634A;
    color: #fff;
}

.hall-map-card.main-card .hall-map-card-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hall-detail-photos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px 20px 20px;
}

.hall-detail-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-info-window {
    padding: 10px;
    min-width: 200px;
}

.map-info-window h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.map-info-window p {
    margin: 4px 0;
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.map-info-link {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #4A634A;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.map-info-link:hover {
    background: #3a523a;
}

.hall-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hall-detail-card {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hall-detail-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4A634A;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.hall-detail-close:hover {
    background: #3a523a;
}

.hall-detail-content {
    padding: 30px;
}

.no-halls {
    grid-column: 1 / -1;
    text-align: center;
    color: #4A634A;
    font-size: 18px;
    padding: 40px;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 1024px) {
    .halls-map-container {
        flex-direction: column;
        height: auto;
    }

    .halls-list-container {
        flex: 1;
        max-height: 500px;
    }

    .map-container {
        flex: 1;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .halls-page-section {
        padding: 40px 15px;
    }

    .halls-map-container {
        gap: 15px;
    }

    .halls-list-container {
        max-height: 400px;
    }

    .map-container {
        min-height: 400px;
    }

    .hall-card-image-wrapper {
        height: 180px;
    }

    .hall-card-name {
        font-size: 16px;
    }

    .hall-card-address {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .specialists-filters {
        padding: 12px;
    }

    .filter-label {
        font-size: 12px;
    }

    .filter-select {
        padding: 8px 12px;
        font-size: 13px;
    }

    .clear-filters-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
    }
}

/* Secondary Items Section (Full Width Promotions) */
.secondary-items-section {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.secondary-items-swiper {
    width: 100%;
    height: auto;
}

.secondary-items-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

.secondary-item-link {
    display: block;
    width: 100%;
    height: 100%;
}

.secondary-item-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .secondary-item-image {
        min-height: 300px;
        object-fit: cover;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map {
    width: 100%;
    height: 500px;
    background: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.contact-map .home-map,
.contact-map .map-placeholder-fallback {
    flex: 1;
    min-height: 0;
}
.contact-map .map-address-bar {
    flex-shrink: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: #666;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}
.map-content .map-address-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}
.map-content .map-address {
    font-size: 20px;
    font-weight: 600;
    color: #4A634A;
}
.map-address-bar {
    width: 100%;
    padding: 12px 16px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}
.map-address-bar-label {
    color: #666;
    margin-right: 8px;
}
.map-address-bar-value {
    font-weight: 600;
    color: #2E3E25;
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 0px 40px 40px;
    border-radius: 8px;
}

.contact-title {
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 96px;
    color: #2E3E25;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #878b7d;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    outline: none;
    transition: background 0.3s;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #FFFFFF;
    opacity: 0.9;
}

.contact-input:focus,
.contact-textarea:focus {
    background: #B8CEAF;
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    padding: 14px 30px;
    background: #434a34;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    width: 150px;
}

.contact-submit:hover {
    background: #5A6B4A;
}

.contact-form .alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form .alert-success {
    background: #C9DBC2;
    color: #4A634A;
    border: 1px solid #4A634A;
}

.footer-logo-image,
.logo-image {
    width: 100px;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 400px;
    }
    .home-background-wrapper {
        height: 290px;
    }
    .categories-section {
        padding: 20px 20px;
    }
    .category-image-wrapper {
        height: 160px;
    }
    .category-label {
        padding: 6px 10px;
    }
    .salons-section {
        padding: 20px 20px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .salon-image-wrapper {
        height: 340px;
    }
    .salon-name {
        font-size: 16px;
    }
    .salon-address {
        font-size: 12px;
    }
    .salon-info {
        padding: 10px;
    }
    .salons-swiper {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-map {
        height: 300px;
    }
}

/* Admin Contact Messages Styles */
.unread-message {
    background-color: #FFF3CD !important;
    font-weight: 600;
}

.unread-message:hover {
    background-color: #FFE69C !important;
}

.message-content {
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 16px;
}

/* Footer Styles */
.main-footer {
    background: #F5F5F5;
    padding: 60px 0px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #434a34;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #2E3E25;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.footer-content-item {
    background: #FFFFFF;
    border-radius: 8px;
    aspect-ratio: 1;
    min-height: 120px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-text {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #878b7d;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    outline: none;
    transition: background 0.3s;
}

.subscribe-input::placeholder {
    color: #FFFFFF;
    opacity: 0.9;
}

.subscribe-input:focus {
    background: #B8CEAF;
}

.subscribe-btn {
    padding: 14px 30px;
    background: #434a34;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.subscribe-btn:hover {
    background: #5A6B4A;
}

.footer-subscribe .alert {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.footer-subscribe .alert-success {
    background: #C9DBC2;
    color: #4A634A;
    border: 1px solid #4A634A;
}

.footer-subscribe .alert-danger {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #721C24;
}

.footer-bottom {
    background: #878b7d;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 0;
    }

    .footer-container {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-content-item {
        min-height: 100px;
    }
}

/* Banner Section Styles */
.banner-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    background: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.banner-swiper {
    width: 100%;
    height: 100px;
}

.banner-swiper .swiper-slide {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.banner-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100px;
    min-height: 100px;
    background-color: #F5F5F5;
}

/* Add padding to body to prevent content from being hidden behind fixed banner */
body {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .banner-section {
        height: 80px;
    }

    .banner-swiper {
        height: 80px;
    }

    .banner-swiper .swiper-slide {
        height: 80px;
    }

    .banner-image {
        height: 80px;
    }

    body {
        padding-bottom: 80px;
    }
    .category-image-wrapper {
        height: 98px;
    }
}

@media (max-width: 590px) {
    .category-label {
        padding: 2px 4px;
        font-size: 10px;
    }
}


@media (max-width: 475px) {
    header {
        padding: 0px 5px;
    }
    header.scrolled {
        padding: 0px 0;
    }
    .header-container {
        padding: auto;
    }
    .logo-image {
        width: 60px;
    }
    .header-right {
        margin-top: 0;
        gap: 3px;
    }
    .language-btn, .auth-link {
        font-size: 12px;
        padding: 3px 9px;
    }
    .mobile-menu-toggle{
        width: 24px;
        height: 17px;
        gap: 0px;
    }
    .home-background-wrapper {
        height: 190px;
    }
    .home-search-container {
        margin-top: 45px;
        padding: 7px 15px;
    }
    .home-search-input {
        font-size: 13px;
    }
    .home-search-btn svg {
        width: 21px;
        height: 21px;
    }
    .category-image-wrapper {
        height: 72px;
    }
}

@media (max-width: 590px) {
    .category-label {
        padding: 2px 2px;
        font-size: 8px;
    }
}

/* Salon Page Styles */
.salon-header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.salon-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.salon-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #E5E5E5;
    margin-top: 0px;
}

.salon-nav-link {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Atyan Dsegh';
    font-style: normal;
    font-weight: 400;
    color: #2E3E25;
    text-shadow: 0px 4px 1.8px #8D9991;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
    cursor: pointer;
}

.salon-nav-link:hover,
.salon-nav-link.active {
    color: #3A523A;
}

.salon-nav-link.active {
    text-decoration: underline;
}

.salon-banner-section {
    width: 100%;
    height: 300px;
    margin-top: 0;
    overflow: hidden;
}

.salon-banner-swiper {
    width: 100%;
    height: 100%;
}

.salon-banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.salon-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.salon-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.salon-services-section,
.salon-photos-section,
.salon-specialists-section,
.salon-about-section,
.salon-contact-section {
    padding: 60px 20px;
    background: #FFFFFF;
}

.salon-services-section {
    background: #bacaaf;
}

.salon-specialists-section {
    background: #bacaaf;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: block;
    color: inherit;
}

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

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-label {
    padding: 12px 16px;
    background: #d9d9d9;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.service-name {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 4px 0;
    color: #4A634A;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 4px;
}

.service-duration,
.service-price {
    font-size: 12px;
    font-weight: 600;
    color: #4A634A;
    font-family: 'Arial', sans-serif;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-item:hover .photo-image {
    transform: scale(1.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    /* min-height: 500px; */
    margin-top: 40px;
}

.about-info-left {
    background: #FFFFFF;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.info-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 40px 0;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-description {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-line {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    padding: 8px 0;
    font-family: 'Arial', sans-serif;
    text-decoration: underline;
    text-decoration-color: #0066CC;
    text-underline-offset: 4px;
}

.about-info-right {
    background: #4A4A4A;
    padding: 60px 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.info-photo-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: calc(33.333% - 14px);
}

.info-photo-frame {
    width: 100%;
    aspect-ratio: 4/3;
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
}

.info-photo-text {
    font-size: 14px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #2E3E25;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.about-location {
    font-size: 16px;
    line-height: 1.8;
    color: #2E3E25;
    font-family: 'Arial', sans-serif;
}

.about-location p {
    margin: 8px 0;
}

.contact-wrapper {
    /* max-width: 800px; */
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    margin-top: 40px;
    min-height: 600px;
}

.contact-map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: #F5F5F5;
    position: relative;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
    display: block;
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0E0E0;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.contact-form-container {
    background: #FFFFFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field-large {
    flex: 1;
}

.contact-form-label {
    font-size: 16px;
    font-weight: 600;
    color: #2E3E25;
    font-family: 'Arial', sans-serif;
}

.contact-form-input,
.contact-form-textarea {
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #2E3E25;
    background: #F9F9F9;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #4A634A;
    background: #FFFFFF;
}

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

.contact-form-submit {
    padding: 14px 32px;
    background: #4A634A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.contact-form-submit:hover {
    background: #3A523A;
}

.contact-form-submit:active {
    transform: scale(0.98);
}

.contact-form-success {
    padding: 16px;
    background: #D4EDDA;
    color: #155724;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.contact-form-errors {
    padding: 16px;
    background: #F8D7DA;
    color: #721C24;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.contact-form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.contact-info-blocks {
    background: #FFFFFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.contact-info-block {
    background: #E8E8E8;
    border-radius: 12px;
    padding: 24px;
}

.contact-info-block-small {
    width: 60%;
    align-self: flex-start;
}

.contact-info-block-medium {
    width: 75%;
    align-self: flex-start;
}

.contact-info-block-large {
    width: 100%;
    flex: 1;
    min-height: 200px;
}

.contact-block-title {
    font-size: 18px;
    font-weight: 600;
    color: #2E3E25;
    margin: 0 0 12px 0;
    font-family: 'Arial', sans-serif;
}

.contact-block-content {
    font-size: 16px;
    line-height: 1.6;
    color: #2E3E25;
    font-family: 'Arial', sans-serif;
    display: block;
}

.contact-block-content a {
    color: #4A634A;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-block-content a:hover {
    color: #3A523A;
    text-decoration: underline;
}

.contact-link {
    display: block;
    margin-bottom: 16px;
    color: #4A634A;
    text-decoration: none;
    word-break: break-all;
}

.contact-link:hover {
    color: #3A523A;
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.social-link-contact {
    padding: 12px 20px;
    background: #4A634A;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    text-align: center;
    display: block;
}

.social-link-contact:hover {
    background: #3A523A;
    color: #FFFFFF;
}

.contact-info {
    font-size: 16px;
    line-height: 1.8;
    color: #2E3E25;
    font-family: 'Arial', sans-serif;
}

.contact-info p {
    margin: 12px 0;
}

.contact-info a {
    color: #4A634A;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #3A523A;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 20px;
    background: #4A634A;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.social-link:hover {
    background: #3A523A;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .info-title {
        font-size: 25px;
        margin: 0 0 10px 0;
    }
    .info-line,.info-photo-text {
        font-size: 14px;
    }
    .info-photo-item {
        gap: 9px;
    }
}



@media (max-width: 991px) {
    .salon-services-section, .salon-photos-section, .salon-specialists-section, .salon-about-section, .salon-contact-section{
        padding: 20px 20px;
    }
}

@media (max-width: 768px) {
    .salon-banner-section {
        height: 220px;
    }

    .salon-services-section,
    .salon-photos-section,
    .salon-specialists-section,
    .salon-about-section,
    .salon-contact-section {
        padding: 40px 15px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-image-wrapper {
        height: 150px;
    }

    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .photo-item {
        height: 200px;
    }

    .salon-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .salon-nav-link {
        font-size: 16px;
    }

    .about-content-layout {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .about-info-left {
        padding: 10px 0px;
    }

    .info-title {
        margin-bottom: 10px;
        text-align: left;
    }

    .info-line {
        font-size: 16px;
        text-align: left;
    }

    .about-info-right {
        padding: 40px 20px;
        gap: 30px;
    }

    .info-photo-item {
        max-width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-map-container {
        min-height: 400px;
    }

    .contact-map {
        min-height: 400px;
    }

    .contact-map-placeholder {
        min-height: 400px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form-input,
    .contact-form-textarea {
        font-size: 14px;
    }

    .contact-info-blocks {
        padding: 30px 20px;
    }

    .contact-info-block {
        padding: 20px;
    }

    .contact-info-block-small,
    .contact-info-block-medium,
    .contact-info-block-large {
        width: 100%;
    }

    .contact-info-block-large {
        min-height: auto;
    }
}

@media (max-width: 685px) {
    .service-image-wrapper {
        height: 100px;
    }
    .service-label {
        padding: 2px 5px;
    }
    .service-name {
        font-size: 11px;
    }
}

@media (max-width: 475px) {
    .salon-services-section, .salon-photos-section, .salon-specialists-section, .salon-about-section, .salon-contact-section {
        padding: 19px 15px;
    }
    .section-title {
        font-size: 17px;
        margin-bottom: 11px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 420px) {
    .salon-banner-section {
        height: 220px;
    }
}

@media (max-width: 385px) {
    .service-image-wrapper {
        height: 78px;
    }
    .service-label {
        padding: 1px 1px;
    }
    .service-name {
        font-size: 8px;
        margin: 0 0 0 0;
    }
    .service-duration, .service-price {
        font-size: 7px;
    }
}