        /* Modern CSS Reset */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* CSS Variables */
        :root {
            --primary-color: #1a365d;
            --secondary-color: #2d3748;
            --accent-color: #ed8936;
            --accent-orange: #ed8936;
            --success-color: #38a169;
            --danger-color: #e53e3e;
            --warning-color: #dd6b20;
            --info-color: #3182ce;
            
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            
            --bg-primary: #ffffff;
            --bg-secondary: #f7fafc;
            --bg-light: #edf2f7;
            
            --border-color: #e2e8f0;
            --border-light: #f7fafc;
            
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            --gradient-accent: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
            
            --border-radius-sm: 0.375rem;
            --border-radius-md: 0.5rem;
            --border-radius-lg: 0.75rem;
            --border-radius-xl: 1rem;
            
            --transition: all 0.3s ease;
            --transition-fast: all 0.15s ease;
        }

        /* Scroll-driven animation (بديل Parallax — بدون Layout Shift) */
        @supports (animation-timeline: scroll()) {
            .hero-content {
                animation: heroScrollReveal linear;
                animation-timeline: scroll();
                animation-range: exit 0% exit 100%;
            }
            @keyframes heroScrollReveal {
                0% { opacity: 1; transform: translateY(0) scale(1); }
                100% { opacity: 0.4; transform: translateY(-15px) scale(0.98); }
            }
        }

        /* Base Styles */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            font-size: 16px;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Tajawal', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.25rem; }
        h6 { font-size: 1rem; }

        p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(26, 54, 93, 0.93) 100%),
                        url('../images/hero-bg.jpg') center/cover;
            background-attachment: scroll !important;
            color: white;
            text-align: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
            padding-top: 80px; /* لتفادي تداخل الهيدر */
        }

        /* شبكة تكنولوجية رقيقة في الخلفية */
        .hero-tech-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: center;
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
        }

        /* كرات توهج ديناميكية متحركة بالخلفية للدمج اللوني الفاخر */
        .hero-glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            z-index: 1;
            pointer-events: none;
            will-change: transform;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(43, 108, 176, 0.22) 0%, transparent 70%);
            top: -10%;
            left: -10%;
            animation: orbFloatOne 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(237, 137, 54, 0.16) 0%, transparent 70%);
            bottom: -15%;
            right: -10%;
            animation: orbFloatTwo 25s ease-in-out infinite;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(128, 90, 213, 0.14) 0%, transparent 70%);
            top: 30%;
            left: 40%;
            animation: orbFloatThree 18s ease-in-out infinite;
        }

        @keyframes orbFloatOne {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, 30px) scale(1.15); }
            66% { transform: translate(-30px, 50px) scale(0.9); }
        }

        @keyframes orbFloatTwo {
            0%, 100% { transform: translate(0, 0) scale(1.1); }
            50% { transform: translate(-60px, -40px) scale(0.9); }
        }

        @keyframes orbFloatThree {
            0%, 100% { transform: translate(0, 0) scale(0.9); }
            33% { transform: translate(-40px, 40px) scale(1.1); }
            66% { transform: translate(40px, -20px) scale(1.0); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 880px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* غلاف شارات التميز العائمة */
        .hero-badges-wrapper {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            transform: translateY(-20px);
            animation: heroFadeInDown 1s cubic-bezier(0.25, 1, 0.2, 1) 0.3s forwards;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .hero-badge i {
            color: var(--accent-orange);
            font-size: 0.8rem;
        }

        .hero-badge:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(237, 137, 54, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(237, 137, 54, 0.15);
        }

        /* شارات تطفو بترددات مختلفة */
        .badge-quality { animation: badgeFloat 4s ease-in-out infinite; }
        .badge-support { animation: badgeFloat 4s ease-in-out infinite 0.7s; }
        .badge-warranty { animation: badgeFloat 4s ease-in-out infinite 1.4s; }

        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* عنوان الهيرو الكبير */
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            color: #ffffff;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 0.6s forwards;
        }

        .hero-accent-text {
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 50%, #dd6b20 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero-accent-text::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
            opacity: 0.3;
        }

        /* الوصف الفرعي للهيرو */
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 740px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 0.8s forwards;
        }

        /* غلاف الأزرار */
        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3.5rem;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 1.0s forwards;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 1rem 2.25rem;
            border: none;
            border-radius: var(--border-radius-lg);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 10px 25px rgba(237, 137, 54, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.25),
                transparent
            );
            transition: all 0.6s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(237, 137, 54, 0.55);
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 1rem 2.25rem;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--border-radius-lg);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            backdrop-filter: blur(8px);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
            color: white;
        }

        .btn-secondary i {
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1);
        }

        .btn-secondary:hover i {
            transform: scale(1.15) rotate(-10deg);
        }

        /* أنميشن الدخول المخصصة للهيرو لضمان سلاسة وسرعة التحميل */
        @keyframes heroFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroFadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Preview - Landing */
        .services-preview {
            padding: 0;
            background: var(--bg-secondary);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .services-landing-banner {
            background: linear-gradient(145deg, #0f2744 0%, #1a365d 35%, #234876 70%, #1a365d 100%);
            padding: 4.5rem 0;
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-bottom: 2px solid rgba(237, 137, 54, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .services-landing-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../images/hero-bg.jpg') center/cover;
            opacity: 0.08;
        }

        .services-landing-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(237, 137, 54, 0.12) 0%, transparent 55%);
            pointer-events: none;
        }

        .services-landing-banner-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 4rem;
            align-items: center;
        }

        .services-landing-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(237, 137, 54, 0.18);
            color: #fbd38d;
            padding: 0.5rem 1.15rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            border: 1px solid rgba(237, 137, 54, 0.35);
            letter-spacing: 0.02em;
        }

        .services-landing-badge i {
            opacity: 0.95;
        }

        .services-landing-headline {
            font-size: 2.75rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }

        .services-landing-headline .headline-accent {
            background: linear-gradient(135deg, #ed8936, #f6ad55);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-landing-desc {
            color: rgba(255, 255, 255, 0.88);
            font-size: 1.1rem;
            line-height: 1.75;
            margin-bottom: 1.75rem;
            max-width: 520px;
        }

        .services-landing-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.6rem;
            border-radius: 12px;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .services-landing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(237, 137, 54, 0.35);
        }

        .services-landing-btn:focus-visible {
            outline: 2px solid #f6ad55;
            outline-offset: 3px;
        }

        .services-landing-banner-stats {
            display: flex;
            gap: 1.5rem;
        }

        .banner-stat {
            text-align: center;
            padding: 1.25rem 1.75rem;
            min-width: 100px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .banner-stat:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(237, 137, 54, 0.25);
        }

        .banner-stat-num {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: #f6ad55;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        .banner-stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.25rem;
        }
        .banner-stat-suffix { font-size: 0.85em; opacity: 0.95; margin-right: 2px; color: #f6ad55; }
        .btn-whatsapp-hero { background: #25D366 !important; color: #fff !important; border: 2px solid #25D366 !important; }
        .btn-whatsapp-hero:hover { background: #128C7E !important; border-color: #128C7E !important; }

        @media (max-width: 768px) {
            .services-landing-banner { padding: 3rem 0; }
            .services-landing-banner-inner {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            .services-landing-desc { margin-left: auto; margin-right: auto; }
            .services-landing-banner-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
            }
            .services-landing-headline { justify-content: center; font-size: 2rem; }
            .banner-stat { padding: 1rem 1.25rem; min-width: 85px; }
            .banner-stat-num { font-size: 2rem; }
        }

        .services-preview .services-details-container {
            padding-top: 7.5rem !important;
            padding-bottom: 3.5rem !important;
        }

        @media (max-width: 768px) {
            .services-preview .services-details-container {
                padding-top: 4.5rem !important;
                padding-bottom: 2.5rem !important;
            }
        }

        /* Geometric Pattern Styles */
        .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .pattern-svg {
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }

        /* Floating Geometric Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            animation: floatShape 25s ease-in-out infinite;
        }

        .shape-1 {
            width: 16px;
            height: 16px;
            background: linear-gradient(45deg, rgba(237, 137, 54, 0.12), rgba(237, 137, 54, 0.2));
            top: 15%;
            left: 10%;
            animation-delay: 0s;
            clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
            border-radius: 2px;
        }

        .shape-2 {
            width: 12px;
            height: 12px;
            background: linear-gradient(45deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.18));
            top: 25%;
            right: 15%;
            animation-delay: -8s;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .shape-3 {
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, rgba(237, 137, 54, 0.08), rgba(246, 173, 85, 0.15));
            top: 70%;
            left: 20%;
            animation-delay: -15s;
            clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
        }

        .shape-4 {
            width: 14px;
            height: 14px;
            background: linear-gradient(45deg, rgba(26, 54, 93, 0.06), rgba(45, 90, 160, 0.12));
            top: 80%;
            right: 25%;
            animation-delay: -20s;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(45deg);
            }
            50% {
                transform: translateY(-15px) rotate(90deg);
            }
            75% {
                transform: translateY(-10px) rotate(135deg);
            }
        }

        /* Content positioning */
        .services-preview .container {
            position: relative;
            z-index: 3;
        }

        /* Enhanced pattern effects */
        .pattern-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 20% 30%,
                rgba(237, 137, 54, 0.03) 0%,
                transparent 50%
            ),
            radial-gradient(
                circle at 80% 70%,
                rgba(26, 54, 93, 0.05) 0%,
                transparent 50%
            ),
            linear-gradient(
                45deg,
                rgba(237, 137, 54, 0.02) 0%,
                transparent 25%,
                transparent 75%,
                rgba(26, 54, 93, 0.02) 100%
            );
            z-index: 1;
        }

        /* Pattern animation on scroll */
        .pattern-svg {
            animation: islamicPatternFloat 40s ease-in-out infinite;
            opacity: 0.15;
        }

        @keyframes islamicPatternFloat {
            0%, 100% {
                opacity: 0.15;
                transform: scale(1) rotate(0deg);
            }
            25% {
                opacity: 0.1;
                transform: scale(1.02) rotate(1deg);
            }
            50% {
                opacity: 0.18;
                transform: scale(1) rotate(0deg);
            }
            75% {
                opacity: 0.12;
                transform: scale(0.98) rotate(-1deg);
            }
        }

        /* Interactive pattern response */
        .services-preview:hover .floating-shapes .shape {
            animation-play-state: paused;
        }

        .services-preview:hover .pattern-svg {
            opacity: 0.8;
            transition: opacity 0.5s ease;
        }

        /* Mobile pattern adjustments */
        @media (max-width: 768px) {
            .shape {
                display: none;
            }
            
            .pattern-svg {
                opacity: 0.3;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .services-section-header {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: flex-end;
            gap: 1rem;
            text-align: center;
        }

        .services-section-header::before {
            content: '';
        }

        .services-section-header .section-title-text {
            grid-column: 2;
            min-width: 200px;
        }

        .services-section-header > a {
            grid-column: 3;
            justify-self: end;
        }

        @media (max-width: 768px) {
            .services-section-header {
                grid-template-columns: 1fr;
                justify-items: center;
                align-items: center;
                text-align: center;
            }

            .services-section-header::before {
                display: none;
            }

            .services-section-header .section-title-text {
                grid-column: auto;
                min-width: 0;
            }

            .services-section-header > a {
                grid-column: auto;
                justify-self: center;
            }
        }

        .services-section-header.section-title::after {
            display: none;
        }

        .section-title h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* Featured products on homepage */
    .featured-products-section { padding: 4rem 0; background: var(--bg-secondary); }
    .featured-products-section .section-title { margin-bottom: 0.5rem; }
    .featured-products-section .section-subtitle { color: var(--text-muted); margin-bottom: 2rem; }
    .featured-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; min-height: 120px; }
    .featured-product-card { background: #fff; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
    .featured-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .featured-product-card a { text-decoration: none; color: inherit; display: block; }
    .featured-product-card .fp-image { aspect-ratio: 16/10; background: var(--bg-light); object-fit: cover; width: 100%; }
    .featured-product-card .fp-body { padding: 1rem 1.25rem; }
    .featured-product-card .fp-title { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--primary-color); }
    .featured-product-card .fp-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
    .featured-products-loading { grid-column: 1/-1; text-align: center; padding: 2rem; color: var(--text-muted); }
    .featured-products-more { text-align: center; margin-top: 2rem; }
    .featured-products-more .btn-secondary { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

    /* Homepage trust metrics — image-led, based on the selected visual direction. */
    .home-trust-stats {
        position:relative;
        min-height:416px;
        padding:0;
        background:linear-gradient(145deg,#0f2744 0%,#1a365d 35%,#234876 70%,#1a365d 100%);
        color:#fff;
        overflow:hidden;
        isolation:isolate;
    }
    .home-trust-stats__image {
        position:absolute;
        inset:0;
        z-index:-3;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center 52%;
        opacity:.22;
        filter:saturate(.75) contrast(1.05);
    }
    .home-trust-stats__overlay {
        position:absolute;
        inset:0;
        z-index:-2;
        background:rgba(15,39,68,.22);
    }
    .home-trust-stats__content {
        min-height:416px;
        display:grid;
        grid-template-rows:1fr auto;
        align-items:center;
        padding-top:4.5rem;
        padding-bottom:0;
    }
    .home-trust-stats__header {
        width:min(820px,92%);
        margin-inline:auto;
        text-align:center;
    }
    .home-trust-stats__header h2 {
        margin:0;
        color:#fff;
        font-family:'Cairo','Tajawal',sans-serif;
        font-size:2.75rem;
        font-weight:800;
        line-height:1.15;
        letter-spacing:-.02em;
        text-shadow:0 3px 18px rgba(0,0,0,.28);
    }
    .home-trust-stats .stats-grid {
        display:grid;
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:0;
        width:100%;
        margin:2rem 0 0;
        text-align:center;
        align-items:stretch;
        border-top:1px solid rgba(255,255,255,.2);
        background:rgba(15,39,68,.58);
    }
    .home-trust-stats .stat-item {
        position:relative;
        display:grid;
        grid-template-columns:auto auto;
        grid-template-areas:'icon number' 'label label';
        align-content:center;
        justify-content:center;
        column-gap:.7rem;
        min-height:140px;
        padding:1.25rem 1.1rem 1.35rem;
        color:#fff;
        border-inline-start:1px solid rgba(255,255,255,.18);
        background:transparent;
        box-shadow:none;
        transform:none;
    }
    .home-trust-stats .stat-item:first-child { border-inline-start:0; }
    .home-trust-stats .stat-item::before {
        content:'';
        position:absolute;
        right:14%;
        bottom:.75rem;
        width:72%;
        height:2px;
        background:rgba(255,255,255,.28);
    }
    .home-trust-stats .stat-item::after {
        content:'';
        position:absolute;
        right:42%;
        bottom:.75rem;
        width:16%;
        height:3px;
        background:var(--accent-orange,#ed8936);
        box-shadow:0 0 16px rgba(237,137,54,.72);
    }
    .home-trust-stats .stat-icon {
        grid-area:icon;
        align-self:center;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:56px;
        height:56px;
        margin:0 !important;
        color:var(--accent-orange,#ed8936);
        font-size:1.75rem;
        filter:drop-shadow(0 4px 12px rgba(0,0,0,.28));
    }
    .home-trust-stats .stat-number {
        grid-area:number;
        display:block !important;
        min-height:0;
        width:auto;
        margin:0 !important;
        color:var(--accent-orange,#ed8936) !important;
        background:none !important;
        font-family:'Cairo','Tajawal',sans-serif;
        font-size:2.5rem !important;
        font-weight:800 !important;
        line-height:1;
        letter-spacing:-.035em;
        text-shadow:0 4px 18px rgba(0,0,0,.35);
    }
    .home-trust-stats .stat-label {
        grid-area:label;
        margin-top:.45rem;
        color:#fff !important;
        font-size:.9rem !important;
        font-weight:700 !important;
        line-height:1.35;
        opacity:1 !important;
        letter-spacing:0;
    }
    .home-trust-stats .stat-item:hover {
        transform:none;
        box-shadow:none;
        background:rgba(255,255,255,.035);
    }
    @media (max-width:900px) {
        .home-trust-stats { min-height:auto; }
        .home-trust-stats__content { min-height:auto; padding-top:3rem; }
        .home-trust-stats__header h2 { font-size:2.25rem; }
        .home-trust-stats .stats-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
        .home-trust-stats .stat-item { min-height:132px; }
        .home-trust-stats .stat-item:nth-child(odd) { border-inline-start:0; }
        .home-trust-stats .stat-item:nth-child(n+3) { border-top:1px solid rgba(255,255,255,.18); }
    }
    @media (max-width:520px) {
        .home-trust-stats__content { padding-top:3rem; }
        .home-trust-stats__header { width:100%; padding-inline:1rem; }
        .home-trust-stats__header h2 { font-size:2rem; }
        .home-trust-stats .stats-grid { grid-template-columns:1fr 1fr; margin-top:2rem; }
        .home-trust-stats .stat-item {
            grid-template-columns:1fr;
            grid-template-areas:'icon' 'number' 'label';
            row-gap:.2rem;
            min-height:128px;
            padding:1rem .6rem 1.25rem;
        }
        .home-trust-stats .stat-icon { width:52px; height:52px; font-size:1.35rem; }
        .home-trust-stats .stat-number { font-size:2.25rem !important; }
        .home-trust-stats .stat-label { font-size:.82rem !important; }
    }

        /* Why Choose Us */
        .why-us {
            padding: 6rem 0;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .why-us .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .why-us .pattern-svg {
            width: 100%;
            height: 100%;
            opacity: 0.15;
            animation: islamicPatternFloat 40s ease-in-out infinite;
        }

        .why-us .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .why-us .container {
            position: relative;
            z-index: 3;
        }

        .why-us .pattern-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 20% 30%,
                rgba(237, 137, 54, 0.03) 0%,
                transparent 50%
            ),
            radial-gradient(
                circle at 80% 70%,
                rgba(26, 54, 93, 0.05) 0%,
                transparent 50%
            ),
            linear-gradient(
                45deg,
                rgba(237, 137, 54, 0.02) 0%,
                transparent 25%,
                transparent 75%,
                rgba(26, 54, 93, 0.02) 100%
            );
            z-index: 1;
        }

        .why-us:hover .floating-shapes .shape {
            animation-play-state: paused;
        }

        .why-us:hover .pattern-svg {
            opacity: 0.8;
            transition: opacity 0.5s ease;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            background: var(--bg-secondary);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.08),
                0 3px 12px rgba(237, 137, 54, 0.06),
                0 1px 6px rgba(26, 54, 93, 0.04);
            transform: translateY(0) scale(1);
        }

        /* تأثير الحواف المضيئة للبطاقات */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: var(--border-radius-lg);
            padding: 2px;
            background: linear-gradient(45deg, 
                transparent 0%, 
                var(--accent-color) 15%, 
                #f6ad55 30%, 
                transparent 50%, 
                var(--accent-color) 70%, 
                #dd6b20 85%, 
                transparent 100%
            );
            background-size: 300% 300%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: borderGlow 4s ease-in-out infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        /* تأثير التوهج الديناميكي للبطاقات */
        .feature-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(237, 137, 54, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }

        .feature-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .feature-card:hover {
            background: white;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 25px rgba(237, 137, 54, 0.25),
                0 5px 15px rgba(26, 54, 93, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(-12px) scale(1.04) rotateX(3deg);
            border-color: rgba(237, 137, 54, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
        }

        .feature-card:hover .feature-icon {
            background: var(--gradient-primary);
            transform: scale(1.18) rotateY(180deg) translateZ(8px);
            box-shadow: 
                0 8px 25px rgba(26, 54, 93, 0.5),
                0 4px 15px rgba(26, 54, 93, 0.3),
                0 0 15px rgba(26, 54, 93, 0.2);
        }

        .feature-card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .feature-card:hover h4 {
            color: var(--accent-color);
            transform: translateY(-2px);
        }

        .feature-card p {
            color: var(--text-secondary);
            margin: 0;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .feature-card:hover p {
            color: var(--text-primary);
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: var(--gradient-accent);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* إعلانات داخل الهيرو (تصميم زجاجي فاخر متناسق مع الخلفية الداكنة) */
        .announcements-in-hero {
            margin-top: 2rem;
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(15, 23, 42, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 1.75rem 2rem;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            width: 100%;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 1.2s cubic-bezier(0.25, 1, 0.2, 1) 1.2s forwards;
        }

        .announcements-in-hero:hover {
            border-color: rgba(237, 137, 54, 0.25);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(237, 137, 54, 0.08);
            transform: translateY(-2px);
        }

        .announcements-title-in-hero {
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 1.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            letter-spacing: -0.01em;
        }

        .announcements-title-in-hero i {
            color: var(--accent-orange);
            font-size: 1.15rem;
            animation: announcementBellPulse 2s ease-in-out infinite;
        }

        @keyframes announcementBellPulse {
            0%, 100% { transform: scale(1) rotate(0); }
            15% { transform: scale(1.1) rotate(-8deg); }
            30% { transform: scale(1.1) rotate(8deg); }
            45% { transform: scale(1.1) rotate(-4deg); }
            60% { transform: scale(1.1) rotate(4deg); }
            75% { transform: scale(1) rotate(0); }
        }

        .announcements-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            width: 100%;
        }

        /* كارت الإعلان الزجاجي المضيء */
        .announcement-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.1rem 1.4rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            position: relative;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
            will-change: transform, background;
        }

        .announcement-card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        /* ألوان خطوط الجوانب للإعلانات بنسب شفافية متوافقة */
        .announcement-card.type-holiday { border-right: 4px solid #e53e3e; }
        .announcement-card.type-event { border-right: 4px solid #3182ce; }
        .announcement-card.type-news { border-right: 4px solid #38a169; }
        .announcement-card.type-other { border-right: 4px solid #805ad5; }

        .announcement-close {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            width: 26px;
            height: 26px;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .announcement-close:hover {
            background: rgba(229, 62, 62, 0.22);
            color: #ff5c5c;
            transform: scale(1.1);
        }

        .announcement-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .announcement-icon.holiday { background: rgba(229, 62, 62, 0.18); color: #ff5c5c; border: 1px solid rgba(229, 62, 62, 0.25); }
        .announcement-icon.event { background: rgba(49, 130, 206, 0.18); color: #4299e1; border: 1px solid rgba(49, 130, 206, 0.25); }
        .announcement-icon.news { background: rgba(56, 161, 105, 0.18); color: #48bb78; border: 1px solid rgba(56, 161, 105, 0.25); }
        .announcement-icon.other { background: rgba(128, 90, 213, 0.18); color: #9f7aec; border: 1px solid rgba(128, 90, 213, 0.25); }

        .announcement-body {
            flex: 1;
            padding-left: 0.5rem;
            text-align: right;
        }

        .announcement-body h3 {
            margin: 0 0 0.35rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
        }

        .announcement-body p {
            margin: 0;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .announcements-loading, .announcements-empty {
            text-align: center;
            padding: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .announcements-spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-top-color: var(--accent-orange);
            border-radius: 50%;
            animation: ann-spin 0.8s linear infinite;
            vertical-align: middle;
            margin-left: 0.6rem;
        }

        @keyframes ann-spin { to { transform: rotate(360deg); } }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .services-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Arwa Specialized Sections */
        .arwa-specialized-sections {
            padding: 5rem 0;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
        }

        .specialized-sections-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .specialized-sections-grid > * {
            min-width: 0;
        }

        .specialized-section {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 2.2rem 2.4rem;
            border-radius: 22px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.35s ease;
            align-items: stretch;
            position: relative;
        }

        .specialized-section .section-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 1.25rem;
        }

        .specialized-section .section-image-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            min-height: 260px;
        }

        .specialized-section .section-main-image {
            height: 100%;
            width: 100%;
            min-height: 260px;
            object-fit: cover;
            transition: transform 1.2s ease, filter 0.6s ease;
        }

        .specialized-section:hover .section-main-image {
            transform: scale(1.05);
            filter: brightness(1.05);
        }

        /* Shipping image fallback + responsiveness */
        .shipping-image {
            position: relative;
            background: linear-gradient(120deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
                        url('../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
        }

        .shipping-image picture, .shipping-image img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .shipping-image img.shipping-img[data-failed='1'] { display:none; }

        .shipping-image.fallback-active::after {
            content: '\f21a  شحن حاويات عام';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        }

        @media (max-width: 980px) {
            .specialized-section {
                grid-template-columns: 1fr;
            }
            .specialized-section .section-image-container {
                order: -1; /* ضع الصورة بالأعلى في الشاشات الصغيرة */
            }
        }

        .specialized-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .section-badge {
            background: rgba(255, 215, 0, 0.2);
            color: #FFD700;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 0.85rem;
            text-align: center;
            width: fit-content;
        }

        .shipping-section .section-badge {
            background: rgba(52, 152, 219, 0.2);
            color: #3498db;
        }

        .specialized-section h2 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 2rem;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
        }

        .specialized-section p {
            color: rgba(255, 255, 255, 0.98);
            font-size: 1rem;
            line-height: 1.6;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
            margin-bottom: 1.5rem;
        }

        .section-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
            margin: 1.5rem 0;
        }

        .section-stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }

        .section-stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .section-stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: #FFD700;
        }

        .shipping-section .section-stat-number {
            color: #3498db;
        }

        .section-stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 0.3rem;
        }

        .section-buttons {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-steel-primary,
        .btn-shipping-primary {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #2c3e50;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: var(--border-radius-lg);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-lg);
        }

        .btn-shipping-primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }

        .btn-steel-secondary,
        .btn-shipping-secondary {
            background: transparent;
            color: #FFD700;
            padding: 0.8rem 1.5rem;
            border: 2px solid rgba(255, 215, 0, 0.5);
            border-radius: var(--border-radius-lg);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-shipping-secondary {
            color: #3498db;
            border-color: rgba(52, 152, 219, 0.5);
        }

        .btn-steel-primary:hover,
        .btn-shipping-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-steel-primary:hover {
            background: linear-gradient(135deg, #FFA500, #FF8C00);
        }

        /* ========== Unified Specialized Division Cards Redesigned (Vertical premium glassmorphic cards) ========== */
        .specialized-sections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            align-items: stretch;
            margin-top: 3rem;
        }

        .division-card {
            display: flex;
            flex-direction: column;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.25, 1, 0.2, 1);
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            height: 100%;
            background: linear-gradient(145deg, rgba(30, 35, 45, 0.95) 0%, rgba(45, 55, 72, 0.9) 100%);
            /* Boundary protection for text/font overflow */
            min-width: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .division-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6);
        }

        /* Specific card variants */
        .division-card.steel-division {
            border-color: rgba(255, 215, 0, 0.2);
            background: linear-gradient(145deg, rgba(20, 24, 33, 0.95) 0%, rgba(35, 42, 54, 0.9) 100%);
        }
        .division-card.steel-division:hover {
            border-color: rgba(255, 215, 0, 0.45);
            box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
        }

        .division-card.shipping-division {
            border-color: rgba(45, 212, 191, 0.25);
            background: linear-gradient(145deg, rgba(10, 47, 44, 0.96) 0%, rgba(20, 58, 55, 0.92) 100%);
        }
        .division-card.shipping-division:hover {
            border-color: rgba(45, 212, 191, 0.5);
            box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(45, 212, 191, 0.2);
        }

        .division-card.equipment-division {
            border-color: rgba(246, 173, 85, 0.25);
            background: linear-gradient(145deg, rgba(44, 30, 10, 0.96) 0%, rgba(58, 42, 20, 0.92) 100%);
        }
        .division-card.equipment-division:hover {
            border-color: rgba(246, 173, 85, 0.5);
            box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(246, 173, 85, 0.2);
        }

        .division-visual {
            position: relative;
            width: 100%;
            aspect-ratio: 16/10;
            overflow: hidden;
        }

        .division-image-wrap {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .division-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
        }

        .division-card:hover .division-image-wrap img {
            transform: scale(1.08);
        }

        .division-image-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
        }

        .division-floating-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(39, 174, 96, 0.9);
            color: white;
            padding: 0.45rem 0.9rem;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            white-space: nowrap;
        }

        .division-tags {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            left: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            z-index: 2;
        }

        .division-tag {
            background: rgba(0, 0, 0, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .steel-division .division-tag { border-color: rgba(255, 215, 0, 0.35); }
        .shipping-division .division-tag { border-color: rgba(45, 212, 191, 0.35); }
        .equipment-division .division-tag { border-color: rgba(246, 173, 85, 0.35); }

        .division-tag i {
            font-size: 0.7rem;
        }
        .steel-division .division-tag i { color: #FFD700; }
        .shipping-division .division-tag i { color: #2dd4bf; }
        .equipment-division .division-tag i { color: #f6ad55; }

        .division-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            flex-grow: 1;
            min-width: 0;
        }

        .division-badge {
            padding: 0.35rem 0.9rem;
            border-radius: 20px;
            font-size: clamp(0.7rem, 0.9vw, 0.75rem);
            font-weight: 600;
            width: fit-content;
            border: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }
        .steel-division .division-badge {
            background: rgba(255, 215, 0, 0.12);
            color: #FFD700;
            border-color: rgba(255, 215, 0, 0.3);
        }
        .shipping-division .division-badge {
            background: rgba(45, 212, 191, 0.12);
            color: #2dd4bf;
            border-color: rgba(45, 212, 191, 0.3);
        }
        .equipment-division .division-badge {
            background: rgba(246, 173, 85, 0.12);
            color: #f6ad55;
            border-color: rgba(246, 173, 85, 0.3);
        }

        .division-title {
            margin: 0;
            font-size: clamp(1.4rem, 2.2vw, 1.75rem);
            font-weight: 800;
            line-height: 1.3;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: normal;
            hyphens: none;
        }

        .steel-division .division-logo {
            background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .shipping-division .division-logo {
            background: linear-gradient(135deg, #ffffff 0%, #2dd4bf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .equipment-division .division-logo {
            background: linear-gradient(135deg, #ffffff 0%, #f6ad55 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .division-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: clamp(0.85rem, 1.1vw, 0.95rem);
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: normal;
            hyphens: none;
        }

        .division-stats {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1.2rem;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin: 0.5rem 0;
            gap: 0.5rem;
        }

        .division-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            min-width: 0;
        }

        .division-stat-val {
            font-size: clamp(1.1rem, 1.8vw, 1.4rem);
            font-weight: 800;
            line-height: 1.2;
            font-family: 'Tajawal', sans-serif;
            white-space: nowrap;
        }

        .division-stat-suffix {
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            font-weight: 800;
            margin-inline-start: 0.1rem;
            color: currentColor;
        }

        .steel-division .division-stat-val { color: #FFD700; }
        .steel-division .division-stat-suffix { color: #FFD700; }
        .shipping-division .division-stat-val { color: #2dd4bf; }
        .equipment-division .division-stat-val { color: #f6ad55; }
        .equipment-division .division-stat-suffix { color: #f6ad55; }

        .division-stat-lbl {
            font-size: clamp(0.65rem, 0.8vw, 0.7rem);
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.1rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .division-stat-sep {
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .division-actions {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }

        .division-actions a {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            min-width: 0;
        }

        /* Steel actions */
        .steel-division .btn-div-primary {
            background: rgba(255, 215, 0, 0.2);
            color: #ffffff;
            border: 1px solid rgba(255, 215, 0, 0.45);
        }
        .steel-division .btn-div-primary:hover {
            background: rgba(255, 215, 0, 0.35);
            border-color: rgba(255, 215, 0, 0.65);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
        }
        .steel-division .btn-div-outline {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .steel-division .btn-div-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 215, 0, 0.35);
        }

        /* Shipping actions */
        .shipping-division .btn-div-primary {
            background: rgba(45, 212, 191, 0.2);
            color: #ffffff;
            border: 1px solid rgba(45, 212, 191, 0.45);
        }
        .shipping-division .btn-div-primary:hover {
            background: rgba(45, 212, 191, 0.35);
            border-color: rgba(45, 212, 191, 0.65);
            box-shadow: 0 4px 15px rgba(45, 212, 191, 0.25);
        }
        .shipping-division .btn-div-outline {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .shipping-division .btn-div-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(45, 212, 191, 0.35);
        }

        /* Heavy Equipment actions */
        .equipment-division .btn-div-primary {
            background: rgba(246, 173, 85, 0.2);
            color: #ffffff;
            border: 1px solid rgba(246, 173, 85, 0.45);
        }
        .equipment-division .btn-div-primary:hover {
            background: rgba(246, 173, 85, 0.35);
            border-color: rgba(246, 173, 85, 0.65);
            box-shadow: 0 4px 15px rgba(246, 173, 85, 0.25);
        }
        .equipment-division .btn-div-outline {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .equipment-division .btn-div-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(246, 173, 85, 0.35);
        }

        /* Responsive Breakpoints for Specialized Divisions Grid */
        @media (max-width: 991px) {
            .specialized-sections-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.8rem;
            }
            /* Make the third card span both columns for perfect balance in 2-column mode */
            .specialized-sections-grid > *:last-child {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .specialized-sections-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .specialized-sections-grid > *:last-child {
                grid-column: span 1;
            }
            .division-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .division-actions {
                flex-direction: column;
                gap: 0.5rem;
            }
            .division-actions a {
                width: 100%;
            }
            .division-stats {
                padding: 0.6rem 0.8rem;
            }
            .division-stat-val {
                font-size: 1.15rem;
            }
            .division-stat-lbl {
                font-size: 0.6rem;
            }
        }
