:root {
    --primary-color: #2a5bd7;
    --primary-dark: #1a4bbd;
    --secondary-color: #ffcc00;
    --secondary-dark: #e6b800;
    --accent-color: #e94560;
    --accent-pink: #ff4d8d;
    --accent-purple: #9c5dff;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #1a3a8f);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #e6b800);
    --gradient-beauty: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 91, 215, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--dark-color);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.btn-beauty {
    background: var(--gradient-beauty);
    color: white;
}

.btn-beauty:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 93, 255, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-left: 10px;
}

.logo span {
    color: var(--secondary-color);
}

.header.scrolled .logo {
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
}

.header.scrolled .nav-menu a {
    color: var(--dark-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.header.scrolled .mobile-menu-btn {
    color: var(--dark-color);
}

/* Social Icons in Header */
.header-social {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: var(--transition);
    margin-left: 10px;
}

.header-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.header.scrolled .header-social a {
    background: rgba(42, 91, 215, 0.1);
    color: var(--primary-color);
}

.header.scrolled .header-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), 
                url('hero-background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center/cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Welcome Section */
.welcome-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.welcome-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Draggable Banner */
.draggable-banner {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 0;
    text-align: center;
    cursor: grab;
    user-select: none;
    z-index: 99;
    transition: transform 0.3s ease, height 0.3s ease;
    overflow: hidden;
    height: 80px;
    margin: 0 auto 40px;
    width: 95%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.draggable-banner.collapsed {
    height: 40px;
}

.draggable-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.banner-text {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.banner-close {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-handle {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* Banner Slider */
.banner-slider {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.banner-slide.active {
    opacity: 1;
}

.banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    transition: var(--transition);
    position: relative;
}

.sidebar a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.sidebar a::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar a:hover::after {
    opacity: 1;
    visibility: visible;
    right: 45px;
}

/* Floating Contact Icon */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.floating-contact:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.contact-modal {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-modal h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: var(--border-radius);
    background: rgba(42, 91, 215, 0.1);
    transition: var(--transition);
    text-align: center;
}

.contact-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-social i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-social span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Beauty Section */
.beauty-section {
    background-color: #f5f7fa;
    padding: 100px 0;
}

.beauty-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.beauty-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.beauty-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.beauty-image:hover img {
    transform: scale(1.05);
}

.beauty-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.beauty-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Special Offers Section - قسم الأسنان */
.special-offers {
    background-color: #f5f7fa;
    position: relative;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.offer-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-item:hover img {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: var(--transition);
}

.offer-item:hover .offer-overlay {
    background: linear-gradient(transparent, var(--primary-color));
}

.offer-overlay h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.offer-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

/* أزرار الحجز الجديدة */
.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.whatsapp-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.whatsapp-icon-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.booking-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 91, 215, 0.3);
}

/* Features */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About */
.about {
    background-color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232a5bd7' fill-opacity='0.05' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center/contain;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 91, 215, 0.1);
    z-index: 1;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Services */
.services {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffcc00' fill-opacity='0.05' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center/contain;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Testimonials */
.testimonials {
    background-color: white;
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary-color);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Appointment Section */
.appointment {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center/cover;
}

.appointment .section-title h2,
.appointment .section-title p {
    color: white;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.appointment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.appointment-info ul {
    margin: 30px 0;
}

.appointment-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.appointment-info i {
    margin-left: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.appointment-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 91, 215, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-top: 10px;
    font-family: 'Tajawal', sans-serif;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Gallery */
.gallery {
    background-color: #f5f7fa;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 91, 215, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Gallery Page */
.gallery-page {
    display: none;
    padding: 100px 0;
    background-color: #f5f7fa;
}

.gallery-page.active {
    display: block;
}

.gallery-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-page-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-page-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.gallery-page-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-page-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.1);
}

/* FAQ */
.faq {
    background-color: white;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-dark);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 20px;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 990;
    display: none;
}

.bottom-nav-menu {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition);
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* Modal for Gallery */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow: hidden;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
}

.booking-modal-content {
    background: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.booking-modal-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.thank-you-message p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* إضافة أنماط جديدة للشريط التقدمي */
.progress-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.whatsapp-icon {
    margin-right: 8px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .about-container,
    .appointment-container,
    .beauty-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .sidebar {
        display: none;
    }

    .bottom-nav {
        display: block;
    }

    .header-social {
        display: none;
    }

    .banner-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        color: var(--dark-color);
        font-size: 1.2rem;
    }

    .header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-slider {
        height: 400px;
    }

    .draggable-banner {
        margin-top: 0;
    }

    .floating-contact {
        bottom: 80px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-modal {
        bottom: 140px;
        left: 15px;
        width: 260px;
    }

    .contact-social {
        grid-template-columns: 1fr;
    }

    /* تعديلات للاستجابة على الهواتف */
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-form {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .banner-slider {
        height: 300px;
    }

    .draggable-banner {
        height: 80px;
    }

    .draggable-banner.collapsed {
        height: 35px;
    }

    .banner-text {
        font-size: 1rem;
    }
}

/* Appointments Page Styles */
.appointments {
    padding: 80px 0;
}

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filters .form-control {
    flex: 1;
    min-width: 200px;
}

.appointments-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.appointments-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.appointments-table th,
.appointments-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.appointments-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.appointments-table tr:hover {
    background-color: #f8f9fa;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.btn-action {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
    margin: 0 2px;
}

.btn-action:hover {
    background-color: #f1f1f1;
}

.view-btn {
    color: #17a2b8;
}

.confirm-btn {
    color: #28a745;
}

.cancel-btn {
    color: #dc3545;
}

/* Responsive styles */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
    }
    
    .filters .form-control {
        min-width: 100%;
    }
    
    .appointments-table th,
    .appointments-table td {
        padding: 10px 5px;
        font-size: 14px;
    }
}

/* تنسيقات إضافية للنماذج */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4CAF50;
    outline: none;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* أنماط قسم التجميل */
.beauty-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-beauty {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-beauty:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7b7b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-beauty-secondary {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 10px 23px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-beauty-secondary:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* أنماط عروض التجميل */
.beauty-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.beauty-offer-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.beauty-offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.beauty-offer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beauty-offer-item:hover img {
    transform: scale(1.05);
}

.beauty-offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.beauty-offer-item:hover .beauty-offer-overlay {
    transform: translateY(0);
}

.beauty-offer-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.beauty-offer-overlay p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.back-to-beauty-section {
    text-align: center;
    margin-top: 40px;
}

/* أنماط متجاوبة للهواتف */
@media (max-width: 768px) {
    .beauty-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .beauty-offers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .beauty-offer-item {
        height: 250px;
    }
}

/* أنماط أزرار الواتساب الكبيرة */
.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* أنماط أزرار الواتساب الصغيرة (للعروض والخدمات) */
.btn-whatsapp-sm {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-sm:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* تحسين تخطيط أزرار الحجز والواتساب */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.beauty-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.service-meta .booking-buttons {
    justify-content: center;
    margin-top: 20px;
}

/* تحسين التخطيط للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .beauty-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-buttons .booking-btn,
    .booking-buttons .btn-whatsapp-sm {
        width: 100%;
        justify-content: center;
    }
}

/* تأثيرات للعناصر عند التمرير */
.book-btn, .btn-whatsapp, .btn-whatsapp-sm {
    transition: all 0.3s ease;
}

.book-btn:hover, .btn-whatsapp:hover, .btn-whatsapp-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* تحسين المظهر في الأقسام المختلفة */
.beauty-offer-overlay .booking-buttons,
.offer-overlay .booking-buttons {
    flex-direction: column;
    align-items: stretch;
}

.service-meta .booking-buttons {
    flex-direction: row;
    align-items: center;
}

@media (max-width: 576px) {
    .service-meta .booking-buttons {
        flex-direction: column;
    }
}