/* ======================
   RESET + GLOBAL
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    background: #f8f8f8;
    color: #222;
    line-height: 1.8;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

/* ======================
   NAVBAR
====================== */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #E63946;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #E63946;
}

/* ======================
   HERO
====================== */
.hero {
    height: 85vh;
    background: url("assets/hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #E63946;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s;
}

.btn:hover {
    background: #b72c37;
}

/* ======================
   ABOUT (من نحن)
====================== */
.about p {
    font-size: 18px;
    max-width: 850px;
    margin: auto;
    color: #444;
}

/* ======================
   خدماتنا
====================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.service-item h3 {
    margin-bottom: 12px;
    color: #E63946;
}

/* ======================
   لقطات من المحل (Gallery)
====================== */
.gallery-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ======================
   العلامات التجارية
====================== */
.brands h2 { margin-bottom: 25px; }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.brand-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.brand-item:hover {
    transform: translateY(-4px);
}

.brand-item img {
    width: 90px;
    margin-bottom: 10px;
}

/* ======================
   اسأل عن قطعة
====================== */
.ask textarea {
    width: 90%;
    height: 120px;
    margin-top: 20px;
    padding: 15px;
    resize: none;
    border-radius: 10px;
    border: 1px solid #bbb;
    font-size: 16px;
}

/* ======================
   اتصل بنا
====================== */
.contact-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border-radius: 10px;
}

/* ======================
   FOOTER
====================== */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: 40px;
    font-size: 16px;
}