:root {
    --black: #000000;
    --gold: #C9A96E;
    --white: #FFFFFF;
    --nude: #F5E6DA;
    --gray: #333333;
    --light-gray: #f9f9f9;
    --title-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--title-font);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gold);
    animation: fadeInUp 1.2s ease;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.4s ease;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 100px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid var(--nude);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-view-more {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-more:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Pricing Section */
.pricing {
    background-color: var(--light-gray);
    padding-bottom: 100px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-item span:last-child {
    font-weight: 700;
    color: var(--gold);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 80px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    filter: brightness(0.7);
}

/* Location */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 100px;
}

.map-container {
    flex: 1 1 60%;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.address-info {
    flex: 1 1 35%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.address-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.address-info i {
    color: var(--gold);
    font-size: 1.5rem;
}

.address-info .btn-gold {
    width: fit-content;
    padding: 10px 20px;
    font-weight: 600;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.social-links {
    text-align: right;
}

.social-links p {
    margin-bottom: 15px;
    color: var(--nude);
}

.social-links a {
    font-size: 1.5rem;
    margin-left: 20px;
    color: var(--white);
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--black);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-title {
    font-family: var(--title-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-align: center;
}

.modal-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.modal-video, .modal-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

/* Dresses Section - Special Styling */
.dresses-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-items: center;
}

.dresses-only .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    width: 100%;
    max-width: 350px;
    height: 450px;
    background-color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dresses-only .gallery-item img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.4s;
}

.dresses-only .gallery-item video {
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.4s;
}

.dresses-only .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.dresses-only .gallery-item:hover img,
.dresses-only .gallery-item:hover video {
    transform: scale(1.08);
}

/* Laser Section */
.laser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.laser-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    padding: 10px;
}

.laser-item img,
.laser-item video {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: 0.4s ease;
}

.laser-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.laser-item:hover img,
.laser-item:hover video {
    transform: scale(1.05);
}

.laser-item h3 {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.laser-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: gold;
    transition: 0.4s;
}

.laser-item:hover::after {
    width: 100%;
}

.laser-item:has(img:nth-child(2)) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
}

.laser-item:has(img:nth-child(2)) img:first-child {
    grid-column: span 2;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 80px;
}

.result-item {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.result-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #f7f7f7;
}

.result-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.result-item:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

/* Makeup & Nails Section */
.makeup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 80px;
}

.makeup-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    padding: 15px;
    position: relative;
}

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

.media-grid img,
.media-grid video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.makeup-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.makeup-item:hover img,
.makeup-item:hover video {
    transform: scale(1.05);
}

.makeup-item h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

.makeup-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    width: calc(100% - 20px);
    height: 3px;
    background: gold;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.makeup-item:hover::after {
    transform: scaleX(1);
}

/* Language Switcher Button Styles */
.lang-switcher {
    margin-left: 20px;
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--body-font);
}

.lang-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.lang-btn.active-lang {
    background: var(--gold);
    color: var(--white);
}

header.sticky .lang-btn {
    border-color: var(--gold);
    color: var(--gold);
}

header.sticky .lang-btn:hover,
header.sticky .lang-btn.active-lang {
    background: var(--gold);
    color: var(--white);
}

/* RTL (Arabic) Direction Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-links {
    padding-right: 0;
}

body.rtl .logo span {
    letter-spacing: 0;
}

body.rtl .service-card,
body.rtl .price-item,
body.rtl .address-info p,
body.rtl .footer-content {
    text-align: right;
}

body.rtl .price-item {
    flex-direction: row;
}

body.rtl .hero-btns .btn {
    font-family: var(--body-font);
}

body.rtl .section-title h2 {
    font-family: var(--title-font);
}

body.rtl .btn-view-more {
    font-family: var(--body-font);
}

body.rtl .modal-footer .btn {
    font-family: var(--body-font);
}

body.rtl .address-info p {
    justify-content: flex-start;
}

body.rtl .address-info i {
    margin-left: 10px;
    margin-right: 0;
}

body.rtl .social-links {
    text-align: left;
}

body.rtl .social-links a {
    margin-left: 0;
    margin-right: 20px;
}

body.rtl .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .contact-content { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }
    .lang-switcher {
        margin-left: 10px;
        margin-right: 10px;
    }
    body.rtl .lang-switcher {
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content h2 { font-size: 1.4rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .pricing-tabs { flex-wrap: wrap; }
    .footer-content { flex-direction: column; text-align: center; }
    .social-links { text-align: center; }
    .price-grid { grid-template-columns: 1fr; }
    .modal-content { width: 95%; margin: 10% auto; padding: 20px; }
    .modal-title { font-size: 1.8rem; }
    .dresses-only .gallery-item { height: 350px; }
    .media-grid { grid-template-columns: 1fr; gap: 15px; }
    .laser-item:has(img:nth-child(2)) { grid-template-columns: 1fr; }
}
/* تحسين عرض المعرض */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* تحسين عرض الليزر */
.laser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.laser-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.laser-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.laser-item img,
.laser-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.laser-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    color: #333;
    background: white;
}

/* تحسين عرض النتائج */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.result-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.result-item img,
.result-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* تحسين عرض المكياج */
.makeup-grid {
    margin-bottom: 80px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.media-grid img,
.media-grid video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.media-grid img:hover,
.media-grid video:hover {
    transform: scale(1.02);
}

/* تحسين عرض الخدمات */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: #C9A96E;
}

.btn-view-more {
    background: transparent;
    border: 2px solid #C9A96E;
    color: #C9A96E;
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: #C9A96E;
    color: white;
}

/* رسائل عند عدم وجود محتوى */
.no-content {
    text-align: center;
    padding: 60px;
    color: #888;
    background: #f9f9f9;
    border-radius: 15px;
    font-size: 1.1rem;
}

.no-prices {
    text-align: center;
    padding: 40px;
    color: #888;
    font-size: 1.1rem;
}