/* ============================
   RESET & BASE
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #08111f;
    color: #ffffff;
    line-height: 1.7;
}

/* ============================
   حل مشكلة الأرقام
   ============================ */
.phone-number,
.ltr-number {
    direction: ltr !important;
    display: inline-block !important;
    unicode-bidi: embed !important;
    font-feature-settings: "ss01" on !important;
    letter-spacing: normal !important;
}

/* ============================
   CONTAINER
   ============================ */
.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================
   HEADER
   ============================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #07101c;
    border-bottom: 2px solid #c7a356;
    z-index: 999;
    padding: 6px 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c7a356;
}

.logo-icon-fallback {
    width: 50px;
    height: 50px;
    background: #c7a356;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #08111f;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #c7a356;
    transition: width .3s ease;
}

nav a:hover {
    color: #c7a356;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 20px 40px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}


}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.4;
    color: #ffffff;
}

.hero h1 span {
    color: #c7a356;
    border-bottom: 4px solid #c7a356;
    display: inline-block;
    padding-bottom: 4px;
}

.hero p {
    font-size: 20px;
    color: #d0c8b8;
    margin: 25px 0 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c7a356;
    color: #08111f;
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(199, 163, 86, 0.25);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(199, 163, 86, 0.35);
}

.btn i {
    font-size: 18px;
}

/* ============================
   SERVICES
   ============================ */
.services {
    padding: 80px 20px;
    background: #0a1422;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #c7a356;
    margin-bottom: 50px;
    font-weight: 800;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1280px;
    margin: 0 auto;
}

.card {
    background: #0e1a2d;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(199, 163, 86, 0.25);
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #c7a356;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card .icon {
    font-size: 40px;
    color: #c7a356;
    margin-bottom: 15px;
}

.card h3 {
    color: #c7a356;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    color: #b8b0a0;
    font-size: 15px;
    line-height: 1.8;
}

/* ============================
   ABOUT
   ============================ */
.about {
    padding: 80px 20px;
    background: #08111f;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image .owner-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c7a356;
    box-shadow: 0 0 40px rgba(199, 163, 86, 0.2);
    transition: .3s;
}

.about-image .owner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(199, 163, 86, 0.3);
}

.about-image .owner-name {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 800;
    color: #c7a356;
}

.about-image .owner-title {
    font-size: 16px;
    color: #b8b0a0;
}

.about-text h2 {
    font-size: 36px;
    color: #c7a356;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text p {
    font-size: 19px;
    color: #b8b0a0;
    line-height: 2.2;
    margin-bottom: 15px;
}

.about-text .gold {
    color: #c7a356;
    font-weight: 700;
}

/* ============================
   CONTACT
   ============================ */
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #0e1a2d;
}

.contact h2 {
    font-size: 36px;
    color: #c7a356;
    margin-bottom: 35px;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.contact-card {
    background: #08111f;
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(199, 163, 86, 0.15);
    transition: .3s;
}

.contact-card:hover {
    border-color: #c7a356;
    transform: translateY(-4px);
}

.contact-card .icon {
    font-size: 30px;
    color: #c7a356;
    margin-bottom: 10px;
}

.contact-card h4 {
    color: #c7a356;
    font-size: 17px;
    margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
    color: #e8e0d0;
    font-size: 15px;
    text-decoration: none;
}

.contact-card a:hover {
    color: #c7a356;
    text-decoration: underline;
}

/* ============================
   MAP LINK
   ============================ */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c7a356;
    text-decoration: none;
    font-size: 14px;
    margin-top: 8px;
    transition: .3s;
}

.map-link:hover {
    color: #ffffff;
    gap: 12px;
}

.map-link i {
    font-size: 16px;
}

/* ============================
   WHATSAPP BUTTONS
   ============================ */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-top: 25px;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #128C7E;
}

/* ============================
   FOOTER
   ============================ */
footer {
    padding: 30px 20px;
    text-align: center;
    background: #060d17;
    border-top: 1px solid rgba(199, 163, 86, 0.25);
    color: #a8a09a;
    font-size: 15px;
}

footer .gold {
    color: #c7a356;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 4px 0;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #07101c;
        padding: 18px;
        gap: 12px;
        border-top: 1px solid rgba(199, 163, 86, 0.2);
        margin-top: 10px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-image .owner-img {
        width: 200px;
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services h2,
    .contact h2 {
        font-size: 30px;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 27px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        left: 15px;
        bottom: 15px;
    }

    .header-logo {
        width: 36px;
        height: 36px;
    }

    .about-image .owner-img {
        width: 150px;
        height: 150px;
    }
}