* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #c9a48c;
            --primary-dark: #a67b5b;
            --secondary: #8b6f6f;
            --accent: #d4af37;
            --dark: #2c2420;
            --light: #faf8f5;
            --cream: #f5f0e8;
            --white: #ffffff;
            --shadow: rgba(44, 36, 32, 0.08);
            --shadow-hover: rgba(44, 36, 32, 0.15);

            /* پل رنگی ویجت نوبت‌دهی — booking.css از --dp-* می‌خواند (مثل Dentist_Pro) */
            --dp-brand: var(--primary-dark);
            --dp-brand-dark: #8b5a42;
            --dp-brand-soft: #f5ebe3;
            --dp-brand-mist: var(--light);
            --dp-gold: var(--accent);
            --dp-text: var(--dark);
            --dp-text-soft: #5c4a42;
            --dp-muted: var(--secondary);
            --dp-border: rgba(201, 164, 140, 0.35);
            --dp-border-soft: rgba(201, 164, 140, 0.18);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: Vazir, 'IRANYekan', Tahoma, sans-serif;
            line-height: 1.8;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        body.menu-open {
            overflow: hidden;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1.5rem 0;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px var(--shadow);
            padding: 1rem 0;
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary-dark);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            z-index: 1002;
            padding: 5px;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--dark);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Mobile Menu Drawer */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            padding: 6rem 2rem 2rem;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .mobile-nav-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .mobile-nav-links li {
            border-bottom: 1px solid rgba(201, 164, 140, 0.1);
        }
        
        .mobile-nav-links a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .mobile-nav-links a i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(201, 164, 140, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        
        .mobile-nav-links a:hover {
            color: var(--primary-dark);
            padding-right: 0.5rem;
        }
        
        .mobile-nav-header {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(201, 164, 140, 0.1);
        }
        
        .mobile-nav-header .mobile-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .mobile-contact-box {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
            border-radius: 16px;
            text-align: center;
        }
        
        .mobile-contact-box h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .mobile-contact-box p {
            color: var(--secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .mobile-contact-box .btn {
            width: 100%;
            justify-content: center;
        }
        
        /* Dropdown Menu — scoped به header تا با Bootstrap (.dropdown-menu{display:none}) تداخل نکند */
        #bslxHeader nav .dropdown {
            position: relative;
        }

        /* پل نامرئی بین trigger و panel — بدون آن در فاصله 10px هاور از دست می‌رود */
        #bslxHeader nav .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            min-width: 260px;
            height: 14px;
        }
        
        #bslxHeader nav .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        #bslxHeader nav .dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        #bslxHeader nav .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }
        
        #bslxHeader nav .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(44, 36, 32, 0.12);
            padding: 0.5rem;
            min-width: 260px;
            display: block !important; /* Bootstrap display:none را لغو می‌کند */
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(201, 164, 140, 0.15);
            overflow: hidden;
            z-index: 1100;
        }
        
        #bslxHeader nav .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 30px;
            width: 12px;
            height: 12px;
            background: white;
            transform: rotate(45deg);
            border-top: 1px solid rgba(201, 164, 140, 0.15);
            border-right: 1px solid rgba(201, 164, 140, 0.15);
        }
        
        #bslxHeader nav .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        #bslxHeader nav .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1rem;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.2s;
            border-radius: 6px;
            margin-bottom: 0.25rem;
        }
        
        #bslxHeader nav .dropdown-item:last-of-type {
            margin-bottom: 0;
        }
        
        #bslxHeader nav .dropdown-item:hover {
            background: rgba(201, 164, 140, 0.08);
            color: var(--primary-dark);
        }
        
        #bslxHeader nav .dropdown-item i {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(201, 164, 140, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1rem;
            transition: all 0.2s;
        }
        
        #bslxHeader nav .dropdown-item:hover i {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            transform: scale(1.05);
        }
        
        #bslxHeader nav .dropdown-divider {
            height: 1px;
            background: rgba(201, 164, 140, 0.15);
            margin: 0.5rem;
        }
        
        #bslxHeader nav .dropdown-footer {
            padding: 0.75rem 1rem;
            background: rgba(201, 164, 140, 0.05);
            margin-top: 0.5rem;
            border-radius: 6px;
            font-size: 0.8rem;
        }
        
        #bslxHeader nav .dropdown-footer p {
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        #bslxHeader nav .dropdown-footer i {
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            padding: 8rem 5rem 5rem;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, #fff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 164, 140, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content {
            z-index: 2;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-subtitle::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero h1 span {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 2;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* دکمه‌های قالب — فقط داخل صفحه، نه ویجت/مدال نوبت‌دهی */
        #bslxHeader .btn,
        .mobile-contact-box .btn,
        .bslx-fab-stack .btn,
        .bslx-root .hero-buttons .btn,
        .bslx-root .service-detail-content .btn,
        .bslx-root .about-text > .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(166, 123, 91, 0.3);
        }
        
        #bslxHeader .btn:hover,
        .mobile-contact-box .btn:hover,
        .bslx-fab-stack .btn:hover,
        .bslx-root .hero-buttons .btn:hover,
        .bslx-root .service-detail-content .btn:hover,
        .bslx-root .about-text > .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(166, 123, 91, 0.4);
        }
        
        .bslx-root .hero-buttons .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
            box-shadow: none;
        }
        
        .bslx-root .hero-buttons .btn-outline:hover {
            background: var(--primary-dark);
            color: var(--white);
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image-main {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .floating-card.top {
            top: 10%;
            left: -10%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-card.bottom {
            bottom: 10%;
            right: -5%;
            animation: float 6s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .floating-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        /* Sections General */
        .bslx-root > section,
        .bslx-booking-section {
            padding: 6rem 5rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(201, 164, 140, 0.1);
            color: var(--primary-dark);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: var(--secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Features */
        .features {
            background: var(--white);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 4rem 5rem;
        }
        
        .feature-item {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.3s;
        }
        
        .feature-item:hover {
            background: var(--light);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(201, 164, 140, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-dark);
        }
        
        .feature-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .feature-item p {
            color: var(--secondary);
            font-size: 0.95rem;
        }
        
        /* Services Menu */
        .services {
            background: linear-gradient(180deg, var(--light) 0%, var(--cream) 100%);
        }
        
        .services-menu {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .service-menu-item {
            padding: 0.8rem 2rem;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .service-menu-item:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
        }
        
        .service-menu-item.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(166, 123, 91, 0.3);
        }
        
        .services-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .service-detail {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .service-detail.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .service-detail-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-width: 0;
        }
        
        .service-detail-image {
            height: 100%;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        .service-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-detail-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            overflow-wrap: break-word;
        }
        
        .service-detail-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .service-detail-content h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .service-detail-content p {
            color: var(--secondary);
            margin-bottom: 2rem;
            line-height: 2;
            font-size: 1.1rem;
        }
        
        .service-features-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .service-features-list li {
            padding: 0.5rem 0;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .service-features-list li i {
            color: var(--accent);
        }
        
        .service-price {
            font-size: 1.5rem;
            color: var(--primary-dark);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        /* About */
        .about {
            background: var(--white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .about-images {
            position: relative;
        }
        
        .about-img-main {
            width: 80%;
            border-radius: 30px;
            box-shadow: 0 20px 50px var(--shadow);
        }
        
        .about-img-secondary {
            position: absolute;
            bottom: -10%;
            left: 0;
            width: 50%;
            border-radius: 20px;
            box-shadow: 0 15px 40px var(--shadow);
            border: 5px solid var(--white);
        }
        
        .experience-badge {
            position: absolute;
            top: 10%;
            left: -5%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(201, 164, 140, 0.4);
        }
        
        .experience-badge .years {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }
        
        .experience-badge .text {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .about-text p {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 2;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(201, 164, 140, 0.2);
        }
        
        .stat-item h4 {
            font-size: 2rem;
            color: var(--primary-dark);
            font-weight: 800;
        }
        
        .stat-item p {
            color: var(--secondary);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Gallery */
        .gallery {
            background: var(--dark);
            color: var(--white);
        }
        
        .gallery .section-title {
            color: var(--white);
        }
        
        .gallery .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            aspect-ratio: 1;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.15);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: white;
            font-weight: 600;
        }
        
        /* Contact */
        .contact {
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            justify-content: center;
        }
        
        .info-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: 0 10px 40px var(--shadow);
            transition: transform 0.3s;
        }
        
        .info-card:hover {
            transform: translateX(-10px);
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(201, 164, 140, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .info-content h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .info-content p {
            color: var(--secondary);
            line-height: 1.8;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 5rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }
        
        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }
        
        .footer-links h4 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .bslx-root > section,
            .bslx-booking-section {
                padding: 4rem 2rem;
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 6rem;
            }
            
            .hero-description {
                margin: 0 auto 2rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                order: -1;
            }
            
            .hero-image-main {
                height: 400px;
            }
            
            .floating-card {
                display: none;
            }
            
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .service-detail-card {
                grid-template-columns: 1fr;
            }
            
            .service-detail-image {
                min-height: 300px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-images {
                order: -1;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            #bslxHeader nav .dropdown-menu {
                right: auto;
                left: 0;
            }
            
            #bslxHeader nav .dropdown-menu::before {
                right: auto;
                left: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .mobile-nav-overlay {
                display: block;
            }
            
            /* specificity بالاتر از .bslx-root > section — padding افقی کمتر روی موبایل */
            .bslx-root > section,
            .bslx-booking-section {
                padding: 3rem 1rem;
            }

            .hero {
                padding: 5rem 1rem 2.5rem;
                gap: 2rem;
                min-height: auto;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-image-main {
                height: 280px;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                padding: 0;
                gap: 1rem;
            }

            .feature-item {
                padding: 1.25rem 1rem;
            }
            
            .services-menu {
                flex-direction: column;
                align-items: stretch;
                gap: 0.65rem;
                margin-bottom: 2rem;
            }

            .service-menu-item {
                width: 100%;
                max-width: none;
                padding: 0.75rem 1rem;
                text-align: center;
            }

            .service-detail-card {
                border-radius: 20px;
            }

            .service-detail-content {
                padding: 1.25rem 1rem;
                min-width: 0;
            }

            .service-detail-image {
                min-height: 220px;
            }

            .bslx-root .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .bslx-root .hero-buttons .btn,
            .bslx-root .service-detail-content .btn,
            .bslx-root .about-text > .btn {
                width: 100%;
                max-width: 100%;
                justify-content: center;
                padding: 0.85rem 1.25rem;
                box-sizing: border-box;
            }

            .about-content {
                gap: 2rem;
            }

            .about-text h2 {
                font-size: 1.75rem;
            }

            .about-text p {
                font-size: 1rem;
                line-height: 1.85;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .info-card {
                padding: 1.25rem 1rem;
                gap: 1rem;
            }

            .info-icon {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            footer {
                padding: 3rem 1rem 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            #bslxHeader nav .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: transparent;
                display: none !important;
            }

            #bslxHeader nav .dropdown::after {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .bslx-root > section,
            .bslx-booking-section {
                padding: 2.5rem 0.85rem;
            }

            .hero {
                padding-top: 4.5rem;
            }

            .hero h1 {
                font-size: 1.85rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .service-detail-content {
                padding: 1rem 0.85rem;
            }

            .service-detail-icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
            }
        }

.bslx-widget-shell { background: var(--white); padding: 2rem; border-radius: 30px; box-shadow: 0 20px 60px var(--shadow); }

.page-card-shell {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* فونت سراسری — header/footer/FAB خارج .bslx-root هم inherit کنند (مثل Dentist_Pro) */
body,
header,
.mobile-nav,
.mobile-nav-overlay,
footer,
.bslx-root,
.bslx-booking-section,
.bslx-fab-stack {
    font-family: Vazir, 'IRANYekan', Tahoma, sans-serif;
}

/* Booking strip (مثل Dentist_Pro) */
.bslx-booking-section {
    padding: 0 5rem 3rem;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.bslx-booking-strip {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(201, 164, 140, 0.15);
    position: relative;
    /* overflow:visible — مدال ویجet نوبت‌دهی داخل این بلوک رندر می‌شود؛ hidden آن را درجا قیچی می‌کند */
    overflow: visible;
}
.bslx-booking-strip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 164, 140, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.bslx-booking-head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}
.bslx-booking-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    flex-shrink: 0;
}
.bslx-booking-copy h2 {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}
.bslx-booking-copy p {
    margin: 0;
    color: var(--secondary);
    font-size: 0.95rem;
}
.bslx-booking-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.4rem;
    margin-top: 0.75rem;
}
.bslx-booking-perks span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 600;
}
.bslx-booking-perks i { color: var(--accent); }
.bslx-booking-strip .bslx-widget-shell {
    flex: 1;
    min-width: 260px;
    /* بدون z-index — stacking context مدال/backdrop را داخل shell گیر می‌اندازد */
}
.bslx-booking-strip .bslx-widget-shell .apt-launch {
    width: 100%;
    justify-content: center;
}

nav .bslx-nav-book {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    nav .bslx-nav-book { display: none; }
    .bslx-booking-section { padding: 0 1rem 1.5rem; }
    .bslx-booking-strip { padding: 1.25rem; flex-direction: column; align-items: stretch; }
    .bslx-booking-head { flex-direction: column; }
    .bslx-widget-shell { padding: 1.25rem; border-radius: 20px; }
}

.contact-content--info-only {
    grid-template-columns: 1fr !important;
    max-width: 720px;
}

/* ویجت نوبت‌دهی — تا Bootstrap .show اضافه کند مخفی بماند؛ z-index بالای header/FAB */
#bookingModal:not(.show),
#statusModal:not(.show),
#commentsModal:not(.show),
#addCommentModal:not(.show),
#ratingModal:not(.show) {
    display: none !important;
}
#bookingModal,
#statusModal,
#commentsModal,
#addCommentModal,
#ratingModal {
    z-index: 10050 !important;
}
body > .modal-backdrop,
.modal-backdrop.show {
    z-index: 10040 !important;
}

/* سایه‌ها و سطح مدال — هماهنگ با پالت گرم سالن زیبایی */
.appointment-widget,
#bookingModal,
#statusModal,
#commentsModal,
#addCommentModal,
#ratingModal {
    --apt-shadow-sm: 0 2px 8px rgba(166, 123, 91, 0.08);
    --apt-shadow: 0 14px 36px rgba(166, 123, 91, 0.12);
    --apt-shadow-lg: 0 24px 60px rgba(166, 123, 91, 0.18);
    --apt-surface: var(--light);
    --apt-card: var(--white);
}
.appointment-widget .apt-launch {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 12px 28px rgba(166, 123, 91, 0.28);
}
.appointment-widget .apt-launch:hover {
    box-shadow: 0 18px 36px rgba(166, 123, 91, 0.36);
}
#bookingModal .btn-primary,
#bookingModal .apt-btn-cta,
#statusModal .btn-primary,
#commentsModal .btn-primary,
#addCommentModal .btn-primary,
#ratingModal .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-color: var(--primary-dark) !important;
}
#bookingModal {
    background-color: rgba(44, 36, 32, 0.55);
}

/* Popover تقویم فارسی — container:body با z-index:1060 پشت #bookingModal (10050) می‌رود */
body .popover.mds-bs-persian-datetime-picker-popover,
body .popover:has(.table-condensed) {
    z-index: 10060 !important;
    --mdp-theme-color: var(--primary-dark);
    --mdp-bg-hover: var(--dp-brand-soft);
}
body .popover:has(.table-condensed) .popover-header,
body .popover:has(.table-condensed) .popover-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.bslx-fab-stack {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1050;
}

/* ── Post host (PostHost.js) ───────────────────────────────────── */
.dynaBody {
    background: var(--light);
    color: var(--dark);
    padding-top: 6rem;
    min-height: 100vh;
    font-family: Vazir, 'IRANYekan', Tahoma, sans-serif;
}

/* منوی کشویی — لیست پست‌های خدمات */
#bslxHeader nav .dropdown-posts {
    padding: 0.35rem 0.5rem 0.25rem;
    max-height: 220px;
    overflow-y: auto;
}

#bslxHeader nav .dropdown-post-link {
    display: block;
    padding: 0.55rem 0.75rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.45;
}

#bslxHeader nav .dropdown-post-link:hover {
    background: rgba(201, 164, 140, 0.1);
    color: var(--primary-dark);
}

/* پست‌های خدمات — بعد از منوی تخصصی */
.bslx-service-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.bslx-service-posts--after-menu {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 164, 140, 0.25);
}

.bslx-root .page-services-tile {
    border-color: rgba(201, 164, 140, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 28px var(--shadow);
}

.bslx-root .page-services-tile--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow-hover);
    border-color: rgba(201, 164, 140, 0.45);
}

.bslx-root .page-services-tile__media {
    background: linear-gradient(145deg, var(--cream) 0%, rgba(201, 164, 140, 0.15) 100%);
}

.bslx-root .page-services-tile__img-placeholder {
    color: var(--primary);
}

.bslx-root .page-services-tile__title {
    color: var(--dark);
}

.bslx-root .page-services-tile__desc {
    color: var(--secondary);
}

.bslx-root .page-services-tile__action {
    color: var(--primary-dark);
}

/* بخش مطالب سایت — زیر گالری */
.bslx-blogs {
    background: linear-gradient(180deg, var(--light) 0%, var(--cream) 100%);
}

.bslx-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bslx-blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
    border: 1px solid rgba(201, 164, 140, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bslx-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.bslx-blog-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, var(--cream) 0%, rgba(201, 164, 140, 0.2) 100%);
}

.bslx-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bslx-blog-card:hover .bslx-blog-card__media img {
    transform: scale(1.06);
}

.bslx-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
}

.bslx-blog-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.45rem;
}

.bslx-blog-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-dark);
    background: rgba(201, 164, 140, 0.12);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    width: fit-content;
}

.bslx-blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

.bslx-blog-card__desc {
    font-size: 0.88rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.bslx-blog-card__link {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 768px) {
    .bslx-service-posts {
        padding: 0 1.25rem 1.5rem;
    }

    .bslx-service-posts--after-menu {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .dynaBody {
        padding-top: 5rem;
    }

    .bslx-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
