#test {
  color: gray;
}@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-deep: #07080A;
    --bg-surface: #0E1015;
    --bg-card: rgba(18, 21, 28, 0.85);
    --gold-primary: #C5A059;
    --gold-light: #E6C588;
    --gold-dark: #9A7B38;
    --border-glass: rgba(197, 160, 89, 0.2);
    --text-main: #FFFFFF;
    --text-muted: #949EAF;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* شريط التنقل العلوي */
.navbar {
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 7%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.brand-logo {
    text-decoration: none;
}

.brand-logo h1 {
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-logo h1 span {
    color: var(--gold-primary);
}

.brand-logo p {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

#menu-toggle {
    display: none;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hamburger-btn:hover span {
    background-color: var(--gold-primary);
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(14, 16, 21, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--gold-primary);
    padding: 7rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.9);
}

#menu-toggle:checked ~ .nav-drawer {
    right: 0;
}

#menu-toggle:checked ~ .navbar .hamburger-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold-primary);
}

#menu-toggle:checked ~ .navbar .hamburger-btn span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .navbar .hamburger-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold-primary);
}

.nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-drawer ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
}

.nav-drawer ul li a:hover {
    color: var(--gold-primary);
    padding-right: 8px;
}

/* زر الواتساب العائم */
.floating-whatsapp {
    position: fixed;
    bottom: 35px;
    left: 35px;
    background: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

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

/* واجهة العرض الرئيسية */
.hero {
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.5) 0%, rgba(7, 8, 10, 0.96) 100%), 
                url('https://images.unsplash.com/photo-1541888946425-d0fbb18f7243?auto=format&fit=crop&w=2000&q=90');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content {
    max-width: 850px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-content h2 span {
    color: var(--gold-primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.btn-primary {
    background: var(--gold-primary);
    color: #07080A;
    padding: 0.95rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* الإحصائيات الواقعية للشركة */
.stats-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 4.5rem 7%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stat-card h4 {
    font-size: 3.2rem;
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* الأقسام العامة */
.section-box {
    padding: 7rem 7%;
    text-align: center;
}

.section-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-box h3 span {
    color: var(--gold-primary);
}

.section-box p.desc {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* قسم من نحن */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
}

.about-text-box {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.about-image-box {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* شبكة الخدمات الفعالة */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: right;
}

.luxury-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.luxury-card:hover .card-image-box img {
    transform: scale(1.06);
}

.card-content {
    padding: 2.2rem;
}

.luxury-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.luxury-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.luxury-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* قسم التواصل */
.contact-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    text-align: right;
}

.contact-info-item {
    margin: 1.8rem 0;
}

.contact-info-item span.label {
    color: var(--text-muted);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-info-item a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    direction: ltr;
    display: inline-block;
}

.social-links-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.8rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #df5914 45%, #c62937 60%, #bc2a8d 90%);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
}

.map-container {
    margin-top: 2.5rem;
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

/* الفوتر */
.footer {
    background-color: #040507;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    text-align: center;
    padding: 3.5rem 1rem;
    font-size: 0.9rem;
}

.footer .phone-display {
    direction: ltr;
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 600;
}

.footer p + p {
    margin-top: 0.6rem;
}

@media(max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media(max-width: 768px) {
    .hero-content h2 {
        font-size: 2.4rem;
    }
}
