/* =========================
   Fonts + Base
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
    --primary-navy: #002B5C;
    --accent-cyan: #00A4E4;
    --bg: #f4f6f9;
    --text: #1f2a37;
    --muted: #6b7280;
    --radius: 18px;
}

html, body {
    height: 100%;
}

    body.app-body {
        font-family: "Cairo", sans-serif;
        background: var(--bg);
        color: var(--text);
    }

/* Bootstrap Icons (لو لم تكن مضافة ) 
    في _Layout :
   <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
*/

/* =========================
   Navbar
========================= */
.app-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.app-navbar {
    background: rgba(0, 43, 92, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    letter-spacing: .2px;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 600;
    transition: .2s ease;
}

    .navbar .nav-link:hover {
        color: #fff !important;
        opacity: 1;
    }

.btn-accent {
    background: linear-gradient(45deg, var(--accent-cyan), var(--primary-navy));
    border: none;
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 164, 228, 0.25);
    transition: .2s ease;
}

    .btn-accent:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0, 164, 228, 0.35);
    }

.app-main {
    padding-top: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,43,92,.85), rgba(0,43,92,.55)), url("/images/hero-axor-hansgrohe.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,164,228,.15), transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-logo {
    width: clamp(240px, 32vw, 420px);
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.45));
}


.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 12px;
    text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.hero-subtitle {
    color: rgba(255,255,255,.85);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 900px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(244,246,249,0), rgba(244,246,249,1));
}

/* =========================
   Sections
========================= */
.section {
    padding: 70px 0;
}

.section-white {
    background: #fff;
}

.section-light {
    background: #f8fafc;
}

.section-title {
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================
   Brands
========================= */
.brand-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.06);
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    transition: .2s ease;
}

    .brand-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(0,0,0,.10);
    }

.brand-logo {
    max-height: 70px;
    opacity: .9;
    filter: grayscale(100%);
    transition: .2s ease;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================
   Features
========================= */
.feature {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.06);
    padding: 26px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    transition: .2s ease;
}

    .feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(0,0,0,.10);
    }

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0,164,228,.12);
    color: var(--accent-cyan);
    margin: 0 auto 14px auto;
    font-size: 26px;
}

.feature-title {
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: var(--primary-navy);
}

.feature-text {
    text-align: center;
    color: var(--muted);
    margin: 0;
}

/* =========================
   Contact
========================= */
.contact-section {
    background: var(--primary-navy);
    color: #fff;
}

.contact-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 26px;
    height: 100%;
}

.contact-title {
    font-weight: 900;
    margin-bottom: 18px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

    .contact-item i {
        font-size: 20px;
        color: var(--accent-cyan);
        margin-top: 2px;
    }

.contact-label {
    font-weight: 800;
}

.contact-value {
    color: rgba(255,255,255,.85);
}

.map-embed {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* =========================
   Footer
========================= */
.app-footer {
    background: #061a33;
    color: rgba(255,255,255,.85);
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-title {
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

    .footer-links a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-contact i {
    color: var(--accent-cyan);
    margin-left: 6px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .hero {
        position: relative;
        min-height: 80vh;
        display: flex;
        align-items: center;
        background: linear-gradient(180deg, rgba(0,43,92,.85), rgba(0,43,92,.55)), url("/images/hero-axor-hansgrohe.jpg");
        background-size: cover;
        background-position: center;
    }


    .map-embed {
        height: 300px;
    }
}
