
        :root {
            --primary: #092f3f;
            --secondary: #087f8c;
            --accent: #19b5a5;
            --light: #f3fafb;
            --white: #ffffff;
            --dark: #10232b;
            --text: #4c626b;
            --border: #dcecef;
            --shadow: 0 12px 35px rgba(9, 47, 63, .09);
            --radius: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family:
                Tahoma,
                Arial,
                "Noto Sans Arabic",
                sans-serif;
            background: #f8fcfd;
            color: var(--text);
            line-height: 1.9;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(1160px, 92%);
            margin: auto;
        }

        /* =========================
           HEADER
        ========================= */

        .navbar {
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
        }

        .navbar .container {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .logo {
            font-size: 25px;
            font-weight: 900;
            color: var(--primary);
            white-space: nowrap;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-menu a {
            padding: 9px 15px;
            border-radius: 12px;
            color: var(--dark);
            font-weight: 700;
            transition: .25s;
        }

        .nav-menu a:hover {
            background: var(--light);
            color: var(--secondary);
        }

        /* =========================
           FLOATING BUTTONS
        ========================= */

        .floating-buttons {
            position: fixed;
            left: 18px;
            bottom: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .float-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 22px;
            box-shadow: 0 8px 25px rgba(0,0,0,.18);
            transition: .25s;
        }

        .float-btn:hover {
            transform: translateY(-4px) scale(1.04);
        }

        .call-btn {
            background: #087f8c;
        }

        .whatsapp-btn {
            background: #20b95b;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            width: min(1160px, 92%);
            margin: 35px auto 0;
            min-height: 450px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            background:
                radial-gradient(circle at 80% 15%, rgba(25,181,165,.32), transparent 28%),
                linear-gradient(135deg, #082d3c, #0b5263);
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            align-items: center;
            padding: 65px;
            box-shadow: 0 20px 55px rgba(9,47,63,.18);
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border: 45px solid rgba(255,255,255,.05);
            border-radius: 50%;
            left: -90px;
            bottom: -100px;
        }

        .hero-text {
            position: relative;
            z-index: 2;
        }

        .hero-label {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.14);
            color: #c9fff8;
            border-radius: 50px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .hero h1 {
            color: white;
            font-size: clamp(38px, 5vw, 65px);
            line-height: 1.15;
            margin-bottom: 18px;
            font-weight: 900;
        }

        .hero p {
            color: #dceef1;
            font-size: 19px;
            max-width: 650px;
            margin-bottom: 28px;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-call,
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 24px;
            border-radius: 13px;
            font-weight: 800;
            transition: .25s;
        }

        .btn-call {
            background: var(--accent);
            color: #062e32;
        }

        .btn-whatsapp {
            background: white;
            color: var(--primary);
        }

        .btn-call:hover,
        .btn-whatsapp:hover {
            transform: translateY(-3px);
        }

        /* =========================
           PLUMBING ILLUSTRATION
        ========================= */

        .hero-img {
            position: relative;
            min-height: 330px;
            display: grid;
            place-items: center;
            z-index: 2;
        }

        .plumbing-art {
            width: 280px;
            height: 280px;
            position: relative;
        }

        .pipe-a,
        .pipe-b,
        .pipe-c {
            position: absolute;
            border: 18px solid #d7edf0;
            background: transparent;
        }

        .pipe-a {
            width: 150px;
            height: 110px;
            border-right: 0;
            border-bottom: 0;
            border-radius: 35px 0 0 0;
            top: 55px;
            left: 25px;
        }

        .pipe-b {
            width: 95px;
            height: 150px;
            border-left: 0;
            border-top: 0;
            border-radius: 0 0 35px 0;
            top: 105px;
            right: 25px;
        }

        .pipe-c {
            width: 100px;
            height: 80px;
            border-right: 0;
            border-top: 0;
            border-radius: 0 0 0 35px;
            bottom: 25px;
            left: 45px;
        }

        .water-drop {
            position: absolute;
            width: 62px;
            height: 82px;
            background: var(--accent);
            border-radius: 55% 55% 65% 65%;
            transform: rotate(45deg);
            right: 83px;
            top: 75px;
            box-shadow: 0 10px 25px rgba(25,181,165,.35);
        }

        .water-drop::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 22px;
            background: rgba(255,255,255,.45);
            border-radius: 50%;
            top: 15px;
            left: 15px;
        }

        /* =========================
           GENERAL CONTENT
        ========================= */

        main {
            padding-bottom: 30px;
        }

        .content {
            width: min(1040px, 92%);
            margin: 38px auto;
            background: white;
            padding: 42px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .content h2 {
            color: var(--primary);
            font-size: 28px;
            line-height: 1.5;
            margin: 0 0 15px;
        }

        .content h3 {
            color: var(--secondary);
            font-size: 21px;
            margin: 25px 0 10px;
        }

        .content p {
            margin-bottom: 18px;
        }

        .content strong {
            color: var(--primary);
        }

        .service-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 20px 0 28px;
        }

        .service-list li {
            padding: 13px 16px;
            background: var(--light);
            border-right: 4px solid var(--accent);
            border-radius: 10px;
        }

        /* =========================
           SEO BOXES
        ========================= */

        .seo-titles {
            width: min(1040px, 92%);
            margin: 38px auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .seo-box {
            background: white;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(9,47,63,.05);
            transition: .25s;
        }

        .seo-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .seo-box h2 {
            color: var(--primary);
            font-size: 21px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        /* =========================
           ARTICLES
        ========================= */

        .article-block {
            padding: 10px 0 30px;
        }

        .article-block + .article-block {
            border-top: 1px dashed #cfe1e5;
            padding-top: 30px;
        }

        .article-block h2 {
            font-size: 27px;
        }

        .article-block ul,
        .content ul {
            padding-right: 25px;
            margin: 12px 0 20px;
        }

        .article-block li,
        .content li {
            margin-bottom: 7px;
        }

        hr {
            border: 0;
            border-top: 1px dashed #cfe1e5;
            margin: 30px 0;
        }

        /* =========================
           CTA
        ========================= */

        .inline-cta {
            display: inline-flex;
            padding: 10px 18px;
            border-radius: 12px;
            background: var(--primary);
            color: white;
            font-weight: 800;
            margin-top: 5px;
        }

        /* =========================
           GALLERY
        ========================= */

        .gallery-section {
            width: min(1040px, 92%);
            margin: 45px auto;
            text-align: center;
        }

        .gallery-section h2 {
            color: var(--primary);
            font-size: 30px;
            margin-bottom: 25px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .gallery-item {
            min-height: 260px;
            border-radius: 20px;
            overflow: hidden;
            background:
                linear-gradient(145deg,#d9f2f2,#f7ffff);
            border: 1px solid var(--border);
            position: relative;
        }

        .gallery-item::before {
            content: "أعمال سباكة بجدة";
            position: absolute;
            inset: auto 15px 15px;
            background: rgba(8,47,63,.9);
            color: white;
            padding: 8px;
            border-radius: 10px;
            z-index: 2;
            font-weight: 700;
        }

        .gallery-icon {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            font-size: 75px;
        }

        .visit-works {
            display: inline-block;
            margin-top: 22px;
            padding: 13px 25px;
            background: var(--secondary);
            color: white;
            border-radius: 13px;
            font-weight: 800;
        }

        /* =========================
           AREA CARDS
        ========================= */

        .area-card {
            background: #f8fcfd;
            padding: 25px;
            border-radius: 17px;
            border: 1px solid var(--border);
            margin-bottom: 22px;
        }

        .area-card h2 {
            margin-bottom: 10px;
        }

        /* =========================
           KEYWORDS
        ========================= */

        .keywords-section {
            width: min(1040px, 92%);
            margin: 45px auto;
            background: white;
            padding: 40px;
            border-radius: 22px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .keywords-section h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .keywords-box {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .keywords-box a {
            padding: 9px 15px;
            background: var(--light);
            color: var(--secondary);
            border: 1px solid #cce5e8;
            border-radius: 50px;
            font-weight: 700;
            transition: .2s;
        }

        .keywords-box a:hover {
            background: var(--secondary);
            color: white;
        }

        /* =========================
           FAQ
        ========================= */

        .faq-section {
            width: min(1040px, 92%);
            margin: 45px auto;
        }

        .faq-section > h2 {
            text-align: center;
            color: var(--primary);
            font-size: 30px;
            margin-bottom: 25px;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 15px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: 0;
            background: white;
            text-align: right;
            padding: 19px 22px;
            font-family: inherit;
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
            cursor: pointer;
            position: relative;
        }

        .faq-question::before {
            content: "+";
            position: absolute;
            left: 20px;
            font-size: 25px;
            color: var(--accent);
        }

        .faq-answer {
            display: none;
            padding: 0 22px 20px;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question::before {
            content: "−";
        }

        /* =========================
           FINAL CTA
        ========================= */

        .final-cta {
            width: min(1040px, 92%);
            margin: 45px auto;
            padding: 50px;
            text-align: center;
            border-radius: 25px;
            background: linear-gradient(135deg,#082d3c,#087f8c);
            color: white;
        }

        .final-cta h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .final-cta p {
            margin-bottom: 22px;
            color: #e2f4f5;
        }

        /* =========================
           FOOTER
        ========================= */

        .footer {
            background: #061f29;
            color: #cfe2e5;
            text-align: center;
            padding: 35px 20px;
            margin-top: 50px;
        }

        .footer strong {
            color: white;
        }

        .footer a {
            color: var(--accent);
            font-weight: 800;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 850px) {

            .hero {
                grid-template-columns: 1fr;
                padding: 45px 30px;
                text-align: center;
            }

            .hero p {
                margin-right: auto;
                margin-left: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-img {
                min-height: 250px;
            }

            .seo-titles {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .service-list {
                grid-template-columns: 1fr;
            }

            .nav-menu a {
                padding: 7px 8px;
                font-size: 14px;
            }
        }

        @media (max-width: 600px) {

            .navbar .container {
                min-height: 65px;
            }

            .logo {
                font-size: 20px;
            }

            .nav-menu a:nth-child(2) {
                display: none;
            }

            .hero {
                margin-top: 18px;
                border-radius: 20px;
                padding: 35px 20px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 16px;
            }

            .content,
            .keywords-section {
                padding: 25px 20px;
            }

            .content h2 {
                font-size: 23px;
            }

            .final-cta {
                padding: 35px 20px;
            }

            .final-cta h2 {
                font-size: 27px;
            }

            .floating-buttons {
                left: 12px;
                bottom: 12px;
            }

            .float-btn {
                height: 48px;
            }
        }








        
.hero-img {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

}

.hero-img img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
    display: block;

}




.gallery-section {
    padding: 60px 0;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    background: #f1f5f9;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.visit-works {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    border-radius: 10px;
    background: #075985;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

}

@media (max-width: 480px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #f1f5f9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* الكلمة تحت الصورة */
.gallery-caption {
    padding: 12px 10px;
    background: #fff;
    color: #075985;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
}


/* قسم التواصل */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #075985;
            --secondary: #0f766e;
            --text: #1e293b;
            --muted: #64748b;
            --border: #e2e8f0;
            --light: #f8fafc;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Tahoma, Arial, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.9;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: min(1050px, 92%);
            margin: auto;
        }


        /* =========================
           HEADER
        ========================== */

        header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 22px;
        }

        .menu a {
            color: #334155;
            font-size: 15px;
            transition: .2s;
        }

        .menu a:hover,
        .menu .active {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: #ffffff;
            padding: 9px 18px;
            border-radius: 10px;
            font-weight: bold;
        }


        /* =========================
           HERO
        ========================== */

        .contact-hero {
            padding: 75px 0 60px;
            text-align: center;
            background: linear-gradient(
                135deg,
                #e0f2fe,
                #f0fdfa
            );
            border-bottom: 1px solid #dbeafe;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: var(--primary);
        }

        .contact-hero h1 {
            font-size: clamp(34px, 5vw, 52px);
            color: #0c4a6e;
            line-height: 1.4;
            margin-bottom: 18px;
        }

        .contact-hero p {
            max-width: 750px;
            margin: auto;
            color: #475569;
            font-size: 18px;
        }


        /* =========================
           CONTACT OPTIONS
        ========================== */

        main {
            padding: 60px 0;
        }

        .intro {
            max-width: 800px;
            margin: 0 auto 35px;
            text-align: center;
        }

        .intro h2 {
            color: var(--primary);
            font-size: 29px;
            margin-bottom: 15px;
        }

        .intro p {
            color: #475569;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-bottom: 30px;
        }

        .contact-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: .25s;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
        }

        .contact-icon {
            width: 65px;
            height: 65px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #e0f2fe;
            color: var(--primary);
            font-size: 30px;
        }

        .contact-card h2 {
            font-size: 23px;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .contact-card p {
            color: var(--muted);
            margin-bottom: 20px;
        }

        .contact-btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: bold;
        }

        .call-btn {
            background: var(--primary);
            color: #ffffff;
        }

        .whatsapp-btn {
            background: var(--secondary);
            color: #ffffff;
        }


        /* =========================
           CONTENT
        ========================== */

        .content-box {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
        }

        .content-box h2 {
            color: var(--primary);
            font-size: 27px;
            margin-bottom: 18px;
            line-height: 1.5;
        }

        .content-box p {
            color: #475569;
            margin-bottom: 15px;
        }

        .content-box ul {
            padding-right: 25px;
        }

        .content-box li {
            margin-bottom: 8px;
        }

        .content-box a {
            color: var(--primary);
            font-weight: bold;
        }


        /* =========================
           FINAL CTA
        ========================== */

        .final-cta {
            background: linear-gradient(
                135deg,
                #075985,
                #0f766e
            );
            color: #ffffff;
            text-align: center;
            padding: 50px 25px;
            border-radius: 25px;
        }

        .final-cta h2 {
            font-size: 30px;
            margin-bottom: 12px;
        }

        .final-cta p {
            color: #e0f2fe;
            margin-bottom: 22px;
        }

        .final-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .final-buttons a {
            display: inline-block;
            background: #ffffff;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: bold;
        }


        /* =========================
           FOOTER
        ========================== */

        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 35px 0;
            margin-top: 50px;
        }

        footer p {
            text-align: center;
            margin-bottom: 8px;
        }

        footer a {
            color: #7dd3fc;
        }


        /* =========================
           FLOATING BUTTONS
        ========================== */

        .floating {
            position: fixed;
            bottom: 20px;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ffffff;
            font-size: 23px;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(0,0,0,.18);
        }

        .floating-call {
            left: 20px;
            background: var(--primary);
        }

        .floating-whatsapp {
            right: 20px;
            background: #16a34a;
        }


        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 768px) {

            .menu {
                display: none;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .content-box {
                padding: 25px 20px;
            }

            .intro h2,
            .content-box h2 {
                font-size: 24px;
            }

        }

/* قسم التواصل */


/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 75px 0;
    background: #f8fafc;
}


/* عنوان القسم */

.gallery-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 30px;
    background: #e0f2fe;
    color: #075985;
    font-size: 14px;
    font-weight: 700;
}

.gallery-header h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.5;
}

.gallery-header p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}


/* شبكة الصور */

.gallery-grid {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* الكارت */

.gallery-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(15, 23, 42, 0.10);
}


/* الصورة */

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #e2e8f0;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}


/* معلومات الصورة */

.gallery-info {
    padding: 18px 18px 20px;

    text-align: right;
}

.gallery-info h3 {
    margin: 0 0 7px;

    color: #075985;

    font-size: 19px;

    line-height: 1.6;
}

.gallery-info p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* زر التواصل */

.gallery-action {
    margin-top: 35px;

    text-align: center;
}

.visit-works {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 27px;

    background: #075985;

    color: #ffffff;

    border-radius: 11px;

    font-size: 16px;

    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}

.visit-works:hover {
    background: #0c4a6e;

    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 560px) {

    .gallery-section {
        padding: 55px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .gallery-header {
        width: 90%;
        margin-bottom: 30px;
    }

    .gallery-header h2 {
        font-size: 27px;
    }

    .gallery-info {
        padding: 15px;
    }

}

/*قسم رقم سباك */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #075985;
            --secondary: #0f766e;
            --light: #f0f9ff;
            --text: #1e293b;
            --muted: #64748b;
            --border: #e2e8f0;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Tahoma, Arial, sans-serif;
            background: #f8fafc;
            color: var(--text);
            line-height: 1.9;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: min(1120px, 92%);
            margin: auto;
        }


        /* Header */

        header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            color: var(--primary);
            font-size: 22px;
            font-weight: 800;
        }

        .menu {
            display: flex;
            gap: 22px;
            list-style: none;
        }

        .menu a {
            color: #334155;
            font-size: 15px;
        }

        .menu a:hover {
            color: var(--primary);
        }

        .nav-call {
            background: var(--primary);
            color: #fff;
            padding: 9px 18px;
            border-radius: 10px;
            font-weight: bold;
        }


        /* Hero */

        .hero {
            background: linear-gradient(135deg, #e0f2fe, #f0fdfa);
            padding: 65px 0;
            border-bottom: 1px solid #dbeafe;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 45px;
            align-items: center;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 18px;
        }

        .breadcrumb a {
            color: var(--primary);
        }

        h1 {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.3;
            color: #0c4a6e;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            color: #475569;
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 12px;
            font-weight: bold;
        }

        .call {
            background: var(--primary);
            color: white;
        }

        .whatsapp {
            background: var(--secondary);
            color: white;
        }

        .number-box {
            background: #fff;
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
        }

        .phone-icon {
            font-size: 55px;
            margin-bottom: 12px;
        }

        .number-box h2 {
            color: #0c4a6e;
            margin-bottom: 12px;
        }

        .number-box .number {
            display: block;
            color: var(--primary);
            font-size: 24px;
            font-weight: bold;
            margin: 15px 0;
        }


        /* Content */

        main {
            padding: 55px 0;
        }

        .section {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
        }

        h2 {
            color: #075985;
            font-size: 28px;
            line-height: 1.5;
            margin-bottom: 18px;
        }

        h3 {
            color: #0f766e;
            font-size: 21px;
            margin: 25px 0 10px;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            padding-right: 25px;
        }

        li {
            margin-bottom: 8px;
        }

        .section a {
            color: var(--primary);
            font-weight: bold;
        }


        /* Service cards */

        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 25px;
        }

        .service {
            background: #f8fafc;
            padding: 25px;
            border-radius: 17px;
            border: 1px solid var(--border);
        }

        .service h3 {
            margin-top: 0;
        }


        /* CTA */

        .cta {
            background: linear-gradient(135deg, #075985, #0f766e);
            color: #fff;
            padding: 45px 30px;
            text-align: center;
            border-radius: 25px;
            margin-top: 35px;
        }

        .cta h2 {
            color: #fff;
        }

        .cta p {
            color: #e0f2fe;
        }

        .cta .btn {
            background: #fff;
            color: #075985;
            margin-top: 10px;
        }


        /* FAQ */

        .faq {
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
        }

        .faq:last-child {
            border-bottom: 0;
        }

        .faq h3 {
            color: #0f172a;
            margin: 0 0 8px;
        }


        /* Floating */

        .floating {
            position: fixed;
            bottom: 18px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 23px;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(0,0,0,.18);
        }

        .floating-call {
            left: 18px;
            background: #075985;
        }

        .floating-wa {
            right: 18px;
            background: #16a34a;
        }


        /* Footer */

        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 35px 0;
            margin-top: 30px;
        }

        footer p {
            text-align: center;
            margin-bottom: 5px;
        }

        footer a {
            color: #7dd3fc;
        }


        /* Mobile */

        @media (max-width: 850px) {

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .menu {
                display: none;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 25px 20px;
            }

            h2 {
                font-size: 24px;
            }

        }
/*قسم رقم سباك */

/*قسم معلم سباك*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #075985;
            --secondary: #0f766e;
            --light: #f0f9ff;
            --text: #24313d;
            --muted: #64748b;
            --white: #ffffff;
            --border: #dbeafe;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Tahoma, Arial, sans-serif;
            background: #f8fafc;
            color: var(--text);
            line-height: 1.9;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: min(1120px, 92%);
            margin: auto;
        }

        /* Header */

        header {
            background: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
        }

        .menu {
            display: flex;
            gap: 22px;
            list-style: none;
        }

        .menu a {
            color: #334155;
            font-size: 15px;
            transition: .2s;
        }

        .menu a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: white;
            padding: 9px 18px;
            border-radius: 10px;
            font-weight: bold;
        }

        /* Hero */

        .page-hero {
            background:
                linear-gradient(135deg, #e0f2fe, #f0fdfa);
            padding: 65px 0;
            border-bottom: 1px solid var(--border);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 45px;
            align-items: center;
        }

        .breadcrumbs {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .breadcrumbs a {
            color: var(--primary);
        }

        h1 {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.3;
            color: #0c4a6e;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 18px;
            color: #475569;
            max-width: 700px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 12px;
            font-weight: bold;
            display: inline-block;
        }

        .btn-call {
            background: var(--primary);
            color: #fff;
        }

        .btn-wa {
            background: var(--secondary);
            color: #fff;
        }

        .hero-card {
            background: #fff;
            padding: 30px;
            border-radius: 28px;
            box-shadow: 0 15px 45px rgba(15, 23, 42, .08);
            border: 1px solid #e2e8f0;
        }

        .hero-card-icon {
            font-size: 55px;
            margin-bottom: 15px;
        }

        .hero-card h2 {
            font-size: 23px;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .hero-card p {
            color: var(--muted);
        }

        /* Content */

        main {
            padding: 55px 0;
        }

        .content-section {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            margin-bottom: 25px;
            border: 1px solid #e2e8f0;
        }

        h2 {
            font-size: 28px;
            color: #075985;
            margin-bottom: 18px;
            line-height: 1.5;
        }

        h3 {
            font-size: 21px;
            color: #0f766e;
            margin: 25px 0 10px;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            padding-right: 25px;
            margin: 15px 0;
        }

        li {
            margin-bottom: 8px;
        }

        .content-section a {
            color: var(--primary);
            font-weight: bold;
        }

        /* Services */

        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 25px;
        }

        .service {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 25px;
            border-radius: 17px;
        }

        .service h3 {
            margin-top: 0;
        }

        /* CTA */

        .cta {
            background: linear-gradient(135deg, #075985, #0f766e);
            color: white;
            padding: 45px 30px;
            border-radius: 25px;
            text-align: center;
            margin-top: 35px;
        }

        .cta h2 {
            color: white;
        }

        .cta p {
            color: #e0f2fe;
        }

        .cta .btn {
            background: white;
            color: #075985;
            margin-top: 10px;
        }

        /* FAQ */

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 18px 0;
        }

        .faq-item:last-child {
            border-bottom: 0;
        }

        .faq-item h3 {
            color: #0f172a;
            margin: 0 0 8px;
        }

        /* Floating buttons */

        .floating {
            position: fixed;
            bottom: 18px;
            z-index: 999;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 23px;
            box-shadow: 0 8px 25px rgba(0,0,0,.18);
        }

        .floating-call {
            left: 18px;
            background: #075985;
        }

        .floating-wa {
            right: 18px;
            background: #16a34a;
        }

        /* Footer */

        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 35px 0;
            margin-top: 30px;
        }

        footer p {
            text-align: center;
            margin: 0;
            font-size: 14px;
        }

        footer a {
            color: #7dd3fc;
        }

        @media (max-width: 850px) {

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .menu {
                display: none;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .content-section {
                padding: 25px 20px;
            }

            h2 {
                font-size: 24px;
            }
        }
/*قسم معلم سباك*/

/*قسم باك في جدة*/


        :root {
            --primary: #083b4c;
            --secondary: #087f8c;
            --accent: #18b6a3;
            --dark: #10262e;
            --text: #52676e;
            --light: #f1fafb;
            --white: #ffffff;
            --border: #dcecef;
            --shadow: 0 10px 30px rgba(8, 59, 76, .07);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Tahoma, Arial, "Noto Sans Arabic", sans-serif;
            background: #f7fbfc;
            color: var(--text);
            line-height: 1.9;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: min(1120px, 92%);
            margin: auto;
        }


        /* =========================
           HEADER
        ========================== */

        header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            color: var(--primary);
            font-size: 24px;
            font-weight: 900;
        }

        .logo span {
            color: var(--accent);
        }

        nav {
            display: flex;
            gap: 8px;
        }

        nav a {
            color: var(--dark);
            font-weight: 700;
            padding: 8px 14px;
            border-radius: 10px;
        }

        nav a:hover {
            background: var(--light);
            color: var(--secondary);
        }


        /* =========================
           INNER PAGE TOP
        ========================== */

        .page-top {
            background:
                linear-gradient(
                    135deg,
                    #083b4c,
                    #087f8c
                );

            color: white;
            padding: 55px 0;
            position: relative;
            overflow: hidden;
        }

        .page-top::before {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            border: 60px solid rgba(255,255,255,.05);
            border-radius: 50%;
            left: -120px;
            top: -150px;
        }

        .page-top::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            background: rgba(24,182,163,.15);
            border-radius: 50%;
            right: 10%;
            bottom: -100px;
        }

        .page-top-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            margin-bottom: 18px;
            font-size: 14px;
            color: #cdebed;
        }

        .breadcrumb a {
            color: white;
        }

        .page-top h1 {
            font-size: clamp(34px, 5vw, 52px);
            line-height: 1.3;
            margin-bottom: 12px;
            color: white;
        }

        .page-top p {
            max-width: 800px;
            font-size: 18px;
            color: #e0f3f5;
        }


        /* =========================
           CONTENT
        ========================== */

        main {
            padding: 35px 0 60px;
        }

        .content {
            width: min(1040px, 92%);
            margin: 0 auto 32px;
            background: white;
            padding: 38px;
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .content h2 {
            color: var(--primary);
            font-size: 28px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .content h3 {
            color: var(--secondary);
            font-size: 21px;
            margin: 25px 0 10px;
        }

        .content p {
            margin-bottom: 17px;
        }

        .content strong {
            color: var(--primary);
        }

        .content ul {
            padding-right: 25px;
            margin: 15px 0 20px;
        }

        .content li {
            margin-bottom: 7px;
        }

        hr {
            border: 0;
            border-top: 1px dashed #cfe0e4;
            margin: 30px 0;
        }


        /* =========================
           SERVICE GRID
        ========================== */

        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 22px 0;
        }

        .service-card {
            background: var(--light);
            padding: 22px;
            border-radius: 15px;
            border-right: 4px solid var(--accent);
        }

        .service-card h3 {
            margin: 0 0 6px;
            font-size: 19px;
        }

        .service-card p {
            margin: 0;
            font-size: 15px;
        }


        /* =========================
           INTERNAL LINKS
        ========================== */

        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .internal-links a {
            background: var(--light);
            border: 1px solid var(--border);
            color: var(--secondary);
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 700;
        }

        .internal-links a:hover {
            background: var(--secondary);
            color: white;
        }


        /* =========================
           CTA
        ========================== */

        .cta-box {
            background:
                linear-gradient(
                    135deg,
                    #083b4c,
                    #0a6c78
                );

            color: white;
            padding: 40px;
            border-radius: 22px;
            text-align: center;
            margin-top: 35px;
        }

        .cta-box h2 {
            color: white;
            margin-bottom: 10px;
        }

        .cta-box p {
            color: #dff3f4;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .cta-buttons a {
            padding: 12px 23px;
            border-radius: 12px;
            font-weight: 800;
        }

        .call {
            background: var(--accent);
            color: #073438;
        }

        .whatsapp {
            background: white;
            color: var(--primary);
        }


        /* =========================
           FAQ
        ========================== */

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .faq-question {
            width: 100%;
            border: 0;
            background: white;
            text-align: right;
            padding: 18px 20px;
            font-family: inherit;
            font-size: 17px;
            font-weight: 800;
            color: var(--primary);
            cursor: pointer;
        }

        .faq-answer {
            display: none;
            padding: 0 20px 18px;
        }

        .faq-item.active .faq-answer {
            display: block;
        }


        /* =========================
           FLOATING
        ========================== */

        .floating {
            position: fixed;
            left: 17px;
            bottom: 18px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .floating a {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: white;
            font-size: 21px;
            box-shadow: 0 8px 20px rgba(0,0,0,.18);
        }

        .floating-call {
            background: var(--secondary);
        }

        .floating-whatsapp {
            background: #20b95b;
        }


        /* =========================
           FOOTER
        ========================== */

        footer {
            background: #061f29;
            color: #c9dfe3;
            text-align: center;
            padding: 32px 15px;
        }

        footer strong {
            color: white;
        }

        footer a {
            color: var(--accent);
            font-weight: 800;
        }


        /* =========================
           RESPONSIVE
        ========================== */

        @media(max-width: 700px) {

            .header-inner {
                min-height: 65px;
            }

            .logo {
                font-size: 20px;
            }

            nav a {
                padding: 6px 8px;
                font-size: 13px;
            }

            .page-top {
                padding: 40px 0;
            }

            .page-top h1 {
                font-size: 35px;
            }

            .page-top p {
                font-size: 16px;
            }

            .content {
                padding: 25px 20px;
            }

            .content h2 {
                font-size: 23px;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 30px 20px;
            }

        }

/*قسم سباك في جدة*/