﻿
:root {
    --brand: #2783C3;
    --brand2: #3ca6f0;
    --ink: #0f172a;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #ffffff;
    --soft: #f6f7fb;
    --dark: #0b1220;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
    color: var(--ink);
    background: var(--bg)
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    width: 100%
}

/* Top bar */
.topbar {
    background: #0a0f1a;
    color: #fff;
    font-size: 13px;
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

    .topbar .left, .topbar .right {
        display: flex;
        gap: 14px;
        align-items: center;
        flex-wrap: wrap
    }

.lang {
    border: 1px solid rgba(255,255,255,.25);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px
}

    .brand .logoText {
        font-weight: 900;
        font-size: 18px
    }

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap
}

    .nav a {
        font-size: 14px;
        color: #111827;
        opacity: .9
    }

        .nav a:hover {
            color: var(--brand)
        }

.searchBtn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none
}

.burger {
    display: none
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #000;
}

.slides {
    height: 100%;
    display: flex;
    transition: transform .7s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

    .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(39,131,195,.82), rgba(60,166,240,.18));
        z-index: 1;
    }

    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 0;
        filter: saturate(1.05) contrast(1.02);
    }

.s1::after {
    background-image: url("https://images.unsplash.com/photo-1555617981-dac3880eac6e?auto=format&fit=crop&w=1600&q=60")
}

.s2::after {
    background-image: url("https://images.unsplash.com/photo-1551703599-6b3e8379aa8f?auto=format&fit=crop&w=1600&q=60")
}

.s3::after {
    background-image: url("https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1600&q=60")
}

.heroContent {
    position: relative;
    z-index: 2;
    width: 100%;
}

.heroBox {
    max-width: 820px;
}

    .heroBox h1 {
        margin: 0 0 10px;
        font-size: 34px;
        letter-spacing: .2px
    }

    .heroBox p {
        margin: 0 0 18px;
        opacity: .95;
        line-height: 1.5
    }

.btnPrimary {
    display: inline-block;
    background: #fff;
    color: var(--brand);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.12);
    cursor: pointer;
}

    .dot.active {
        background: #fff
    }

/* CTA buttons row */
.ctaRow {
    padding: 22px 0 10px;
    background: #fff
}

.ctaGrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.cta {
    background: var(--brand);
    color: #fff;
    padding: 14px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(15,23,42,.12);
    transition: .2s;
}

    .cta:hover {
        transform: translateY(-2px);
        background: var(--brand2)
    }

/* Categories */
.sectionPad {
    padding: 26px 0
}

.kicker {
    color: var(--brand);
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: .3px
}

.title {
    font-size: 28px;
    margin: 8px 0 8px
}

.para {
    color: var(--muted);
    line-height: 1.75;
    max-width: 900px;
    margin: 0
}

.catGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 16px;
}

.catCard {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
    padding: 16px;
    min-height: 110px;
}

    .catCard h4 {
        margin: 0 0 8px
    }

    .catCard p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6
    }

/* About products */
.aboutBox {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 18px;
    margin-top: 14px;
}

    .aboutBox .tagline {
        font-weight: 900;
        margin: 0 0 10px;
    }

.aboutGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    align-items: stretch;
    margin-top: 14px;
}

.aboutImage {
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(39,131,195,.15), rgba(60,166,240,.08)), url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=60");
    background-size: cover;
    background-position: center;
    min-height: 220px;
}

/* Footer */
footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 40px 0 18px;
    margin-top: 18px
}

.footGrid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1fr 1.1fr;
    gap: 18px
}

.footTitle {
    font-weight: 900;
    margin: 0 0 12px;
    color: #fff
}

.footList a {
    display: block;
    padding: 6px 0;
    color: #cbd5e1;
    opacity: .9
}

    .footList a:hover {
        color: #fff
    }

.newsletter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

    .newsletter input {
        flex: 1;
        min-width: 180px;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.04);
        color: #fff;
        outline: none
    }

    .newsletter button {
        padding: 10px 12px;
        border-radius: 12px;
        border: 0;
        background: var(--brand);
        color: #fff;
        font-weight: 900;
        cursor: pointer
    }

.copy {
    border-top: 1px solid rgba(255,255,255,.10);
    margin-top: 18px;
    padding-top: 14px;
    font-size: 13px;
    opacity: .85;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

/* Responsive */
@media (max-width:980px) {
    .ctaGrid {
        grid-template-columns: repeat(2,1fr)
    }

    .catGrid {
        grid-template-columns: 1fr
    }

    .aboutGrid {
        grid-template-columns: 1fr
    }

    .footGrid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:620px) {
    .nav {
        display: none
    }

    .burger {
        display: block;
        border: 1px solid var(--line);
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: grid;
        place-items: center
    }

    .ctaGrid {
        grid-template-columns: 1fr
    }

    .footGrid {
        grid-template-columns: 1fr
    }

    .hero {
        height: 380px
    }

    .heroBox h1 {
        font-size: 28px
    }
}

/* ===== Mekas-like Menu (Data Lines style) ===== */
.siteHeader {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.topLine {
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand2));
}

.navWrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logoImg {
    height: 42px;
    display: block;
}

.mainNav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.navItem {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .navItem > a,
    .mainNav > a {
        font-size: 12.5px;
        letter-spacing: .10em;
        text-transform: uppercase;
        font-weight: 800;
        color: #111827;
        padding: 10px 2px;
        opacity: .92;
    }

        .mainNav > a:hover,
        .navItem > a:hover {
            color: var(--brand);
        }

.caret {
    font-size: 11px;
    opacity: .8;
    transform: translateY(-1px);
}

/* Dropdown مثل Mekas */
.hasDrop .dropdown {
    position: absolute;
    top: 42px;
    left: -10px;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15,23,42,.12);
    padding: 8px;
    display: none;
}

.hasDrop:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 13px;
    color: #111827;
    opacity: .92;
}

    .dropdown a:hover {
        background: rgba(39,131,195,.08);
        color: var(--brand);
    }

/* Right icons */
.navRight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iconBtn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
}

.burgerBtn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: none;
}

/* Mobile */
.mobileNav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 10px 18px 16px;
}

    .mobileNav a, .mobileNav summary {
        display: block;
        padding: 10px 6px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .10em;
        font-size: 12.5px;
        color: #111827;
    }

    .mobileNav details {
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 6px 8px;
        margin: 8px 0;
    }

.mobDrop a {
    padding: 10px 10px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
    color: #374151;
}

/* Responsive break */
@media (max-width:820px) {
    .mainNav {
        display: none;
    }

    .burgerBtn {
        display: block;
    }

    .mobileNav.show {
        display: block;
    }
}

.categoriesSection {
    padding: 60px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.bigTitle {
    text-align: center;
    font-size: 32px;
    letter-spacing: .05em;
    margin-bottom: 16px;
}

.introText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.categoryList {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.categoryItem {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

    .categoryItem h4 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 800;
        color: var(--brand);
    }

    .categoryItem p {
        margin: 0;
        color: #4b5563;
        line-height: 1.6;
        font-size: 14px;
    }

/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2937;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tagline {
    font-weight: 600;
    margin-bottom: 20px;
    color: #374151;
}

.about-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: #cbd5e1;
            text-decoration: none;
        }

            .footer-col ul li a:hover {
                color: #ffffff;
            }

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.address {
    margin-top: 10px;
    color: #94a3b8;
}

.newsletter {
    display: flex;
    gap: 10px;
}

    .newsletter input {
        padding: 8px 10px;
        border-radius: 6px;
        border: none;
        width: 100%;
    }

    .newsletter button {
        background: #2783C3;
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
    }

        .newsletter button:hover {
            background: #1e6aa3;
        }

.copyright {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    background: #0b1220;
    font-size: 14px;
    color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}














/* ===== Packages Carousel - Brand Version ===== */
.packagesSection {
    background: #f6f7fb;
    padding: 34px 0 24px;
    overflow: hidden;
}

.secHead {
    text-align: center;
    margin-bottom: 22px;
}

    .secHead h2 {
        margin: 0;
        font-size: 46px;
        font-weight: 900;
        color: var(--ink);
        line-height: 1.2;
    }

    .secHead p {
        margin: 10px 0 0;
        font-size: 15px;
        font-weight: 700;
        color: var(--brand);
    }

.packagesCarousel {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 58px;
}

.pkgTrack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 250px;
    transition: all .4s ease;
}

.pkgCard {
    position: relative;
    width: 230px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: #dbeafe;
    border: 1px solid rgba(39,131,195,.22);
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    transform: scale(.92);
    opacity: .78;
    transition: all .4s ease;
}

    .pkgCard img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .pkgCard.active {
        width: 330px;
        height: 210px;
        transform: scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 18px 36px rgba(39,131,195,.18);
    }

    .pkgCard.near {
        width: 270px;
        height: 175px;
        transform: scale(.97);
        opacity: .95;
        z-index: 2;
    }

.pkgShade {
    position: absolute;
    inset: auto 0 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(15,23,42,.78), rgba(15,23,42,.18));
    z-index: 1;
}

.pkgContent {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    text-align: center;
}

    .pkgContent h3 {
        margin: 0 0 6px;
        font-size: 21px;
        font-weight: 900;
        line-height: 1.2;
    }

.pkgCard:not(.active) .pkgContent h3 {
    font-size: 16px;
}

.pkgContent p {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    opacity: .96;
}

.pkgContent span {
    font-size: 13px;
    font-weight: 900;
    color: #bfdbfe;
}

.pkgBadge {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(39,131,195,.24);
}

.pkgArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(39,131,195,.22);
    transition: .25s ease;
}

    .pkgArrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

.pkgPrev {
    left: 0;
}

.pkgNext {
    right: 0;
}

@media (max-width:1100px) {
    .packagesCarousel {
        max-width: 1000px;
        padding: 8px 52px;
    }

    .secHead h2 {
        font-size: 38px;
    }

    .pkgCard {
        width: 200px;
        height: 135px;
    }

        .pkgCard.active {
            width: 290px;
            height: 195px;
        }

        .pkgCard.near {
            width: 240px;
            height: 160px;
        }
}

@media (max-width:768px) {
    .packagesSection {
        padding: 26px 0 20px;
    }

    .packagesCarousel {
        padding: 8px 44px;
    }

    .secHead h2 {
        font-size: 30px;
    }

    .secHead p {
        font-size: 14px;
    }

    .pkgTrack {
        min-height: 210px;
    }

    .pkgCard {
        width: 145px;
        height: 105px;
    }

        .pkgCard.active {
            width: 220px;
            height: 150px;
        }

        .pkgCard.near {
            width: 180px;
            height: 125px;
        }

    .pkgContent h3 {
        font-size: 16px;
    }

    .pkgCard:not(.active) .pkgContent h3 {
        font-size: 13px;
    }

    .pkgContent p,
    .pkgContent span {
        font-size: 11px;
    }

    .pkgArrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .pkgBadge {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}

/* Sub menu container */
.subDrop {
    position: relative;
}

/* المستوى الثالث */
.subDropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 200px;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* عند hover */
.subDrop:hover .subDropdown {
    display: block;
}

/* تنسيق */
.subDropdown a {
    display: block;
    padding: 10px;
    white-space: nowrap;
}

.mainNav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    display: none;
    z-index: 1000;
}

.mainNav .hasDrop {
    position: relative;
}

    .mainNav .hasDrop:hover > .dropdown {
        display: block;
    }

.dropdown > a,
.dropdown .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    white-space: nowrap;
    cursor: pointer;
}

.dropdown-item.has-submenu {
    position: relative;
}

.subDropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    display: none;
    z-index: 1100;
}

.dropdown-item.has-submenu:hover > .subDropdown {
    display: block;
}

.subDropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    white-space: nowrap;
}

    .dropdown > a:hover,
    .dropdown .submenu-toggle:hover,
    .subDropdown a:hover {
        background: #f5f5f5;
    }

.mainNav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .mainNav .navItem {
        position: relative;
    }

        .mainNav .navItem > a {
            text-decoration: none;
        }

/* dropdown الأول */
.hasDrop {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 10px 0;
    display: none;
    z-index: 999;
}

.hasDrop:hover > .dropdown {
    display: block;
}

.dropdown > a,
.dropdownItem > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

    .dropdown > a:hover,
    .dropdownItem > a:hover {
        background: #f5f7fb;
    }

/* عنصر يحمل submenu */
.dropdownItem {
    position: relative;
}

/* submenu الجانبي */
.subDropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.hasSubDrop:hover > .subDropdown {
    display: block;
}

.subDropdown a {
    display: block;
    padding: 12px 18px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

    .subDropdown a:hover {
        background: #f5f7fb;
    }
@media (max-width: 768px) {
    .mainNav {
        display: none;
    }
}