* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #f7f9fc;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: 0.3s;
}

header.scrolled {
    background: #0A66C2;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #0A66C2;
        flex-direction: column;
        display: none;
        text-align: center;
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
}

/* HERO */
.hero {
    height: 100vh;
    background: url('img/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    padding: 12px 25px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* CATEGORIES */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 20px;
}

/* .cat {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
} */
.cat {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.cat span {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.cat:hover {
    transform: translateY(-5px);
    background: #0A66C2;
    color: #fff;
}

.cat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.product {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.product:hover {
    transform: scale(1.04);
}

.product img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

/* CTA */
.cta {
    background: #0A66C2;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* FLOAT WHATSAPP */
.float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: #25D366;
    color: #fff;
    padding: 2px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 40px;
}




.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.feature span {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.feature h3 {
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: #666;
}

.feature:hover {
    transform: translateY(-5px);
    background: #0A66C2;
    color: #fff;
}

.feature:hover p {
    color: #eee;
}

/*  */

.about-pro {
    background: #f7f9fc;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* النص */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* الزر */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    background: #0A66C2;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #084a94;
}

/* الصورة */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
}

/* موبايل */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
}



.order-now {
    background: linear-gradient(135deg, #0A66C2, #084a94);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.order-now h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.order-now p {
    margin-bottom: 20px;
    font-size: 16px;
}

.order-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
}

/* 
 */
.reviews-section {
    background: #f7f9fc;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
}

.review {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    text-align: center;
}

/* النجوم */
.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* الاقتباس */
.review p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* اسم العميل */
.review h4 {
    color: #0A66C2;
    font-size: 14px;
}

/* حركة */
.review:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



.faq-section {
    background: #f7f9fc;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

/* السؤال */
.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

/* علامة + */
.faq-question::after {
    content: "+";
    position: absolute;
    left: 15px;
    font-size: 18px;
}

/* الإجابة */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 14px;
    color: #555;
    transition: 0.3s;
}

/* عند الفتح */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 15px 15px;
}

/* تغيير + إلى - */
.faq-item.active .faq-question::after {
    content: "-";
}

/* Hover */
.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-box {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
}

.contact-box a {
    color: #0A66C2;
    text-decoration: none;
    font-weight: bold;
}

.contact-box a:hover {
    text-decoration: none;
}

/*  */


.services {
    background: #fff;
}

.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.service {
    background: #f7f9fc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.service span {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
    color: #555;
}

.service:hover {
    transform: translateY(-5px);
    background: #0A66C2;
    color: #fff;
}

.service:hover p {
    color: #eee;
}

.services-note {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    color: #0A66C2;
}


.fb-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1877F2;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    width: fit-content;
    margin: 10px auto;
    transition: 0.3s;
}

.fb-box a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.fb-box i {
    font-size: 18px;
}

.fb-box:hover {
    transform: scale(1.05);
}

/*  */


.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* حركة بسيطة */
.contact-box:hover {
    transform: translateY(-5px);
}

/* ترتيب النص */
.contact-box p {
    margin-bottom: 8px;
    text-align: center;
}

/* الروابط */
.contact-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}
/*  */
.fridge-parts {
    background: #f7f9fc;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 25px;
    color: #555;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.part-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.part-box h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.part-box ul {
    list-style: none;
    padding: 0;
}

.part-box li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

.part-box:hover {
    transform: translateY(-5px);
    background: #0A66C2;
    color: #fff;
}

.part-box:hover li {
    color: #eee;
}

.section-note {
    text-align: center;
    margin-top: 25px;
    font-weight: bold;
    color: #0A66C2;
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-box p {
    font-size: 14px;
    color: #ccc;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #fff;
}

/* السوشيال */
.social {
    margin-top: 10px;
}

.social a {
    display: inline-block;
    margin-left: 10px;
    background: #0A66C2;
    padding: 8px;
    border-radius: 20%;
    color: #fff;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.1);
}

/* الجزء السفلي */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 30px;
    font-size: 14px;
}
a {
    text-decoration: none;
}

/* إزالة النقط من الليست */
.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}