/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --dark: #1A1A1A;
    --darker: #111111;
    --light: #F5F0EB;
    --white: #FFFFFF;
    --gray: #888888;
    --text: #333333;
    --radius: 8px;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Typography === */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.logo-ar, .logo-ar-sm, .hero-title-ar { font-family: 'Noto Kufi Arabic', sans-serif; }

/* === Buttons === */
.btn {
    display: inline-block; padding: 0.85rem 2rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem; transition: all 0.3s; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-secondary { color: var(--gold); border-bottom: 2px solid var(--gold); border-radius: 0; padding: 0.25rem 0; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(17,17,17,0.95); backdrop-filter: blur(10px); padding: 1rem 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { font-size: 1.5rem; }
.logo-en { display: block; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.logo-ar { display: block; font-size: 0.7rem; color: var(--gray); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--light); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* === Hero === */
.hero {
    position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); text-align: center; color: var(--white);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; padding: 0 1.5rem; }
.hero-title-ar { font-size: 3rem; color: var(--gold); margin-bottom: 0.5rem; direction: rtl; }
.hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.8; margin-bottom: 2rem; font-weight: 300; }
.hero-content .btn { margin: 0 0.5rem; }

/* === Sections === */
.section { padding: 5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray); font-size: 1.1rem; }
.section-dark .section-subtitle { color: var(--gold-light); }

/* === About Grid === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.05rem; color: #555; }
.image-placeholder {
    background: linear-gradient(135deg, var(--dark), #2a2a2a); border-radius: var(--radius);
    height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gold);
}
.image-placeholder span { font-size: 4rem; margin-bottom: 1rem; }
.image-placeholder p { font-size: 1.1rem; opacity: 0.7; }

/* === Services Grid === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.2); border-radius: var(--radius);
    padding: 2rem; text-align: center; transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }

/* === Testimonials === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    background: var(--light); border-radius: var(--radius); padding: 2rem;
    border-left: 4px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 1rem; color: #555; }

/* === CTA === */
.cta-section { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: var(--white); }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* === Footer === */
.footer { background: var(--darker); color: var(--light); padding: 3rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.3rem; }
.footer h4 { color: var(--gold); margin-bottom: 0.5rem; }
.footer p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; }
.social-links a { display: block; color: var(--gray); margin-bottom: 0.25rem; transition: color 0.3s; }
.social-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #333; padding-top: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: var(--gray); text-align: center; }

/* === Services Page === */
.page-header {
    padding: 8rem 0 3rem; text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460); color: var(--white);
}
.page-header h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--gold-light); font-size: 1.1rem; }

.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-full-card {
    background: var(--white); border: 1px solid #e5e5e5; border-radius: var(--radius);
    padding: 2rem; display: flex; justify-content: space-between; align-items: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.service-full-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: var(--gold); }
.service-full-card .info h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.service-full-card .info p { font-size: 0.9rem; color: var(--gray); }
.service-full-card .info .duration { font-size: 0.8rem; color: var(--gold); margin-top: 0.25rem; }
.service-full-card .price-tag { font-size: 1.5rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* === About Page === */
.about-story { max-width: 800px; margin: 0 auto; }
.about-story p { font-size: 1.05rem; color: #555; margin-bottom: 1.5rem; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { text-align: center; padding: 2rem; }
.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--gray); }

/* === Contact Page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card { background: var(--light); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { color: var(--gold); margin-bottom: 0.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 0.85rem 1rem; border: 1px solid #ddd; border-radius: var(--radius);
    font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold);
}
.cal-embed { border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }

/* === Link in Bio === */
.linkinbio {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 2rem;
}
.linkinbio-card {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,110,0.3); border-radius: 1rem;
    padding: 3rem 2rem; text-align: center; max-width: 420px; width: 100%; color: var(--white);
}
.linkinbio-card .avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--gold); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.linkinbio-card h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.linkinbio-card .ar-name { font-family: 'Noto Kufi Arabic', sans-serif; color: var(--gold); margin-bottom: 0.5rem; direction: rtl; }
.linkinbio-card .tagline { color: var(--gray); margin-bottom: 2rem; font-size: 0.9rem; }
.bio-links { display: flex; flex-direction: column; gap: 0.75rem; }
.bio-link {
    display: block; padding: 1rem; border: 1px solid rgba(201,169,110,0.4); border-radius: var(--radius);
    color: var(--white); font-weight: 500; transition: all 0.3s; text-align: center;
}
.bio-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.bio-link.whatsapp { border-color: #25D366; color: #25D366; }
.bio-link.whatsapp:hover { background: #25D366; color: var(--white); }
.bio-link.primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.bio-link.primary:hover { background: var(--gold-light); }

/* === Map === */
.map-container { border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem; }

/* === Mobile === */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(17,17,17,0.98); padding: 1rem 1.5rem; gap: 1rem;
    }
    .nav-links.open { display: flex; }
    .hero-title-ar { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-content .btn { display: block; margin: 0.5rem auto; max-width: 250px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2rem; }
    .services-full-grid { grid-template-columns: 1fr; }
}
