:root {
    --gold: #d4af37;
    --dark-bg: #05070a;
    --card-bg: #12181f;
    --white: #ffffff;
    --gray-text: #aaa;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    direction: rtl;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at top, #1a222c 0%, var(--dark-bg) 100%);
}


.image-container {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}


.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


.status-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: bold;
}


.dot {
    height: 10px;
    width: 10px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    animation: blink 1.2s infinite;
}


@keyframes blink { 50% { opacity: 0; } }


.name {
    font-family: 'Amiri', serif;
    font-size: 48px;
    color: var(--gold);
    margin-top: 15px;
}


.subtitle {
    color: var(--gray-text);
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 30px;
}


.divider {
    color: var(--gold);
    font-size: 24px;
}


/* Services Section */
.services {
    padding: 80px 0;
    background: var(--dark-bg);
}


.section-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 50px;
    font-size: 32px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}


.service-item {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s;
}


.service-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateY(-10px);
}


.service-item i {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}


.service-item span {
    font-size: 18px;
    font-weight: bold;
}


/* CTA Section */
.cta-section {
    padding: 60px 0 100px;
    text-align: center;
}


.guarantee-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    color: var(--gray-text);
    margin-bottom: 40px;
    display: inline-block;
}


.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #128c7e, #25d366);
    color: white;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
    transition: 0.3s ease;
}


.whatsapp-btn:hover {
    transform: scale(1.05);
}


.whatsapp-btn i {
    margin-left: 15px;
    font-size: 32px;
}


.footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    color: #444;
    border-top: 1px solid rgba(255,255,255,0.05);
}


@media (max-width: 768px) {
    .name { font-size: 34px; }
    .services-grid { grid-template-columns: 1fr; }
}