/* ==========================================================================
   CSS Variables & Design System (OnTime Systems Corporate Premium)
   ========================================================================== */
   :root {
    /* Brand Colors */
    --navy: #0a2540;
    --dark-blue: #061F42;
    --light-blue: #007bff;
    --orange: #fd7e14;
    --orange-hover: #e3680b;
    --white: #ffffff;
    --soft-gray: #f8f9fa;
    --light-gray: #e9ecef;
    --text-main: #2d3748;
    --text-muted: #718096;
    
    /* Utilities */
    --green: #10b981;
    --red: #ef4444;
    
    /* Typography */
    --font-family: 'Cairo', sans-serif;
    
    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-glass: 0 8px 32px 0 rgba(10, 37, 64, 0.1);
    
    --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-family); background-color: var(--white);
    color: var(--text-main); line-height: 1.7; overflow-x: hidden; direction: rtl;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.bg-soft-gray { background-color: var(--soft-gray); }
.bg-navy { background-color: var(--navy); }
.text-center { text-align: center; }
.text-navy { color: var(--navy) !important; }
.text-white { color: var(--white) !important; }
.text-light-blue { color: var(--light-blue) !important; }
.text-orange { color: var(--orange) !important; }
.text-green { color: var(--green) !important; }
.text-light-gray { color: #cbd5e1; }
.relative-z { position: relative; z-index: 2; }
.mt-5 { margin-top: 3rem; }
.hidden { display: none !important; }

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
}
.bg-navy .glass-effect {
    background: rgba(10, 37, 64, 0.6); border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--navy); }
.bg-navy h2 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }
.section-tag {
    display: inline-block; padding: 6px 16px; background-color: rgba(0, 123, 255, 0.1);
    color: var(--light-blue); border-radius: 30px; font-weight: 700; font-size: 0.9rem; margin-bottom: 15px;
}
.section-tag.tag-light { background-color: rgba(255,255,255,0.1); color: var(--white); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: var(--transition); border: none; font-family: inherit;
}
.btn-large { padding: 15px 35px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.btn-primary { background-color: var(--navy); color: var(--white); box-shadow: 0 4px 15px rgba(10, 37, 64, 0.3); }
.btn-primary:hover { background-color: var(--light-blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4); }

.btn-orange { background-color: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3); }
.btn-blue { background-color: var(--dark-blue); color: var(--white); box-shadow: 0 4px 15px rgba(20, 82, 253, 0.3); }
.btn-orange:hover { background-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4); }
.btn-blue:hover { background-color: #012d58; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(11, 0, 58, 0.4); }

.btn-light-blue { background-color: var(--light-blue); color: var(--white); }
.btn-light-blue:hover { background-color: var(--navy); transform: translateY(-2px); }

.btn-outline-white { background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background-color: var(--white); color: var(--navy); }

.btn-white { background-color: var(--white); color: var(--navy); }
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.btn-whatsapp { background-color: #25D366; color: var(--white); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background-color: #128C7E; transform: translateY(-2px); }

.pulse-btn { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(253, 126, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0); }
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); background: transparent; }
.header.scrolled { padding: 12px 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; font-weight: 900; color: var(--white); transition: var(--transition); }
.logo a span { color: #fd7e14; }
.header.scrolled .logo a { color: var(--navy); }

.nav-menu ul { display: flex; gap: 25px; }
.nav-link { font-weight: 600; font-size: 1rem; color: rgba(255,255,255,0.8); position: relative; padding: 5px 0; }
.header.scrolled .nav-link { color: var(--navy); }
.nav-link::after { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 3px; background-color: var(--orange); transition: var(--transition); border-radius: 2px; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: #0F2C4B; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.header.scrolled .mobile-toggle { color: var(--navy); }

/* ===== Clean Navbar Brand for White Logo ===== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-clean {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 100px;
    padding: 7px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    transition: var(--transition);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0;
    color: #ffffff;
    transition: var(--transition);
    line-height: 1;
}

.brand-clean:hover .brand-icon {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(253, 126, 20, 0.18);
}

.brand-clean:hover .brand-name {
    color: var(--orange);
}

/* لما الهيدر ينزل ويبقى أبيض */
.header.scrolled .brand-name {
    color: var(--navy);
}

/* Border appears only when navbar becomes white on scroll */
.logo .brand-icon,
.logo .brand-logo-img {
    border: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled .brand-icon,
.header.scrolled .brand-logo-img {
    border-color: rgba(10, 37, 64, 0.22);
    box-shadow:
        0 10px 24px rgba(10, 37, 64, 0.12),
        0 0 0 3px rgba(253, 126, 20, 0.06);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative; padding: 180px 0 120px; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3c63 100%);
    color: var(--white);
}
.particles-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.3; }

.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 2; }
.hero-content { flex: 1.1; max-width: 650px; }
.glass-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); padding: 8px 16px; border-radius: 50px; color: var(--white); font-weight: 600; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.2); }

.hero-title { font-size: 3.5rem; line-height: 1.3; margin-bottom: 25px; color: var(--white); }
.typing-text { display: inline-block; border-left: 3px solid var(--orange); padding-left: 5px; animation: blinkCursor 0.8s infinite; }
@keyframes blinkCursor { 50% { border-color: transparent; } }

.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; }

/* Hero Visual / Mockup */
.hero-visual { flex: 0.9; position: relative; }
.floating-shape { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 1; animation: floatShape 8s ease-in-out infinite; }
.shape-1 { width: 350px; height: 350px; background: rgba(0, 123, 255, 0.4); top: -50px; right: -50px; }
.shape-2 { width: 250px; height: 250px; background: rgba(253, 126, 20, 0.4); bottom: -50px; left: -50px; animation-delay: -4s; }

.dashboard-mockup {
    position: relative; z-index: 2; border-radius: 16px; overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.5s ease; border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05); height: 350px; display: flex; flex-direction: column;
}
.dashboard-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

.mockup-header { height: 30px; background: rgba(0,0,0,0.2); display: flex; align-items: center; padding: 0 15px; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }

.mockup-body { display: flex; flex: 1; padding: 15px; gap: 15px; }
.mockup-sidebar { width: 60px; background: rgba(255,255,255,0.1); border-radius: 8px; }
.mockup-content { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.mockup-cards { display: flex; gap: 15px; height: 60px; }
.m-card { flex: 1; background: rgba(255,255,255,0.1); border-radius: 8px; }
.mockup-chart { flex: 1; background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%); border-radius: 8px; position: relative; overflow: hidden; }
.mockup-chart::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(90deg, transparent, rgba(0,123,255,0.3), transparent); clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 40%, 80% 60%, 100% 20%, 100% 100%); }

.float-card {
    position: absolute; padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; z-index: 3;
    animation: floatShape 5s ease-in-out infinite; box-shadow: var(--shadow-lg); font-size: 0.9rem;
}
.fc-1 { top: 15%; right: -30px; animation-delay: 0s; }
.fc-2 { bottom: 20%; right: -20px; animation-delay: 1s; }
.fc-3 { top: 10%; left: -20px; animation-delay: 2s; }
.fc-4 { bottom: -20px; left: 25%; animation-delay: 3s; background: var(--orange); color: var(--white); }

@keyframes floatShape { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; }
.trust-line { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border-radius: var(--radius-md); border-right: 4px solid var(--orange); }
.trust-line i { font-size: 2rem; color: var(--orange); }
.trust-line h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--navy); }
.trust-line p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.about-stats { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-box { padding: 30px 20px; text-align: center; border-radius: var(--radius-md); transition: var(--transition); border: 1px solid var(--light-gray); }
.stat-box:hover { transform: translateY(-5px); border-color: var(--light-blue); box-shadow: var(--shadow-md); }
.stat-box i { font-size: 2.5rem; color: var(--light-blue); margin-bottom: 15px; }
.stat-box h3 { font-size: 2.5rem; color: var(--navy); margin-bottom: 5px; font-weight: 900; }
.stat-box p { color: var(--text-muted); font-weight: 600; margin: 0; }

/* ==========================================================================
   Solutions & POS Arrays (Cards)
   ========================================================================== */
.solutions-grid, .pos-grid, .business-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px;
}
.solution-card, .pos-card, .biz-card {
    background: var(--white); padding: 35px 30px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); transition: var(--transition);
    position: relative; overflow: hidden;
}
.pos-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: var(--white); text-align: center; }
.pos-card h3 { color: var(--white); }

.solution-card::before, .biz-card::before {
    content: ''; position: absolute; top: 0; right: 0; width: 4px; height: 0; background: var(--light-blue); transition: var(--transition);
}
.solution-card:hover, .biz-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.solution-card:hover::before, .biz-card:hover::before { height: 100%; }

.pos-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.08); border-color: var(--orange); }

.card-icon-wrap {
    width: 65px; height: 65px; background: rgba(0, 123, 255, 0.08); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--light-blue); margin-bottom: 20px; transition: var(--transition);
}
.pos-card .card-icon-wrap { background: rgba(255,255,255,0.1); color: var(--orange); margin: 0 auto 20px; }
.solution-card:hover .card-icon-wrap { background: var(--light-blue); color: var(--white); }
.pos-card:hover .card-icon-wrap { background: var(--orange); color: var(--white); }

.solution-card h3, .biz-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.biz-card h3 { display: flex; align-items: center; gap: 10px; }
.biz-card h3 i { color: var(--orange); }
.solution-card p, .pos-card p, .biz-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.pos-card p { color: #cbd5e1; }

.more-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.more-link:hover { color: var(--orange); gap: 12px; }

/* Filter Controls */
.filter-controls { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
    padding: 8px 22px; background: var(--white); border: 1px solid var(--light-gray); border-radius: 30px;
    font-family: inherit; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ==========================================================================
   Why Us & Process Section
   ========================================================================== */
.why-process-wrap { background: var(--white); }
.why-container { display: flex; align-items: center; gap: 60px; }
.why-content { flex: 1.2; }
.why-content h2 { font-size: 2.2rem; margin-bottom: 30px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 1.05rem; }
.check-list li i { color: var(--green); margin-top: 5px; }

.why-image { flex: 0.8; display: flex; justify-content: center; }
.glass-feature-card {
    background: linear-gradient(135deg, var(--soft-gray) 0%, #ffffff 100%); padding: 50px;
    border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--light-gray);
}
.icon-huge { font-size: 5rem; margin-bottom: 20px; }

/* Timeline */
.timeline { display: flex; justify-content: space-between; position: relative; margin-top: 40px; flex-wrap: wrap; gap: 30px; }
.timeline::before { content: ''; position: absolute; top: 35px; right: 0; width: 100%; height: 2px; background: var(--light-gray); z-index: 1; }
.timeline-step { flex: 1; text-align: center; position: relative; z-index: 2; min-width: 150px; }
.step-icon {
    width: 70px; height: 70px; background: var(--white); border: 3px solid var(--light-blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    color: var(--navy); margin: 0 auto 20px; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.timeline-step:hover .step-icon { background: var(--light-blue); color: var(--white); transform: scale(1.1); border-color: var(--navy); }
.timeline-step h4 { font-size: 1.1rem; color: var(--navy); }

/* ==========================================================================
   Branches
   ========================================================================== */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.branch-card { padding: 40px; border-radius: var(--radius-md); border: 1px solid var(--light-gray); transition: var(--transition); text-align: center; background: var(--white); }
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--light-blue); }
.branch-icon { width: 70px; height: 70px; background: rgba(253, 126, 20, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--orange); margin: 0 auto 20px; }
.branch-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.branch-card p { color: var(--text-muted); margin-bottom: 20px; font-weight: 600; }
.branch-contact { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.branch-contact a { font-size: 1.2rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.branch-contact a:hover { color: var(--light-blue); }


/* ==========================================================================
   Contact Section - OnTime Systems
   ========================================================================== */

.contact {
    position: relative;
    overflow: hidden;
    background:
        #ededf1;
    padding: 130px 0 100px;
    margin-top: -40px;
    isolation: isolate;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 45px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 24px 70px rgba(10, 37, 64, 0.12);
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
}

.contact-info {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(6, 31, 66, 0.94)),
        url("assets/contact-pattern.png");
    background-size: cover;
    border-radius: 24px;
    padding: 45px;
    color: #ffffff;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -55px;
    top: -55px;
    background: rgba(253, 126, 20, 0.16);
    border-radius: 50%;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -35px;
    bottom: -35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-info > * {
    position: relative;
    z-index: 2;
}

.contact .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    color: #ffffff;
    background: rgba(253, 126, 20, 0.18);
    border: 1px solid rgba(253, 126, 20, 0.35);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-info h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    font-weight: 800;
}

.contact-info p {
    margin: 0 0 32px;
    color: #d8e2ee;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 520px;
}

.contact-details {
    display: grid;
    gap: 16px;
    margin-bottom: 35px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: 0.35s ease;
}

.contact-detail-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(253, 126, 20, 0.45);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #fd7e14, #ff9f43);
    border-radius: 14px;
    font-size: 1.1rem;
    box-shadow: 0 10px 24px rgba(253, 126, 20, 0.28);
}

.contact-detail-card span {
    display: block;
    margin-bottom: 4px;
    color: #b8c7d8;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-detail-card a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-detail-card a:hover {
    color: #fd7e14;
}

.contact-action-btns {
    width: 100%;
    display: flex;
    gap: 14px;
}

.contact-action-btns .btn-contact {
    flex: 1;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.35s ease;
}

.btn-call {
    color: #0a2540;
    background: #ffffff;
}

.btn-call:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background: #fd7e14;
    box-shadow: 0 14px 28px rgba(253, 126, 20, 0.25);
}

.btn-whatsapp {
    color: #ffffff;
    background: #25d366;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

/* Form */

.contact-form-box {
    display: flex;
}

.contact-form-box form {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.form-title {
    margin-bottom: 28px;
}

.form-title h3 {
    margin: 0 0 8px;
    color: #0a2540;
    font-size: 1.7rem;
    font-weight: 800;
}

.form-title p {
    margin: 0;
    color: #718096;
    font-size: 0.98rem;
    line-height: 1.7;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0a2540;
    font-size: 0.95rem;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    color: #2d3748;
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa7b5;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #fd7e14;
    box-shadow: 0 0 0 4px rgba(253, 126, 20, 0.12);
}

.error-msg {
    display: none;
    margin-top: 6px;
    color: #ef4444;
    font-size: 0.84rem;
    font-weight: 700;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
    background: #fff7f7;
}

.form-group.error .error-msg {
    display: block;
}

.contact-submit-btn {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #fd7e14, #f97316);
    border: none;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 16px 34px rgba(253, 126, 20, 0.28);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(253, 126, 20, 0.36);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

/* Responsive */

@media (max-width: 992px) {
    .contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .contact-info,
    .contact-form-box form {
        padding: 34px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        padding: 14px;
        border-radius: 22px;
    }

    .contact-info,
    .contact-form-box form {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 0.96rem;
    }

    .contact-detail-card {
        align-items: flex-start;
        padding: 13px;
    }

    .contact-detail-card a {
        font-size: 0.92rem;
        word-break: break-word;
    }

    .contact-action-btns {
        flex-direction: column;
    }

    .btn-contact {
        width: 100%;
    }
}



/* Balance Contact Info With Form */

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-box {
    height: 100%;
}

.contact-form-box form {
    height: 100%;
}

.contact-details {
    margin-bottom: 22px;
}

.contact-small-text {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.contact-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    text-align: right;
}

.contact-features {
    display: grid;
    gap: 11px;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    height: 175px;
}

.contact-features div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d8e2ee;
    font-size: 0.94rem;
    line-height: 1.7;
}

.contact-features i {
    color: #fd7e14;
    margin-top: 5px;
    font-size: 0.95rem;
}

/* Lock textarea size and make scroll inside */

.form-group textarea {
    height: 150px;
    min-height: 120px;
    max-height: 150px;
    resize: none;
    overflow-y: auto;
    line-height: 1.7;
}

/* Nice scrollbar inside textarea */

.form-group textarea::-webkit-scrollbar {
    width: 7px;
}

.form-group textarea::-webkit-scrollbar-track {
    background: #eef2f6;
    border-radius: 20px;
}

.form-group textarea::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
    background: #fd7e14;
}

@media (max-width: 992px) {
    .contact-features {
        margin-top: 10px;
    }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: linear-gradient(135deg, var(--light-blue) 0%, var(--navy) 100%); padding: 90px 0; color: var(--white); }
.final-cta h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; }
.final-cta p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* ==========================================================================
   Footer - Clean Light Style
   ========================================================================== */
/* ==========================================================================
   Footer - OnTime Systems
   ========================================================================== */

.footer {
    background-color: #04142a;
    color: #cbd5e1;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}

.footer-logo span {
    color: var(--orange);
    font-weight: 500;
    font-size: 1.25rem;
}

.brand-col p,
.footer-col p {
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.9;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #ffffff;
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-col h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
    border-radius: 50px;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    display: inline-block;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
    transform: translateX(-5px);
}

/* Newsletter */

.newsletter-form {
    display: flex;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 15px;
    border: none;
    outline: none;
    color: var(--navy);
    background: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    width: 52px;
    min-width: 52px;
    color: #ffffff;
    background: var(--orange);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--orange-hover);
}

/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: right;
    }

    .footer-logo {
        font-size: 1.7rem;
    }

    .footer-logo span {
        display: block;
        margin-top: 4px;
        font-size: 1rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }
}


.footer-logo-line {
    width: 75px;
    height: 4.2px;
    border: none;
    background: var(--orange);
    border-radius: 20px;
    margin: 12px 0 22px;
}

/* ==========================================================================
   Floating Elements & Toast
   ========================================================================== */
.back-to-top, .floating-whatsapp {
    position: fixed; bottom: 30px; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white);
    box-shadow: var(--shadow-lg); transition: var(--transition); z-index: 999;
}
.floating-whatsapp { left: 30px; background: #25D366; }
.floating-whatsapp:hover { background: #128C7E; transform: translateY(-5px) scale(1.1); }
.back-to-top { right: 30px; background: var(--navy); border: none; cursor: pointer; opacity: 0; visibility: hidden; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); transform: translateY(-5px); }

/* Toast */
.pos-card h3 {
    margin-bottom: 14px;
}
/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 10000;

    width: 90%;
    max-width: 400px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-right: 5px solid var(--green);
    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, calc(100% + 80px));
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.toast-icon {
    font-size: 2rem;
    color: var(--green);
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.toast-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-inline-start: auto;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--red);
}

@media (max-width: 576px) {
    .toast {
        bottom: 20px;
        max-width: calc(100% - 30px);
        padding: 16px 18px;
    }

    .toast-content h4 {
        font-size: 1rem;
    }

    .toast-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Animations & Scroll Reveal
   ========================================================================== */
.reveal-up, .reveal-right { opacity: 0; transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-up { transform: translateY(50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container, .about-container, .why-container, .contact-wrapper { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content, .about-text { max-width: 100%; }
    .hero-buttons, .contact-action-btns { justify-content: center; }
    .hero-visual { width: 100%; max-width: 600px; margin: 0 auto; }
    .trust-line { justify-content: center; text-align: right; border-right: none; border-bottom: 4px solid var(--orange); }
    .check-list { text-align: right; }
    .timeline::before { display: none; }
    .timeline { flex-direction: column; gap: 30px; }
    .contact-wrapper { padding: 30px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 75px; right: -100%; width: 100%; height: calc(100vh - 75px);
        background: var(--navy); flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s ease;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; text-align: center; gap: 30px; }
    .nav-link { font-size: 1.3rem; }
    .mobile-toggle { display: block; }
    .header-actions .btn-orange { display: none; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .stat-box { padding: 20px; }
    .check-list { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); right: auto; }
    .contact-form form { padding: 25px; }
}



#pos-devices .section-tag.tag-light {
    font-size: 1.25rem;
    padding: 12px 32px;
    font-weight: 900;
    background: var(--orange);
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(253, 126, 20, 0.35);
    margin-bottom: 40px;
}









.hero-typing-title {
    height: 4.05em;              /* 3 سطور ثابتين */
    min-height: 4.05em;
    max-height: 4.05em;
    line-height: 1.35;
    overflow: hidden;

    display: block;
    max-width: 720px;
    margin-bottom: 25px;

    color: #ffffff;
}

.typed-line {
    display: inline;
    font-weight: 900;
    line-height: inherit;
    white-space: normal;
    word-break: normal;
}

.typed-line.is-white {
    color: #ffffff;
}

.typed-line.is-orange {
    color: var(--orange);
}

.typed-line::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.9em;
    margin-right: 6px;
    vertical-align: -0.06em;
    animation: typingCursorBlink 0.8s infinite;
}

/* لما الجملة بيضاء، علامة الكتابة تبقى برتقالي */
.typed-line.is-white::after {
    background: var(--orange);
}

/* لما الجملة برتقالي، علامة الكتابة تبقى أبيض */
.typed-line.is-orange::after {
    background: #ffffff;
}

@keyframes typingCursorBlink {
    0%, 45% {
        opacity: 1;
    }

    46%, 100% {
        opacity: 0;
    }
}












/* ==========================================================================
   Premium Redesign - Solutions Cards Only
   ========================================================================== */

#solutions .solutions-grid {
    gap: 28px;
}

#solutions .solution-card {
    min-height: 310px;
    padding: 36px 30px 32px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.45s ease;
}

/* الخط اللي بينزل في الهوفر */
#solutions .solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--orange), var(--orange-hover));
    border-radius: 0 24px 24px 0;
    transition: height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* لمعة خفيفة في الخلفية */
#solutions .solution-card::after {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 170px;
    height: 170px;
    background: rgba(253, 126, 20, 0.09);
    border-radius: 50%;
    opacity: 0;
    transition: 0.45s ease;
}

#solutions .solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 126, 20, 0.28);
    box-shadow: 0 24px 55px rgba(10, 37, 64, 0.14);
}

#solutions .solution-card:hover::before {
    height: 100%;
}

#solutions .solution-card:hover::after {
    opacity: 1;
    transform: scale(1.15);
}

/* الأيقونة برتقالي من البداية */
#solutions .solution-card .card-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: rgba(253, 126, 20, 0.10);
    color: var(--orange);
    font-size: 2rem;
    box-shadow: 0 12px 28px rgba(253, 126, 20, 0.12);
    position: relative;
    z-index: 2;
    transition: 0.45s ease;
}

#solutions .solution-card:hover .card-icon-wrap {
    background: var(--orange);
    color: #ffffff;
    transform: rotate(-4deg) scale(1.05);
    box-shadow: 0 18px 36px rgba(253, 126, 20, 0.28);
}

#solutions .solution-card h3 {
    position: relative;
    z-index: 2;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 14px;
    transition: 0.35s ease;
}

#solutions .solution-card p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 0;
}

#solutions .solution-card .more-link {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    color: var(--orange);
    font-weight: 900;
}

#solutions .solution-card .more-link i {
    transition: 0.35s ease;
}

#solutions .solution-card .more-link:hover {
    color: var(--orange-hover);
    gap: 14px;
}

#solutions .section-tag {
    font-size: 1rem;
    padding: 10px 28px;
    font-weight: 900;
    color: var(--orange);
    background: rgba(253, 126, 20, 0.10);
    border: 1px solid rgba(253, 126, 20, 0.28);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(253, 126, 20, 0.12);
    margin-bottom: 30px;
}

/* موبايل */
@media (max-width: 576px) {
    #solutions .solution-card {
        min-height: auto;
        padding: 30px 24px;
        border-radius: 20px;
    }

    #solutions .solution-card .card-icon-wrap {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    #solutions .solution-card h3 {
        font-size: 1.2rem;
    }

    #solutions .solution-card p {
        font-size: 0.94rem;
    }
}









/* POS Cards Simple Design */

#pos-devices .pos-card {
    background: #ffffff;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

#pos-devices .pos-card h3 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

#pos-devices .pos-card p {
    color: #475569;
    line-height: 1.8;
}

#pos-devices .pos-card .card-icon-wrap {
    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    margin: 0 auto 20px;
    border-radius: 16px;
}

#pos-devices .pos-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

#pos-devices .pos-card:hover .card-icon-wrap {
    background: var(--orange);
    color: #ffffff;
}






/* Business Types Section - Clean Hover Colors */

#business-types .biz-card::before {
    background: var(--orange);
}

#business-types .biz-card:hover {
    border-color: rgba(253, 126, 20, 0.35);
}

#business-types .biz-card h3 i {
    color: var(--orange);
}

/* Filter buttons */
#business-types .filter-btn:hover,
#business-types .filter-btn.active {
    background: #0A2540;
    color: #ffffff;
    border-color: #0A2540;
}

/* Section tag */
#business-types .section-tag {
    color: var(--orange);
    background: rgba(253, 126, 20, 0.10);
}


























/* ==========================================================================
   Process Section - Simple Orange/Navy Style
   ========================================================================== */

#process .section-tag {
    color: var(--orange);
    background: rgba(253, 126, 20, 0.10);
    border: 1px solid rgba(253, 126, 20, 0.25);
    font-weight: 900;
}

#process .timeline::before {
    background: rgba(253, 126, 20, 0.25);
}

#process .step-icon {
    background: #ffffff;
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 10px 25px rgba(253, 126, 20, 0.12);
}

#process .timeline-step:hover .step-icon {
    background: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
    transform: scale(1.08);
}

#process .timeline-step h4 {
    color: var(--navy);
    font-weight: 900;
    margin-top: 5px;
}








/* ==========================================================================
   Branches Section - Clean Centered Design
   ========================================================================== */

#branches {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* زخرفة خفيفة في وسط السيكشن مش على الأطراف */
#branches::before {
    content: "";
    position: absolute;
    top: 52%;
    right: 50%;
    width: 520px;
    height: 520px;
    transform: translate(50%, -50%);
    background: radial-gradient(circle, rgba(253, 126, 20, 0.09), transparent 65%);
    z-index: 0;
    pointer-events: none;
}

#branches .container {
    position: relative;
    z-index: 2;
}

/* تاج فروعنا */
#branches .section-tag {
    color: var(--orange);
    background: rgba(253, 126, 20, 0.10);
    border: 1px solid rgba(253, 126, 20, 0.25);
    font-weight: 900;
}

/* شبكة الفروع */
#branches .branches-grid {
    max-width: 980px;
    margin: 0 auto;
    gap: 28px;
}

/* الكارت */
#branches .branch-card {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.10);
    border-radius: 22px;
    padding: 38px 30px;
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.08);
    transition: 0.35s ease;
}

/* هوفر واحد فقط على الكارت */
#branches .branch-card:hover {
    transform: translateY(-7px);
    border-color: rgba(253, 126, 20, 0.45);
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.12);
}

/* الأيقونة */
#branches .branch-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    border-radius: 18px;
    font-size: 1.9rem;
}

/* عنوان الفرع */
#branches .branch-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 14px;
}

/* العنوان */
#branches .branch-card p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

#branches .branch-card p i {
    color: var(--orange);
    margin-left: 6px;
}

/* أرقام التواصل */
#branches .branch-contact {
    gap: 10px;
}

#branches .branch-contact a {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    background: #f8fafc;
    color: var(--navy);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 900;
    transition: 0.25s ease;
}

/* مفيش هوفر تقيل جوه الكارت */
#branches .branch-contact a:hover {
    color: var(--orange);
    background: #f8fafc;
    border-color: rgba(253, 126, 20, 0.35);
    transform: none;
}

#branches .branch-contact a i {
    color: var(--orange);
}

/* Mobile */
@media (max-width: 576px) {
    #branches::before {
        width: 360px;
        height: 360px;
    }

    #branches .branch-card {
        padding: 32px 22px;
        border-radius: 20px;
    }

    #branches .branch-card h3 {
        font-size: 1.3rem;
    }

    #branches .branch-contact a {
        font-size: 0.95rem;
    }
}


/* ==========================================================================
   Contact Section - Clean Professional Redesign
   ========================================================================== */

#contact {
    position: relative;
    background: #f4f6f8;
    padding: 100px 0;
    margin-top: 0;
    overflow: hidden;
}

/* إلغاء الكرات القديمة اللي في أطراف كارت التواصل */
#contact .contact-info::before,
#contact .contact-info::after {
    display: none;
}

#contact .contact-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;

    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(10, 37, 64, 0.10);
}

/* الجانب الكحلي */
#contact .contact-info {
    background: #0A2540;
    border-radius: 22px;
    padding: 40px 34px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* تاج تواصل معنا */
#contact .section-tag {
    width: fit-content;
    color: #ffffff;
    background: rgba(253, 126, 20, 0.18);
    border: 1px solid rgba(253, 126, 20, 0.35);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 18px;
}

#contact .contact-info h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 14px;
}

#contact .contact-info > p {
    color: #d8e2ee;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 26px;
}

/* بيانات التواصل */
#contact .contact-details {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

#contact .contact-detail-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: 0.3s ease;
}

/* هوفر بسيط فقط على الكارت نفسه */
#contact .contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(253, 126, 20, 0.35);
}

#contact .contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #ffffff;
    border-radius: 14px;
    font-size: 1.05rem;
}

#contact .contact-detail-card span {
    display: block;
    color: #b8c7d8;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 3px;
}

#contact .contact-detail-card a {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
}

#contact .contact-detail-card a:hover {
    color: #ffffff;
}

/* المميزات */
#contact .contact-features {
    display: grid;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
}

#contact .contact-features div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d8e2ee;
    font-size: 0.94rem;
    line-height: 1.7;
}

#contact .contact-features i {
    color: var(--orange);
    margin-top: 5px;
}

/* أزرار التواصل */
#contact .contact-action-btns {
    display: flex;
    gap: 12px;
}

#contact .btn-contact {
    flex: 1;
    min-height: 50px;
    border-radius: 14px;
    font-size: 0.96rem;
    font-weight: 900;
    transition: 0.25s ease;
}

#contact .btn-call {
    background: #ffffff;
    color: #0A2540;
}

#contact .btn-call:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-2px);
}

#contact .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}

#contact .btn-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* الفورم */
#contact form {
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 34px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: none;
}

#contact .form-title {
    margin-bottom: 24px;
}

#contact .form-title h3 {
    color: var(--navy);
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 8px;
}

#contact .form-title p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

#contact .form-group {
    margin-bottom: 16px;
}

#contact .form-group label {
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 7px;
}

#contact .form-group input,
#contact .form-group textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: inherit;
    transition: 0.25s ease;
}

#contact .form-group input:focus,
#contact .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(253, 126, 20, 0.12);
}

#contact .form-group textarea {
    height: 135px;
    min-height: 135px;
    max-height: 135px;
    resize: none;
}

/* زر الإرسال */
#contact .contact-submit-btn {
    min-height: 54px;
    margin-top: 8px;
    background: var(--orange);
    color: #ffffff;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(253, 126, 20, 0.24);
    transition: 0.25s ease;
}

#contact .contact-submit-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(253, 126, 20, 0.30);
}

/* Responsive */
@media (max-width: 992px) {
    #contact .contact-wrapper {
        grid-template-columns: 1fr;
    }

    #contact .contact-info,
    #contact form {
        padding: 32px 26px;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 70px 0;
    }

    #contact .contact-wrapper {
        padding: 14px;
        border-radius: 22px;
    }

    #contact .contact-info,
    #contact form {
        padding: 26px 20px;
        border-radius: 18px;
    }

    #contact .contact-info h2 {
        font-size: 1.8rem;
    }

    #contact .contact-action-btns {
        flex-direction: column;
    }

    #contact .contact-detail-card {
        align-items: flex-start;
    }

    #contact .contact-detail-card a {
        font-size: 0.9rem;
        word-break: break-word;
    }
}



/* تقليل المسافة بين أرقام الموبايل والمميزات */
#contact .contact-details {
    margin-bottom: 14px;
}

#contact .contact-features {
    margin-top: 12px;
    margin-bottom: 22px;
}

/* تكبير أرقام التليفون وتقليل سمك الخط */

#contact .contact-number {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   Final CTA - Full Width Professional Closing Section
   ========================================================================== */

.final-cta {
    position: relative;
    width: 100%;
    padding: 95px 0;
    background: linear-gradient(135deg, #0A2540 0%, #071b33 100%);
    color: #ffffff;
    overflow: hidden;
}

/* خط برتقالي علوي */
.final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: var(--orange);
}



.final-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    max-width: 850px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.45;
}

.final-cta p {
    max-width: 780px;
    margin: 0 auto 36px;
    color: #d8e2ee;
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 500;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.final-cta .pulse-btn {
    animation: none;
}

.final-cta .btn {
    min-width: 220px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 900;
    transition: 0.25s ease;
}

/* زر واتساب أخضر دائمًا */
.final-cta .btn-whatsapp,
.btn-whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    border: 1px solid #25D366 !important;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.final-cta .btn-whatsapp:hover,
.btn-whatsapp:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* زر المتجر */
.final-cta .btn-white {
    background: #ffffff;
    color: #0A2540 !important;
    border: 1px solid #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.final-cta .btn-white:hover {
    background: var(--orange);
    color: #ffffff !important;
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 576px) {
    .final-cta {
        padding: 70px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta p {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }

    .final-cta .cta-buttons {
        flex-direction: column;
    }

    .final-cta .btn {
        width: 100%;
        min-width: 100%;
    }
}




/* ==========================================================================
   About Section - Orange Premium Design
   ========================================================================== */

#about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    padding: 100px 0;
}

/* إضاءة برتقالي خفيفة في منتصف السيكشن */
#about::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 620px;
    height: 620px;
    transform: translate(50%, -50%);
    background: radial-gradient(circle, rgba(253, 126, 20, 0.14), transparent 65%);
    pointer-events: none;
}

#about .about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

/* تاج من نحن */
#about .section-tag {
    width: fit-content;
    color: #ffffff;
    background: var(--orange);
    border: 1px solid rgba(253, 126, 20, 0.35);
    border-radius: 999px;
    padding: 9px 24px;
    font-size: 0.98rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(253, 126, 20, 0.22);
    margin-bottom: 20px;
}

#about .about-text h2 {
    color: #0F2C4B;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 22px;
    position: relative;
}

#about .about-text h2::after {
    content: "";
    display: block;
    width: 95px;
    height: 5px;
    background: var(--orange);
    border-radius: 999px;
    margin-top: 18px;
}

#about .about-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 28px;
}

#about .about-desc strong {
    color: var(--orange);
    font-weight: 900;
}

/* كارت الخبرة */
#about .trust-line {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(253, 126, 20, 0.22);
    border-right: 6px solid var(--orange);
    border-left: none;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 16px 38px rgba(253, 126, 20, 0.12);
    transition: 0.3s ease;
}

#about .trust-line:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(253, 126, 20, 0.18);
}

#about .trust-line i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: grid;
    place-items: center;
    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    border-radius: 16px;
    font-size: 1.55rem;
}

#about .trust-line h4 {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 6px;
}

#about .trust-line p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* مربعات الإحصائيات */
#about .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

#about .stat-box {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(253, 126, 20, 0.18);
    border-radius: 24px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(10, 37, 64, 0.08);
    transition: 0.32s ease;
}

#about .stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--orange);
}

#about .stat-box:hover {
    transform: translateY(-7px);
    border-color: rgba(253, 126, 20, 0.38);
    box-shadow: 0 22px 50px rgba(253, 126, 20, 0.16);
}

#about .stat-box i {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    border-radius: 18px;
    font-size: 1.8rem;
    transition: 0.3s ease;
}

#about .stat-box:hover i {
    background: var(--orange);
    color: #ffffff;
}

#about .stat-box h3 {
    color: var(--navy);
    font-size: 2.05rem;
    font-weight: 900;
    margin-bottom: 6px;
}

#about .stat-box p {
    color: #64748b;
    font-size: 0.98rem;
    font-weight: 800;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    #about .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #about .about-text {
        text-align: center;
    }

    #about .section-tag {
        margin-inline: auto;
    }

    #about .about-text h2::after {
        margin-inline: auto;
    }
}

@media (max-width: 576px) {
    #about {
        padding: 75px 0;
    }

    #about::before {
        width: 380px;
        height: 380px;
    }

    #about .about-stats {
        grid-template-columns: 1fr;
    }

    #about .trust-line {
        align-items: flex-start;
        padding: 20px;
    }

    #about .stat-box {
        padding: 30px 22px;
        border-radius: 20px;
    }

    #about .stat-box h3 {
        font-size: 1.85rem;
    }
}













/* ==========================================================================
   Business Types Section - Navy Premium Cards
   ========================================================================== */

#business-types {
    background:
        radial-gradient(circle at top right, rgba(253, 126, 20, 0.08), transparent 32%),
        linear-gradient(180deg, #f8f9fa 0%, #eef2f6 100%);
}

#business-types .business-grid {
    align-items: stretch;
}

/* الكارت نفسه */
#business-types .biz-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 34px 30px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, #0a2540 0%, #061F42 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.18);
    color: #ffffff;
    transition: 0.45s ease;
}

/* لمعة خفيفة داخل الكارت */
#business-types .biz-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -70px;
    top: -70px;
    background: rgba(253, 126, 20, 0.12);
    border-radius: 50%;
    transition: 0.45s ease;
}

/* الخط الجانبي القديم نخليه برتقالي */
#business-types .biz-card::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    width: 4px;
    height: 52px;
    background: var(--orange);
    border-radius: 20px 0 0 20px;
    transition: 0.45s ease;
}

/* العنوان */
#business-types .biz-card h3 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.6;
}

/* الأيقونة */
#business-types .biz-card h3 i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #fd7e14, #ff9f43);
    box-shadow: 0 12px 24px rgba(253, 126, 20, 0.28);
    font-size: 1.15rem;
}

/* الوصف */
#business-types .biz-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.9;
    margin: 0;
}

/* Hover */
#business-types .biz-card:hover {
    transform: translateY(-9px);
    border-color: rgba(253, 126, 20, 0.45);
    box-shadow: 0 26px 60px rgba(10, 37, 64, 0.28);
}

#business-types .biz-card:hover::after {
    transform: scale(1.35);
    background: rgba(253, 126, 20, 0.18);
}

#business-types .biz-card:hover::before {
    height: calc(100% - 44px);
}

#business-types .biz-card:hover h3 i {
    transform: rotate(-4deg) scale(1.05);
}

/* أزرار الفلترة تبقى مناسبة مع الكروت */
#business-types .filter-btn {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.10);
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(10, 37, 64, 0.06);
}

#business-types .filter-btn:hover,
#business-types .filter-btn.active {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.18);
}


/* Smooth icon tilt transition */
#business-types .biz-card h3 i {
    transition:
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

#business-types .biz-card:hover h3 i {
    transform: rotate(-3deg) scale(1.04);
}














/* ==========================================================================
   Why Us + Process Section - OnTime Systems Premium Redesign
   ========================================================================== */

.why-process-wrap {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(253, 126, 20, 0.10), transparent 30%),
        radial-gradient(circle at 88% 45%, rgba(0, 123, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fa 52%, #ffffff 100%);
    isolation: isolate;
}

.why-process-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    z-index: -2;
}

.why-process-wrap::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 120px;
    background: rgba(10, 37, 64, 0.08);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

/* ==========================================================================
   Why Us Section Only - Premium Clean Redesign
   ========================================================================== */

#why-us {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(253, 126, 20, 0.12), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(10, 37, 64, 0.10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
}

#why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.45;
    pointer-events: none;
}

#why-us .container {
    position: relative;
    z-index: 2;
}

#why-us .why-container {
    display: grid !important;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 46px;
}

/* الكارت الشمال */
#why-us .why-image {
    display: flex;
    justify-content: center;
}

#why-us .glass-feature-card {
    position: relative;
    width: 100%;
    max-width: 370px;
    min-height: 285px;
    padding: 36px 30px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(10, 37, 64, 0.98), rgba(6, 31, 66, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 55px rgba(10, 37, 64, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

#why-us .glass-feature-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -65px;
    left: -55px;
    border-radius: 50%;
    background: rgba(253, 126, 20, 0.20);
}

#why-us .glass-feature-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

#why-us .glass-feature-card > * {
    position: relative;
    z-index: 2;
}

#why-us .glass-feature-card .icon-huge {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #fd7e14, #ff9f43);
    color: #ffffff !important;
    font-size: 2.55rem;
    box-shadow:
        0 16px 32px rgba(253, 126, 20, 0.30),
        0 0 0 10px rgba(255, 255, 255, 0.055);
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

#why-us .glass-feature-card:hover .icon-huge {
    transform: translateY(-5px) rotate(-4deg);
}

#why-us .glass-feature-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 900;
}

#why-us .glass-feature-card p {
    margin: 0 auto;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* المحتوى */
#why-us .why-content {
    min-width: 0;
}

#why-us .why-content h2 {
    position: relative;
    margin: 0 0 28px;
    color: var(--navy);
    font-size: clamp(2rem, 3.6vw, 2.75rem);
    font-weight: 900;
    line-height: 1.35;
}

#why-us .why-content h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 5px;
    margin-top: 15px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), rgba(253, 126, 20, 0.20));
}

/* المميزات */
#why-us .check-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

#why-us .check-list li {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    color: #253143;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.7;
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.065);
    overflow: hidden;
    transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

#why-us .check-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a2540, #061F42);
    opacity: 0;
    transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

#why-us .check-list li i,
#why-us .check-list li span {
    position: relative;
    z-index: 2;
}

#why-us .check-list li i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 11px;
    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    font-size: 0.92rem;
    box-shadow: none;
    transition: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* عشان النص نفسه يفضل فوق الخلفية في hover حتى لو مش جوه span */
#why-us .check-list li {
    isolation: isolate;
}

#why-us .check-list li i {
    z-index: 2;
}

#why-us .check-list li:hover {
    transform: translateY(-5px);
    color: #ffffff;
    border-color: rgba(253, 126, 20, 0.35);
    box-shadow: 0 20px 42px rgba(10, 37, 64, 0.14);
}

#why-us .check-list li:hover::before {
    opacity: 1;
}

#why-us .check-list li:hover i {
    background: linear-gradient(135deg, #fd7e14, #ff9f43);
    color: #ffffff;
    transform: rotate(-4deg) scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    #why-us {
        padding: 70px 0;
    }

    #why-us .why-container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    #why-us .why-content h2::after {
        margin-inline: auto;
    }

    #why-us .check-list {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 680px) {
    #why-us {
        padding: 58px 0;
    }

    #why-us .glass-feature-card {
        max-width: 100%;
        min-height: 235px;
        padding: 30px 22px;
        border-radius: 24px;
    }

    #why-us .glass-feature-card .icon-huge {
        width: 70px;
        height: 70px;
        font-size: 2.1rem;
        border-radius: 20px;
    }

    #why-us .why-content h2 {
        font-size: 1.75rem;
        margin-bottom: 22px;
    }

    #why-us .check-list {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    #why-us .check-list li {
        min-height: 60px;
        padding: 13px 14px;
        border-radius: 16px;
        font-size: 0.92rem;
    }

    #why-us .check-list li i {
        width: 29px;
        height: 29px;
        min-width: 29px;
        border-radius: 10px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   Why Us - Final Hover Text Fix
   ========================================================================== */

#why-us .check-list li {
    position: relative;
    color: #253143;
    z-index: 1;
}

#why-us .check-list li::before {
    z-index: -1;
}

#why-us .check-list li:hover {
    color: #ffffff !important;
}

#why-us .check-list li:hover i {
    color: #ffffff !important;
    background: linear-gradient(135deg, #fd7e14, #ff9f43);
}

/* ==========================================================================
   Why Us - Slow Smooth Navy Background Hover
   ========================================================================== */

#why-us .check-list li {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #ffffff !important;
    color: #253143 !important;

    transition:
        color 0.75s ease,
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.65s ease,
        box-shadow 0.65s ease;
}

/* الخلفية الكوحلي اللي هتدخل بالراحة */
#why-us .check-list li::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(135deg, #0a2540, #061F42);
    border-radius: inherit;

    transform: scaleX(0);
    transform-origin: right center;

    opacity: 1 !important;

    transition:
        transform 1.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* عند الهوفر الخلفية تتمدد ببطء */
#why-us .check-list li:hover::before {
    transform: scaleX(1);
}

/* الكلام يقلب أبيض */
#why-us .check-list li:hover {
    color: #ffffff !important;
    transform: translateY(-5px);
    border-color: rgba(253, 126, 20, 0.35);
    box-shadow: 0 20px 42px rgba(10, 37, 64, 0.14);
}

#why-us .check-list li:hover i {
    color: #ffffff !important;
    background: linear-gradient(135deg, #fd7e14, #ff9f43) !important;
}





/* ==========================================================================
   Why Us - Fix Empty Space Under Feature Card
   ========================================================================== */

#why-us .why-container {
    align-items: stretch !important;
}

#why-us .why-image {
    height: auto;
    display: flex !important;
    align-items: stretch !important;
}

#why-us .glass-feature-card {
    height: 100% !important;
    min-height: unset !important;
    max-width: 370px;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

/* خلي كارت الثقة ياخد نفس ارتفاع عمود المميزات */
#why-us .why-content {
    display: flex;
    flex-direction: column;
}

#why-us .check-list {
    flex: 1;
}

/* موبايل يرجع طبيعي */
@media (max-width: 992px) {
    #why-us .why-container {
        align-items: center !important;
    }

    #why-us .why-image {
        align-items: center !important;
    }

    #why-us .glass-feature-card {
        height: auto !important;
        min-height: 235px !important;
    }
}

/* ==========================================================================
   Branches Section - Navy Background High Performance
   ========================================================================== */

#branches {
    position: relative;
    overflow: hidden;
    background: #0a2540 !important;
    padding: 95px 0;
}

/* إلغاء أي زخارف قديمة تقيلة */
#branches::before,
#branches::after {
    display: none !important;
}

/* زخرفة خفيفة جدًا بدون blur */
#branches {
    background:
        linear-gradient(135deg, rgba(253, 126, 20, 0.08) 0%, transparent 28%),
        linear-gradient(225deg, rgba(255, 255, 255, 0.055) 0%, transparent 24%),
        #0a2540 !important;
}

#branches .container {
    position: relative;
    z-index: 2;
}

/* الهيدر */
#branches .section-header {
    margin-bottom: 46px;
}

#branches .section-tag {
    color: #ffffff !important;
    background: rgba(253, 126, 20, 0.18) !important;
    border: 1px solid rgba(253, 126, 20, 0.35);
    font-weight: 900;
    box-shadow: none;
}

#branches .section-header h2 {
    color: #ffffff;
    font-weight: 900;
}

#branches .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

/* الشبكة */
#branches .branches-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

/* الكارت */
#branches .branch-card {
    position: relative;
    overflow: hidden;
    padding: 36px 30px;
    border-radius: 24px;
    text-align: center;

    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

/* خط علوي برتقالي */
#branches .branch-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 26px;
    left: 26px;
    height: 4px;
    background: var(--orange);
    border-radius: 0 0 999px 999px;
}

/* هوفر خفيف وسريع الأداء */
#branches .branch-card:hover {
    transform: translateY(-7px);
    border-color: rgba(253, 126, 20, 0.55);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

/* الأيقونة */
#branches .branch-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;

    background: rgba(253, 126, 20, 0.12);
    color: var(--orange);
    border-radius: 20px;
    font-size: 1.9rem;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

#branches .branch-card:hover .branch-icon {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-3px);
}

/* النصوص */
#branches .branch-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 14px;
}

#branches .branch-card p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 22px;
    font-weight: 700;
}

#branches .branch-card p i {
    color: var(--orange);
    margin-left: 6px;
}

/* أرقام التواصل */
#branches .branch-contact {
    display: grid;
    gap: 10px;
}

#branches .branch-contact a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 14px;

    background: #f8fafc;
    color: var(--navy);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 14px;

    font-size: 1.03rem;
    font-weight: 900;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

#branches .branch-contact a i {
    color: var(--orange);
}

#branches .branch-contact a:hover {
    background: rgba(253, 126, 20, 0.10);
    color: var(--orange);
    border-color: rgba(253, 126, 20, 0.35);
    transform: none;
}

/* Mobile */
@media (max-width: 768px) {
    #branches {
        padding: 70px 0;
    }

    #branches .branches-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #branches .branch-card {
        padding: 32px 22px;
        border-radius: 22px;
    }

    #branches .branch-card h3 {
        font-size: 1.28rem;
    }

    #branches .branch-card p {
        font-size: 0.94rem;
    }

    #branches .branch-contact a {
        font-size: 0.95rem;
    }
}

/* Branches tag - Orange background / White text */
#branches .section-tag {
    background: var(--orange) !important;
    color: #ffffff !important;
    border: 1px solid var(--orange) !important;
    box-shadow: 0 12px 28px rgba(253, 126, 20, 0.28);
    font-weight: 900;
}

/* ==========================================================================
   Shared Background For Why Us + Process Wrapper
   يجعل خلفية سيكشن "ثقة وأمان" ممتدة على سيكشن "كيف نبدأ معك" أيضًا
   ========================================================================== */

.why-process-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 18%, rgba(253, 126, 20, 0.12), transparent 30%),
        radial-gradient(circle at 86% 72%, rgba(10, 37, 64, 0.10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%) !important;
}

.why-process-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

/* نخلي السيكشنين نفس الخلفية المشتركة من الأب */
#why-us,
#process {
    background: transparent !important;
}

#why-us .container,
#process .container {
    position: relative;
    z-index: 2;
}

/* ضبط المسافة بين السيكشنين عشان يبانوا كجزء واحد */
#why-us {
    padding-bottom: 60px;
}

#process {
    padding-top: 60px;
}

@media (max-width: 768px) {
    #why-us {
        padding-bottom: 42px;
    }

    #process {
        padding-top: 42px;
    }
}


/* ==========================================================================
   Footer Links - Fixed Arrow + Smooth Text Hover
   ========================================================================== */

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        color 0.45s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* السهم ثابت */
.footer-col ul li a::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--orange);
    font-size: 0.72rem;
    line-height: 1;
    transform: none !important;
    transition: none !important;
}

/* الكلمة تتحرك فقط */
.footer-col ul li a:hover {
    color: var(--orange) !important;
    transform: translateX(-5px);
}

/* منع أي حركة للسهم في الهوفر */
.footer-col ul li a:hover::before {
    transform: none !important;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(253, 126, 20, 0.35);
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero .hero-buttons .btn {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
    transition: 0.28s ease;
}

/* زر اطلب استشارة مجانية */
.hero .hero-buttons .btn-primary {
    background: var(--orange) !important;
    color: #ffffff !important;
    border-color: var(--orange) !important;
    box-shadow: 0 14px 30px rgba(253, 126, 20, 0.32);
}

.hero .hero-buttons .btn-primary:hover {
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(255, 255, 255, 0.22);
}

/* زر تصفح متجر الأجهزة */
.hero .hero-buttons .btn-outline-white {
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hero .hero-buttons .btn-outline-white:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: var(--orange) !important;
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(253, 126, 20, 0.22);
}

/* حركة بسيطة للأيقونة */
.hero .hero-buttons .btn i {
    transition: 0.28s ease;
}

.hero .hero-buttons .btn:hover i {
    transform: translateX(-5px);
}

@media (min-width: 768px) {
    .hero .hero-buttons .btn {
        min-width: 225px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        gap: 12px;
    }

    .hero .hero-buttons .btn {
        width: 100%;
        min-height: 54px;
        border-radius: 13px;
    }
}

.hero .hero-buttons .btn.btn-primary {
    background: var(--orange) !important;
    color: #ffffff !important;
    border: 2px solid var(--orange) !important;
    box-shadow: 0 14px 30px rgba(253, 126, 20, 0.32);
}

.hero .hero-buttons .btn.btn-primary:hover {
    background: var(--orange) !important;
    color: #ffffff !important;
    border-color: var(--orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(253, 126, 20, 0.45);
}

.hero .hero-buttons .btn.btn-primary:active {
    transform: translateY(-2px);
}

/* زر اطلب استشارة مجانية - يفضل برتقالي */
.hero .hero-buttons .btn.btn-primary {
    background: var(--orange) !important;
    color: #ffffff !important;
    border: 2px solid var(--orange) !important;
    box-shadow: 0 14px 30px rgba(253, 126, 20, 0.32);
}

.hero .hero-buttons .btn.btn-primary:hover {
    background: var(--orange) !important;
    color: #ffffff !important;
    border-color: var(--orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(253, 126, 20, 0.45);
}

/* زر تصفح متجر الأجهزة - يفضل أبيض */
.hero .hero-buttons .btn.btn-outline-white {
    background: #ffffff !important;
    color: var(--navy) !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero .hero-buttons .btn.btn-outline-white:hover {
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(255, 255, 255, 0.28);
}

/* ضغطة بسيطة */
.hero .hero-buttons .btn:active {
    transform: translateY(-2px);
}

/* حركة السهم بسيطة */
.hero .hero-buttons .btn i {
    transition: 0.3s ease;
}

.hero .hero-buttons .btn:hover i {
    transform: translateX(-5px);
}



.why-image .glass-feature-card {
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

/* البوردر البرتقالي اللي بينزل من فوق لتحت */
.why-image .glass-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: var(--orange);
    border-radius: 0 20px 20px 0;
    transition: height 0.45s ease;
}

/* عند الهوفر */
.why-image .glass-feature-card:hover::after {
    height: 100%;
}

.why-image .glass-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(10, 37, 64, 0.16);
}


#why-us .why-image .glass-feature-card {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease !important;
}

#why-us .why-image .glass-feature-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 5px !important;
    height: 0 !important;
    background: linear-gradient(180deg, var(--orange), #ffb36b) !important;
    border-radius: 0 22px 22px 0 !important;
    z-index: 3 !important;
    pointer-events: none !important;

    transition: height 1.15s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

#why-us .why-image .glass-feature-card:hover::before {
    height: 100% !important;
}

#why-us .why-image .glass-feature-card:hover::before {
    height: 100% !important;
}

#why-us .why-image .glass-feature-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(253, 126, 20, 0.42) !important;
    box-shadow: 0 24px 55px rgba(10, 37, 64, 0.16) !important;
}

/* Floating WhatsApp - Hover أنضف */
.floating-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.floating-whatsapp:hover {
    background: #0cec5e;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 18px 25px rgba(59, 253, 20, 0.38);
}




/* ==========================================================================
   Web Development Section
   ========================================================================== */

.web-development {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(253, 126, 20, 0.10), transparent 32%),
        radial-gradient(circle at 88% 78%, rgba(0, 123, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    isolation: isolate;
}

.web-dev-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.web-dev-content h2 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.35;
}

.web-dev-desc {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 2;
}

.web-dev-desc strong {
    color: var(--navy);
    font-weight: 900;
}

.web-dev-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.web-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 18px;
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.055);
    transition: var(--transition);
}

.web-feature-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy), #123e68);
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition);
}

.web-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 126, 20, 0.35);
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.11);
}

.web-feature-item:hover i {
    background: linear-gradient(135deg, var(--orange), #ff9f43);
}

.web-dev-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual */

.web-dev-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-browser-card {
    position: relative;
    width: min(100%, 520px);
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(10, 37, 64, 0.10);
    box-shadow: 0 30px 80px rgba(10, 37, 64, 0.15);
    transform: perspective(1000px) rotateY(7deg) rotateX(3deg);
    transition: var(--transition);
}

.web-browser-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-6px);
    box-shadow: 0 38px 90px rgba(10, 37, 64, 0.20);
}

.web-browser-top {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-inline: 18px;
    background: linear-gradient(90deg, var(--navy), #123e68);
}

.web-browser-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
}

.web-browser-top span:nth-child(1) {
    background: #ff5f56;
}

.web-browser-top span:nth-child(2) {
    background: #ffbd2e;
}

.web-browser-top span:nth-child(3) {
    background: #27c93f;
}

.web-browser-body {
    padding: 24px;
}

.web-preview-header {
    width: 100%;
    height: 38px;
    margin-bottom: 20px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(10, 37, 64, 0.12) 0 22%, transparent 22% 30%, rgba(10, 37, 64, 0.08) 30% 100%);
}

.web-preview-hero {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 18px;
    align-items: center;
    min-height: 120px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(6, 31, 66, 0.92));
    overflow: hidden;
}

.web-preview-hero span,
.web-preview-hero strong,
.web-preview-hero p {
    display: block;
    border-radius: 999px;
}

.web-preview-hero span {
    width: 80px;
    height: 10px;
    margin-bottom: 14px;
    background: rgba(253, 126, 20, 0.85);
}

.web-preview-hero strong {
    width: 85%;
    height: 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
}

.web-preview-hero p {
    width: 62%;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
}

.web-preview-hero i {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(253, 126, 20, 0.95);
    border-radius: 24px;
    font-size: 2rem;
    box-shadow: 0 16px 35px rgba(253, 126, 20, 0.28);
}

.web-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.web-preview-grid span {
    height: 82px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc, #e9eef5);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.web-preview-line {
    width: 100%;
    height: 13px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(10, 37, 64, 0.10);
}

.web-preview-line.short {
    width: 62%;
}

.web-float-card {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.13);
    animation: webFloat 5.5s ease-in-out infinite;
}

.web-float-card i {
    color: var(--orange);
}

.web-float-1 {
    top: 40px;
    right: 0;
}

.web-float-2 {
    bottom: 52px;
    right: 22px;
    animation-delay: 1.2s;
}

.web-float-3 {
    left: 0;
    bottom: 105px;
    animation-delay: 2.1s;
}

.web-dev-shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.75;
    pointer-events: none;
}

.web-dev-shape-1 {
    width: 280px;
    height: 280px;
    top: 70px;
    right: -90px;
    background: rgba(253, 126, 20, 0.18);
}

.web-dev-shape-2 {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: 40px;
    background: rgba(0, 123, 255, 0.12);
}

@keyframes webFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* ==========================================================================
   Web Service Band - Websites & Online Stores
   ========================================================================== */

.web-service-band {
    position: relative;
    padding: 0 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.web-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 38px;
    align-items: center;
    padding: 42px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.10);
    overflow: hidden;
    isolation: isolate;
}

.web-service-card::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(253, 126, 20, 0.13);
    border-radius: 50%;
    z-index: -1;
}

.web-service-card::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -140px;
    width: 300px;
    height: 300px;
    background: rgba(10, 37, 64, 0.07);
    border-radius: 50%;
    z-index: -1;
}

.web-service-content {
    max-width: 720px;
}

.web-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 18px;
    color: var(--orange);
    background: rgba(253, 126, 20, 0.10);
    border: 1px solid rgba(253, 126, 20, 0.24);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 900;
}

.web-service-content h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1.35;
}

.web-service-content p {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
}

.web-service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.web-service-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--navy);
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(10, 37, 64, 0.055);
}

.web-service-points i {
    color: var(--orange);
}

.web-service-side {
    display: grid;
    gap: 14px;
}

.web-mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
        "icon title"
        "icon text";
    align-items: center;
    column-gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.07);
    transition: var(--transition);
}

.web-mini-card i {
    grid-area: icon;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--navy);
    border-radius: 16px;
    font-size: 1.25rem;
    transition: var(--transition);
}

.web-mini-card strong {
    grid-area: title;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.3;
}

.web-mini-card small {
    grid-area: text;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.6;
}

.web-mini-card.active {
    border-color: rgba(253, 126, 20, 0.28);
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
}

.web-mini-card.active i {
    background: var(--orange);
}

.web-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 126, 20, 0.32);
    box-shadow: 0 18px 42px rgba(10, 37, 64, 0.12);
}

.web-mini-card:hover i {
    background: var(--orange);
}

.web-service-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    margin-top: 4px;
}
/* ==========================================================================
   Navy Sections - Soft White Grid Background
   ========================================================================== */

/* الشبكة في أول سيكشن: أوضح نسبيًا مع تدرج هادئ */
.hero .particles-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.10), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(253, 126, 20, 0.10), transparent 30%);
    background-size: 48px 48px, 48px 48px, auto, auto;
    background-position: center center;
    opacity: 0.68;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.80) 68%,
        rgba(0, 0, 0, 0.38) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.80) 68%,
        rgba(0, 0, 0, 0.38) 100%
    );
}

/* تجهيز كل المساحات الكحلي لاستقبال طبقة الشبكة */
.bg-navy,
#branches,
.final-cta,
#contact .contact-info,
.footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* شبكة أهدأ لباقي الخلفيات الكحلي */
.bg-navy::after,
#branches::after,
.final-cta::after,
#contact .contact-info::after,
.footer::after {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.105) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.105) 1px, transparent 1px),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.075), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(253, 126, 20, 0.075), transparent 30%);
    background-size: 48px 48px, 48px 48px, auto, auto;
    background-position: center center;
    opacity: 0.72;
    -webkit-mask-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 52%,
        rgba(0, 0, 0, 0.42) 100%
    );
    mask-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 52%,
        rgba(0, 0, 0, 0.42) 100%
    );
}

/* إبقاء المحتوى فوق طبقة الشبكة */
.bg-navy > *,
#branches > *,
.final-cta > *,
#contact .contact-info > *,
.footer > * {
    position: relative;
    z-index: 2;
}

/* الحفاظ على الخط البرتقالي أعلى القسم الختامي */
.final-cta::before {
    z-index: 3;
}

/* الموبايل: مربعات أصغر قليلًا حتى تظل متناسقة */
@media (max-width: 768px) {
    .hero .particles-bg,
    .bg-navy::after,
    #branches::after,
    .final-cta::after,
    #contact .contact-info::after,
    .footer::after {
        background-size: 38px 38px, 38px 38px, auto, auto;
    }
}