:root {
    /* =========================================================
       1. ألوان الهوية (Brand Identity) - مع تطبيق التبديل المطلوب
       ========================================================= */
    --primary: #1C75BC;
    /* الأزرق الداكن: سيستخدم للأزرار والكلمات المميزة بدلاً من الأحمر */
    --secondary: #00AEEF;
    /* السماوي للـ Hover واللمسات الجمالية */
    --accent: #BE1E2D;
    /* الأحمر (موجود في الهوية ولكن سيتم تقليل استخدامه حسب طلبك) */
    --dark: #000000;
    /* الأسود: سيستخدم للنصوص الأساسية بدلاً من الأزرق */

    /* =========================================================
       2. ألوان الـ UI للنصوص والخلفيات (Light Theme)
       ========================================================= */
    --bg-main: #F4F7F9;
    /* خلفية الموقع: أبيض مائل للأزرق الفاتح جداً لراحة العين */
    --bg-white: #FFFFFF;

    /* تطبيق التعديل: الأسود/الرمادي الداكن للنصوص بدلاً من الأزرق */
    --text-heading: #111827;
    --text-body: #334155;
    --text-muted: #64748B;

    --success: #10B981;
    /* أخضر هادئ لأيقونات النجاح والواتساب */
    --border: #E2E8F0;

    /* =========================================================
       3. تأثيرات الـ Light Glassmorphism
       ========================================================= */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --glass-shadow-hover: 0 25px 50px rgba(28, 117, 188, 0.1);
    /* ظل أزرق خفيف عند التمرير */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    font-family: 'Cairo', sans-serif;
    color: var(--fg);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: transparent;
    /* Background handled by overlay */
}

/* Dynamic Background Overlay (Light) */
.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    z-index: -2;
    overflow: hidden;
}

/* Abstract Blurred Shapes for enhanced Glassmorphism */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    /* تقليل الشفافية لتناسب الخلفية البيضاء */
    animation: pulseShape 10s ease-in-out infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -150px;
}

@keyframes pulseShape {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-20px, 20px);
    }
}

/* Utilities */
.z-index-master {
    position: relative;
    z-index: 100;
}

.hero-section {
    position: relative;
    z-index: 10;
}

.text-accent {
    color: var(--primary);
    font-weight: 800;
}

/* Glass Panel Base */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Buttons */
.btn-primary-gradient {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(28, 117, 188, 0.35);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(28, 117, 188, 0.5);
    color: #fff;
    background: #145990;
    /* Darker blue on hover */
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--dark);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: background 0.3s;
}

.brand-logo {
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    max-width: 180px;
}

.navbar-toggler i {
    color: var(--dark) !important;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Typography */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--dark);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 600;
}

.bottom-links a {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--primary);
}

/* Visual Column (Bottles & Cards) */
.visual-container {
    position: relative;
    padding: 20px;
    perspective: 1200px;
}

.main-glass-card {
    height: 500px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), inset 0 0 0 2px rgba(255, 255, 255, 1);
    border-radius: 30px;
    z-index: 2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
}

/* 3D Flat Bottles CSS */
.bottles-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 3;
}

.bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Blue Cap */
.bottle .cap {
    background: linear-gradient(90deg, #184b8a 0%, #2989d8 50%, #184b8a 100%);
    border-radius: 6px 6px 0 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
}

/* Neck */
.bottle .neck {
    background: linear-gradient(90deg, #d4d4d4 0%, #ffffff 50%, #d4d4d4 100%);
    z-index: 2;
}

/* White Body */
.bottle .body {
    background: linear-gradient(90deg, #f0f0f0 0%, #ffffff 50%, #f0f0f0 100%);
    border-radius: 20px 20px 10px 10px;
    position: relative;
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.03), inset 5px 0 15px rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dimensions */
.bottle-main {
    z-index: 4;
    transform: translateY(0);
    margin: 0 10px;
}

.bottle-main .cap {
    width: 60px;
    height: 35px;
}

.bottle-main .neck {
    width: 50px;
    height: 25px;
}

.bottle-main .body {
    width: 140px;
    height: 270px;
}

.bottle-side {
    filter: brightness(0.95) drop-shadow(0 15px 20px rgba(0, 0, 0, 0.1));
}

.bottle-side .cap {
    width: 45px;
    height: 25px;
}

.bottle-side .neck {
    width: 35px;
    height: 20px;
}

.bottle-side .body {
    width: 100px;
    height: 200px;
    border-radius: 15px 15px 8px 8px;
}

.bottle-left {
    transform: translateX(-25px) rotate(-6deg);
    z-index: 2;
}

.bottle-right {
    transform: translateX(25px) rotate(6deg);
    z-index: 2;
}

/* Hover states */
.bottle-left:hover {
    transform: translateX(-25px) rotate(-6deg) translateY(-15px);
    filter: brightness(1) drop-shadow(0 25px 30px rgba(0, 0, 0, 0.2));
    z-index: 5;
}

.bottle-right:hover {
    transform: translateX(25px) rotate(6deg) translateY(-15px);
    filter: brightness(1) drop-shadow(0 25px 30px rgba(0, 0, 0, 0.2));
    z-index: 5;
}

.bottle-main:hover {
    transform: translateY(-15px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
}

/* Main Bottle Label */
.bottle-main .label {
    position: absolute;
    top: 45%;
    width: 85%;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    padding: 16px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-top-left {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.badge-bottom-right {
    bottom: 40px;
    right: -30px;
    animation-delay: 3s;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.badge-text h6 {
    color: var(--dark);
}

.badge-text small {
    color: var(--text-muted);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================================
   4. Sectors Section
   ========================================================= */
.sectors-section {
    background-color: #ffffff;
}

.fs-sm { font-size: 0.875rem; }
.fw-black { font-weight: 900; }

.sector-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sector-card:hover .sector-img {
    transform: scale(1.05);
}
.sector-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(28, 117, 188, 0.95) 0%, rgba(28, 117, 188, 0.4) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.sector-content {
    text-align: right;
}
.sector-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* =========================================================
   5. Products Section
   ========================================================= */
.products-section {
    background-color: var(--bg-light);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}
.product-img-wrap img {
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}
.btn-outline-secondary {
    border-color: var(--border) !important;
    color: var(--text-muted);
}
.btn-outline-secondary:hover {
    background-color: var(--bg-light) !important;
    color: var(--dark) !important;
}

/* Bootstrap Button Overrides to use Brand Colors */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: #145990;
    border-color: #145990;
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}

/* =========================================================
   6. About Section
   ========================================================= */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.icon-box {
    transition: transform 0.3s ease;
}
.about-section:hover .icon-box {
    transform: scale(1.1);
}

/* =========================================================
   7. Quality Process
   ========================================================= */
.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--border);
    z-index: -1;
}
.process-step:last-child::after {
    display: none;
}
@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

/* =========================================================
   8. Form and Gallery Utilities
   ========================================================= */
.cursor-pointer {
    cursor: pointer;
}
.btn-submit-quote:hover {
    background-color: #e67e00 !important;
    transform: translateY(-2px);
}
.hover-scale {
    transition: transform 0.5s ease;
}
.gallery-item:hover .hover-scale {
    transform: scale(1.1);
}

/* =========================================================
   9. Blog Section
   ========================================================= */
.blog-card a:hover {
    color: var(--dark) !important;
}

/* =========================================================
   10. Footer Section
   ========================================================= */
.hover-white:hover {
    color: #ffffff !important;
}
.hover-primary:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}
.transition-all {
    transition: all 0.3s ease;
}
.back-to-top:hover {
    opacity: 1 !important;
}


/* Statistics Bar */
.stats-bar {
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Discover More */
.discover-more {
    text-align: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover-more:hover {
    color: var(--dark);
}

.discover-more i {
    margin-top: 12px;
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Floating Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .main-glass-card {
        margin-top: 60px;
        height: 400px;
    }

    .badge-top-left {
        left: 10px;
        top: -20px;
    }

    .badge-bottom-right {
        right: 10px;
        bottom: -20px;
    }

    .bottle-main .body {
        height: 220px;
        width: 120px;
    }

    .bottle-side .body {
        height: 160px;
        width: 80px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--bg-white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border);
        z-index: 105;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .badge-text h6 {
        font-size: 0.9rem;
    }

    .badge-text small {
        font-size: 0.75rem;
    }

    .floating-badge {
        padding: 12px 16px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}