:root {
    /* Colors */
    --clr-black: #050505;
    --clr-dark: #121212;
    --clr-dark-elevated: #1e1e1e;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-gold-dark: #AA8C2C;
    --clr-text-main: #F5F5F5;
    --clr-text-muted: #A0A0A0;
    --clr-border: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-main: 'Cairo', sans-serif;
    
    /* Spacing & Utilities */
    --nav-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.gold-text {
    color: var(--clr-gold);
}

.text-center { text-align: center; }
.text-start { text-align: right; } /* RTL context */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.w-100 { width: 100%; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--clr-gold);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 3px;
}

.text-start.section-title::after {
    right: 0;
    transform: none;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--clr-gold);
    color: var(--clr-black);
}

.btn-primary:hover {
    background: var(--clr-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-gold);
    color: var(--clr-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1EBE5C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--clr-text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
}

.hero-checklist li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-footer-text {
    background: rgba(212, 175, 55, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-right: 3px solid var(--clr-gold);
    margin-bottom: 2rem;
}

.hero-footer-text p {
    margin: 0;
    line-height: 1.6;
}

.font-bold {
    font-weight: 700;
}

.trust-tag {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-top: 0.3rem !important;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-review {
    display: inline-block;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-main);
    transition: var(--transition);
}
.review-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.hero-image {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Quick Contact */
.quick-contact {
    background: var(--clr-dark);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 1.5rem 0;
}

.quick-contact-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.qc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--clr-dark-elevated);
    transition: var(--transition);
}

.qc-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.qc-icon {
    font-size: 1.5rem;
    color: var(--clr-gold);
}

.qc-text {
    display: flex;
    flex-direction: column;
}

.qc-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.qc-val {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--clr-dark);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--clr-text-muted);
    position: relative;
    z-index: 1;
}

/* Why Us */
.why-us {
    background: var(--clr-dark);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--clr-black);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
}

.benefits-list li:hover {
    border-color: var(--clr-border);
    background: var(--clr-dark-elevated);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.benefit-text h4 {
    margin: 0;
    font-size: 1.1rem;
}

.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morphShape 8s ease-in-out infinite alternate;
    position: relative;
}

.abstract-inner {
    width: 250px;
    height: 250px;
    background: var(--clr-black);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.gold-icon-large {
    font-size: 5rem;
    color: var(--clr-gold);
}

@keyframes morphShape {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Trust Section */
.trust {
    background: url('data:image/svg+xml;utf8,<svg opacity="0.02" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23D4AF37" stroke-width="2" fill="none"/></svg>') center/cover;
}

.trust-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--clr-text-muted);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.badge {
    background: var(--clr-dark-elevated);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-gold-light);
}

/* Review CTA */
.review-cta {
    background: linear-gradient(to right, var(--clr-dark), var(--clr-black));
}
.review-box {
    background: var(--clr-dark-elevated);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--clr-border);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Double Grid (Contact & Location) */
.double-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-box, .location-box {
    background: var(--clr-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.ci-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-info span {
    display: block;
    font-size: 1.1rem;
}

.location-card {
    background: var(--clr-black);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--clr-border);
    margin-bottom: 2rem;
}

.lc-icon {
    font-size: 2rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.lc-address {
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.social-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--clr-black);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.social-card:hover {
    border-color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.05);
    color: var(--clr-gold);
}

.social-card i {
    font-size: 1.5rem;
    color: var(--clr-gold);
}

/* Footer */
.footer {
    background: var(--clr-dark-elevated);
    padding-top: 4rem;
    border-top: 1px solid var(--clr-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--clr-gold);
    color: var(--clr-black);
}

.footer-links h4, .footer-contact h4 {
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--clr-text-muted);
}

.footer-links ul li a:hover {
    color: var(--clr-gold);
    padding-right: 5px;
}

.footer-contact p {
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: var(--clr-black);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--clr-gold);
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    transition: var(--transition);
}

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

.wa-fab {
    background: #25D366;
    color: #fff;
}

.map-fab {
    background: var(--clr-dark-elevated);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
}

.fab-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animations */
.fade-up-anim {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-scale-anim {
    animation: fadeScale 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    from { transform: scale(0.95); opacity: 0.5; }
    to { transform: scale(1.05); opacity: 1; }
}

/* Scroll Reveals (handled by JS) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .quick-contact-container { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .double-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .d-none-md { display: none !important; }
    .d-md-none { display: inline-flex !important; }
    
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--nav-height));
        background: var(--clr-dark-elevated);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--clr-border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-footer-text { border-right: none; border-bottom: 3px solid var(--clr-gold); text-align: center; }
    .hero-checklist { grid-template-columns: 1fr; }
    .hero-checklist li { justify-content: center; }
    .hero-image { max-width: 60%; margin-top: 2rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .why-us-container { grid-template-columns: 1fr; }
    .why-us-visual { order: -1; margin-bottom: 2rem; }
    .section-title.text-start { text-align: center; }
    .section-title.text-start::after { right: 50%; transform: translateX(50%); }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-logo { margin: 0 auto 1.5rem auto; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .quick-contact-container { grid-template-columns: 1fr; }
    .fab-tooltip { display: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

 / *   G a l l e r y   S e c t i o n   * / 
 . g a l l e r y - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
         g a p :   1 . 5 r e m ; 
 } 
 
 . g a l l e r y - i t e m   { 
         b o r d e r - r a d i u s :   v a r ( - - b o r d e r - r a d i u s ) ; 
         o v e r f l o w :   h i d d e n ; 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
         a s p e c t - r a t i o :   4   /   3 ; 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 5 ) ; 
 } 
 
 . g a l l e r y - i t e m   i m g   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 } 
 
 . g a l l e r y - i t e m : h o v e r   i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
  
 