/* ================= Variables & Core Setup ================= */
:root {
    --alpha-red: #d30000; 
    --alpha-red-hover: #ff1a1a;
    
    /* GRADIENT PALETTE */
    --grad-red: linear-gradient(135deg, #ff003c 0%, #d30000 100%);
    --grad-orange: linear-gradient(135deg, #ff7300 0%, #ffab00 100%);
    --grad-green: linear-gradient(135deg, #39ff14 0%, #00ff73 100%);
    --grad-violet: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --grad-blue: linear-gradient(135deg, #00f3ff 0%, #3b82f6 100%);
    --grad-darkblue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    
    /* VIVID PHOSPHORESCENT COLORS */
    --neon-green: #39ff14; 
    --neon-orange: #ff7300; 
    --neon-cyan: #00f3ff;
    --neon-violet: #d946ef;
    
    /* Backgrounds */
    --bg-dark: #090b14; 
    --bg-dark-panel: #131722;
    --text-light: #f4f4f8;
    --bg-light: #ffffff;
    --bg-split-blue: #eef5fb; 
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-light); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, .logo, .btn, .nav-link, .counter, .overline { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 5; }

/* ================= GRADIENT TEXT & UTILS ================= */
.gradient-red-text { background: var(--grad-red); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-orange-text { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-green-text { background: var(--grad-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-violet-text { background: var(--grad-violet); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-blue-text { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-darkblue-text { background: var(--grad-darkblue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Animated Gradient Shine */
.gradient-text-animated { 
    background: linear-gradient(90deg, #fff, var(--alpha-red), #ff7300, #fff); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    background-size: 200%; animation: shine 4s linear infinite; 
}
@keyframes shine { to { background-position: 200%; } }

.bg-gradient-red { background: var(--grad-red) !important; color: #fff;}
.bg-gradient-orange { background: var(--grad-orange) !important; color: #fff;}
.bg-gradient-green { background: var(--grad-green) !important; color: #fff;}
.bg-gradient-violet { background: var(--grad-violet) !important; color: #fff;}

.text-red { color: var(--alpha-red) !important; }
.color-green { color: var(--neon-green) !important; text-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
.color-orange { color: var(--neon-orange) !important; text-shadow: 0 0 10px rgba(255, 115, 0, 0.4); }
.color-violet { color: var(--neon-violet) !important; text-shadow: 0 0 10px rgba(217, 70, 239, 0.4); }

.section-padding { padding: 100px 0; }
.dark-bg { background-color: var(--bg-dark); }
.light-bg { background-color: var(--bg-light); }
.gray-bg { background-color: #f7f9fc; }

/* ================= EXPLICIT COLOR FIXES FOR LIGHT BACKGROUND ================= */
.light-bg .text-dark, 
.light-bg h2.text-dark,
.timeline-corporate h4.text-dark { color: #0b1021 !important; }

.light-bg .text-dark-muted, 
.light-bg p.text-dark-muted,
.timeline-corporate p.text-dark-muted { color: #4a5568 !important; }

/* ================= Typography & Titles ================= */
.text-center { text-align: center !important; width: 100%; display: flex; flex-direction: column; align-items: center;}
.section-title { text-align: center; margin-bottom: 60px; width: 100%; }
.section-title.left-align { text-align: left; align-items: flex-start; margin-bottom: 30px;}

.section-title h2 { font-size: 3rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin: 0 auto;}
/* Enforced Stronger Title for Services */
.strong-title { font-size: 3.8rem !important; font-weight: 900 !important; }

.subtitle-text { font-size: 1.1rem; margin-top: 15px;}
.mt-20 { margin-top: 20px; }

/* ================= Corporate Buttons ================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--transition); border-radius: 40px; letter-spacing: 1px; }
.btn-nav-gradient { background: var(--grad-red); color: #fff; padding: 10px 22px; font-size: 0.75rem; border: none; box-shadow: 0 5px 15px rgba(211,0,0,0.3); }
.btn-nav-gradient:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(211,0,0,0.6); }
.btn-gradient-red { background: var(--grad-red); color: #fff; border: none; box-shadow: 0 10px 20px rgba(211,0,0,0.3); }
.btn-gradient-red:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(211,0,0,0.5); }
.btn-red { background: var(--alpha-red); color: #fff; border: none; box-shadow: 0 10px 20px rgba(211,0,0,0.3);}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(211,0,0,0.5); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--bg-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: #fff; color: var(--bg-dark); border-color: #fff;}
.btn-dark { background: var(--bg-dark); color: #fff; border: none;}
.btn-dark:hover { background: var(--alpha-red); }
.w-100 { width: 100%; }

/* ================= Navbar (Dark Glass Style + Scrollspy) ================= */
.navbar { 
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 92%; max-width: 1100px; background: rgba(10, 15, 25, 0.85); 
    backdrop-filter: blur(25px); border-radius: 50px; z-index: 1000; 
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255,255,255,0.05); transition: var(--transition);
}
.navbar.scrolled { width: 100%; max-width: 100%; top: 0; border-radius: 0; background: rgba(5, 10, 15, 0.95); border: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 75px; padding: 0 15px 0 25px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; margin-right: 12px; }
.logo-text { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: 2px; }
.nav-links { display: flex; gap: 35px; }
.nav-link { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; position: relative; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { background: var(--grad-red); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--grad-red); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: none; font-size: 1.8rem; color: #fff; cursor: pointer; }

/* ================= Hero Section ================= */
.hero-section { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: var(--bg-dark); overflow: hidden; padding-top: 50px;}
.hero-text-block { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; z-index: 10; margin-bottom: 10px; }
.hero-title { font-size: 4.5rem; line-height: 1.1; text-transform: uppercase; text-align: center; width: 100%; margin: 0; font-weight: 900; }
.text-glow { text-shadow: 0 0 25px rgba(211, 0, 0, 0.8); }
.hero-subtitle { font-size: 1.2rem; color: #ccc; margin: 15px auto 35px; font-family: var(--font-body); max-width: 700px; position: relative; z-index: 10; text-align: center;}
.hero-btns { display: flex; justify-content: center; gap: 20px; width: 100%; position: relative; z-index: 10;}

/* Glitch */
.glitch { position: relative; color: white; display: block; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; display: flex; justify-content: center; }
.glitch::before { left: 2px; text-shadow: -2px 0 var(--alpha-red); clip: rect(24px, 1550px, 90px, 0); animation: glitch-anim-2 3s infinite linear alternate-reverse; }
.glitch::after { left: -2px; text-shadow: -2px 0 var(--neon-cyan); clip: rect(85px, 1550px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(10px, 9999px, 86px, 0); } 20% { clip: rect(62px, 9999px, 12px, 0); } 40% { clip: rect(32px, 9999px, 86px, 0); } 60% { clip: rect(82px, 9999px, 32px, 0); } 80% { clip: rect(12px, 9999px, 96px, 0); } 100% { clip: rect(52px, 9999px, 42px, 0); } }
@keyframes glitch-anim-2 { 0% { clip: rect(65px, 9999px, 100px, 0); } 20% { clip: rect(10px, 9999px, 60px, 0); } 40% { clip: rect(80px, 9999px, 20px, 0); } 60% { clip: rect(40px, 9999px, 90px, 0); } 80% { clip: rect(90px, 9999px, 10px, 0); } 100% { clip: rect(20px, 9999px, 80px, 0); } }

.hero-logo-wrapper { margin-bottom: 20px; perspective: 1000px; z-index: 10; display: flex; justify-content: center;}
#floating-logo { width: 320px; max-width: 90vw; height: auto; object-fit: contain; will-change: transform; transform-style: preserve-3d; animation: floatLogoPulse 4s ease-in-out infinite alternate; filter: drop-shadow(0 15px 35px rgba(255,0,60,0.6));}
@keyframes floatLogoPulse { 0% { transform: translateY(0px) scale(1); filter: drop-shadow(0 10px 20px rgba(255,0,60,0.4));} 100% { transform: translateY(-15px) scale(1.02); filter: drop-shadow(0 25px 40px rgba(255,0,60,0.8));} }

.scroll-down-btn { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 2rem; z-index: 10; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); } 40% { transform: translate(-50%, -15px); } 60% { transform: translate(-50%, -7px); } }

/* ================= Vertical Marquee ================= */
.vertical-marquee-container {
    position: absolute; right: 20px; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden;
    z-index: 3; pointer-events: none; opacity: 0.15; 
}
.vertical-marquee-track { display: flex; flex-direction: column; animation: scrollVertical 30s linear infinite; }
.marquee-text {
    writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; letter-spacing: 5px; margin: 20px 0; white-space: nowrap;
}
.marquee-text.filled { color: var(--text-light-muted); }
.marquee-text.outline { color: transparent; -webkit-text-stroke: 1px var(--text-light-muted); }
@keyframes scrollVertical { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

/* ================= Floating Pills (POSITIONED EXTREME CORNERS TO AVOID TEXT) ================= */
.floating-pills { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4; }
.f-pill { 
    position: absolute; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; 
    animation: floatPillItem ease-in-out infinite alternate; 
}
.text-pill { padding: 12px 24px; border-radius: 50px; font-weight: 600; color: #fff; gap: 10px; font-size: 0.85rem;}
.text-pill i { color: var(--alpha-red); font-size: 1rem;}

/* Pushed strictly to boundaries */
.pill-1 { top: 15%; left: 2%; animation-duration: 3s; }
.pill-2 { top: 60%; right: 2%; animation-duration: 2.5s; animation-delay: -1s; }
.pill-3 { bottom: 15%; left: 4%; animation-duration: 3.5s; }
.pill-4 { top: 25%; right: 2%; animation-duration: 2.8s; }
.pill-5 { top: 8%; right: 25%; animation-duration: 4s; animation-delay: -2s; }
.pill-6 { bottom: 25%; right: 20%; animation-duration: 3.2s; animation-delay: -1s; }
.pill-7 { top: 80%; left: 20%; animation-duration: 4.5s; animation-delay: -3s; }
.pill-8 { top: 12%; left: 30%; animation-duration: 3.8s; animation-delay: -1.5s; }

.icon-pill { width: 45px; height: 45px; border-radius: 50%; background: rgba(211,0,0,0.05); border-color: rgba(211,0,0,0.2); }
.icon-pill img { width: 22px; height: auto; filter: drop-shadow(0 0 5px rgba(211,0,0,0.5)); }

.ipill-1 { top: 10%; right: 40%; animation-duration: 3s; }
.ipill-2 { top: 40%; left: 2%; animation-duration: 4s; }
.ipill-3 { bottom: 20%; right: 3%; animation-duration: 3.2s; }
.ipill-4 { bottom: 10%; left: 25%; animation-duration: 4.2s; }
.ipill-5 { top: 18%; left: 20%; animation-duration: 3.5s; }
.ipill-6 { bottom: 15%; right: 35%; animation-duration: 4s; }
.ipill-7 { top: 55%; right: 1%; animation-duration: 2.8s; }
.ipill-8 { bottom: 45%; left: 1%; animation-duration: 3.6s; }
.ipill-9 { top: 5%; right: 15%; animation-duration: 5s; }
.ipill-10 { bottom: 5%; left: 15%; animation-duration: 4.8s; }
.ipill-11 { top: 20%; right: 55%; animation-duration: 3.1s; }
.ipill-12 { bottom: 25%; left: 55%; animation-duration: 3.9s; }

@keyframes floatPillItem { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-35px) rotate(8deg); } }

/* Waterfall */
#waterfall-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; }
.waterfall-item { position: absolute; top: -50px; opacity: 0.15; will-change: transform; filter: drop-shadow(0 0 5px rgba(255,0,60,0.5));}

/* ================= Horizontal Infinite Marquee (Gradient Blue) ================= */
.horizontal-ticker-bg {
    background: var(--grad-darkblue); width: 100vw; overflow: hidden; padding: 18px 0;
    display: flex; align-items: center; position: relative; z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15);
}
.horizontal-ticker-track { display: flex; align-items: center; white-space: nowrap; animation: scrollHorizontal 25s linear infinite; width: max-content; }
.ticker-item { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #ffffff; text-transform: uppercase; letter-spacing: 2px; margin: 0 20px; }
.ticker-sep { color: rgba(255,255,255,0.4); font-weight: 300; font-size: 1.2rem; margin: 0 10px; }
@keyframes scrollHorizontal { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================= PREMIUM STATS BAR ================= */
.stats-section { padding: 50px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.premium-stats-bar {
    display: flex; flex-direction: row; justify-content: space-evenly; align-items: center;
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; padding: 50px 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px); width: 100%; margin-top: -60px; z-index: 15; position: relative;
}
.stat-box { text-align: center; flex: 1; }
.stat-box h3 { font-size: 4.5rem; font-weight: 900; margin-bottom: 5px; line-height: 1;}
.stat-box p { font-family: var(--font-heading); font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem;}
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); }

/* ================= FIX: PERFECT 50/50 About Us Layout (GRID ALIGNMENT) ================= */
.about-split-section { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* Forces exact 50/50 split */
    width: 100%; 
    background-color: var(--bg-split-blue); 
    align-items: stretch; /* Makes both halves equal height */
}

/* THE FIX: Calculate padding so the text aligns strictly with the 1200px container */
.about-text-half { 
    padding: 100px 60px 100px calc(50vw - 580px); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.about-text-inner { 
    width: 100%;
    max-width: 680px; /* Wider text box to prevent stretching height */
    margin: 0; 
}

.overline-gradient { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 15px; display: block;}
.about-text-inner h2 { font-size: 3.5rem; color: #0b1021; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;}

.about-copy p { color: #4a5568; font-size: 1rem; margin-bottom: 12px; line-height: 1.6; }
.about-copy strong { color: #0b1021; font-weight: 700; }

.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.a-stat h3 { font-size: 2.5rem; margin-bottom: 0px; font-weight: 900; line-height: 1;}
.a-stat span { font-size: 0.85rem; color: #4a5568; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-heading);}

.about-image-half { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}
.about-image-half img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Prevents image stretching! */
    object-position: center;
}

/* ================= 3D TILT Corporate Cards (Services) ================= */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; perspective: 1000px;}
.corporate-card { background: var(--bg-dark-panel); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; }
.tilt-card { position: relative; text-align: center; transform-style: preserve-3d; transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.3s ease; will-change: transform; }

.centered-content { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.card-content { padding: 50px 40px; position: relative; z-index: 2; transform: translateZ(40px); pointer-events: none; }
.card-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 1; border-radius: 20px; }
.tilt-card:hover .card-glow { opacity: 1; }

.theme-hover-orange:hover { border-color: var(--neon-orange); box-shadow: 0 15px 40px rgba(255, 115, 0, 0.2); }
.theme-hover-orange .icon-wrapper { background: rgba(255, 115, 0, 0.1); border: 1px solid rgba(255, 115, 0, 0.3); }
.theme-hover-orange .icon-wrapper i { color: var(--neon-orange); text-shadow: 0 0 15px rgba(255, 115, 0, 0.8); }

.theme-hover-red:hover { border-color: var(--alpha-red); box-shadow: 0 15px 40px rgba(211, 0, 0, 0.2); }
.theme-hover-red .icon-wrapper { background: rgba(211, 0, 0, 0.1); border: 1px solid rgba(211, 0, 0, 0.3); }
.theme-hover-red .icon-wrapper i { color: var(--alpha-red); text-shadow: 0 0 15px rgba(211, 0, 0, 0.8); }

.theme-hover-green:hover { border-color: var(--neon-green); box-shadow: 0 15px 40px rgba(57, 255, 20, 0.2); }
.theme-hover-green .icon-wrapper { background: rgba(57, 255, 20, 0.1); border: 1px solid rgba(57, 255, 20, 0.3); }
.theme-hover-green .icon-wrapper i { color: var(--neon-green); text-shadow: 0 0 15px rgba(57, 255, 20, 0.8); }

.theme-hover-violet:hover { border-color: var(--neon-violet); box-shadow: 0 15px 40px rgba(217, 70, 239, 0.2); }
.theme-hover-violet .icon-wrapper { background: rgba(217, 70, 239, 0.1); border: 1px solid rgba(217, 70, 239, 0.3); }
.theme-hover-violet .icon-wrapper i { color: var(--neon-violet); text-shadow: 0 0 15px rgba(217, 70, 239, 0.8); }

.icon-wrapper { margin: 0 auto 25px; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.icon-wrapper i { font-size: 2rem; transition: var(--transition); }
.tilt-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; text-align: center; }
.tilt-card p { color: var(--text-light-muted); font-size: 1rem; text-align: center; }

/* ================= Split Layout (Process) ================= */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; z-index: 2; position: relative;}
.reverse-layout { direction: rtl; } 
.reverse-layout > * { direction: ltr; }

/* Protocol Section - Force image expansion */
.protocol-layout { grid-template-columns: 1fr 1.3fr; align-items: stretch; }
.process-image-content { width: 100%; height: 100%; display: flex; align-items: center;}
.modern-img-full { 
    width: 100%; 
    height: auto; 
    aspect-ratio: 16 / 9; 
    object-fit: cover; 
    border-radius: 24px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.25); 
}

.timeline-corporate { display: flex; flex-direction: column; gap: 30px; margin-top: 40px;}
.timeline-step { display: flex; align-items: flex-start; gap: 20px; }
.step-num { 
    min-width: 45px; height: 45px; border-radius: 50%; color: #fff; 
    font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.timeline-step h4 { font-size: 1.2rem; margin-bottom: 5px; }

/* ================= Animated Background (Plans Section) ================= */
.animated-bg-orbs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.neuro-orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: floatNeuroOrb 15s infinite alternate ease-in-out; opacity: 0.15; }
.orb-1 { background: var(--alpha-red); width: 500px; height: 500px; top: -10%; left: 10%; }
.orb-2 { background: var(--neon-cyan); width: 600px; height: 600px; bottom: -20%; right: 5%; animation-delay: -5s; animation-duration: 20s;}
@keyframes floatNeuroOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 100px) scale(1.1); } }

/* ================= Pricing Plans (Theme Integrated) ================= */
.pricing-wrapper { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    z-index: 2; 
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
}

.corporate-price-card { 
    background: linear-gradient(145deg, rgba(25, 30, 42, 0.6) 0%, rgba(10, 12, 18, 0.9) 100%);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; 
    position: relative; 
    display: flex;
    flex-direction: column;
}

.featured-plan { 
    background: linear-gradient(145deg, rgba(30, 15, 20, 0.8) 0%, rgba(10, 8, 12, 0.95) 100%);
}

.pkg-subtitle { 
    color: #94a3b8; 
    font-size: 0.9rem; 
    margin-bottom: 25px;
    line-height: 1.5;
    min-height: 60px; /* Keeps button alignment uniform across all cards */
}

.pkg-divider {
    border-top: 1px dashed rgba(255,255,255,0.15);
    margin-bottom: 25px;
}

.pkg-features { 
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features li { 
    margin-bottom: 16px; 
    color: #e2e8f0; 
    display: flex; 
    align-items: center; 
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.pkg-features li i {
    font-size: 1.1rem;
    margin-right: 12px;
}

.pkg-features li span {
    flex: 1;
}

/* Ribbon CSS for Best Value */
.ribbon-wrapper {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 0 20px 0 0;
    z-index: 10;
    pointer-events: none;
}

.ribbon {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    transform: rotate(45deg);
    position: relative;
    padding: 8px 0;
    left: 10px;
    top: 25px;
    width: 170px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= Calendly ================= */
.calendly-wrapper { background: var(--bg-dark-panel); border-radius: 20px; padding: 10px; border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 0 40px rgba(0, 0, 0, 0.3); overflow: hidden; }

/* ================= Corporate Footer ================= */
.footer-corporate { padding: 60px 0 20px; position: relative; border-top: 1px solid rgba(255,255,255,0.05);}
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; margin-bottom: 40px; }
.brand-desc { color: var(--text-light-muted); font-size: 0.9rem; max-width: 300px; }
.footer-contact h3 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; }
.contact-info { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.contact-info a { color: var(--text-light-muted); display: flex; align-items: center; gap: 10px; font-size: 0.9rem;}
.contact-info a:hover { color: #fff; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.05); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); font-size: 1.2rem;}
.social-links a:hover { background: var(--alpha-red); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(211,0,0,0.4); }
.footer-copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 0.85rem;}


/* ================= Trusted Partners Section ================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px; /* Limits the width so the two cards look centered and balanced */
    margin: 0 auto;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
    text-align: left;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo-wrapper {
    margin-bottom: 25px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.partner-logo {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    opacity: 1;
}

.partner-card p {
    color: var(--text-light-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* ================= NEW SERVICES BENTO GRID ================= */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bento-card {
    background: var(--bg-dark-panel);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Make the Short Term Rentals card span 2 columns */
.bento-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.15) 0%, rgba(19, 23, 34, 0.9) 100%);
    border: 1px solid rgba(211, 0, 0, 0.4);
    justify-content: center;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bento-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light-muted);
    margin-bottom: 25px;
    font-weight: 500;
    min-height: 40px; /* Keeps the top row aligned even if text length varies */
}

.bento-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.bento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-img-wrapper img {
    transform: scale(1.05);
}

.bento-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* Bottom CTA inside Services */
.services-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.services-cta-banner p {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-family: var(--font-heading);
}

/* ================= Acquisition CTA Banner ================= */
.acquisition-cta-section {
    position: relative;
    background-color: #07090e; /* Deep dark background matching the screenshot */
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Subtle Grid Pattern Effect */
.grid-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Size of the grid squares */
    z-index: 1;
}

.cta-heading {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #a0aab2;
    max-width: 850px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* ================= Who We Help Section ================= */
.gradient-violet-animated {
    background: linear-gradient(90deg, #fff, var(--neon-violet), #00f3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: shine 4s linear infinite;
}

.who-we-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* 1. Premium Dark Glassmorphism Background */
.help-card {
    background: linear-gradient(145deg, rgba(25, 30, 42, 0.6) 0%, rgba(10, 12, 18, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12); /* Subtle top light reflection */
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy smooth transition */
    text-align: left;
}

/* 2. Elevated Hover Effect */
.help-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.4); /* Violet glow border */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 70, 239, 0.15);
    background: linear-gradient(145deg, rgba(30, 35, 50, 0.8) 0%, rgba(10, 12, 18, 0.9) 100%);
}

/* 3. Subtle Violet Spotlight in the corner */
.help-card-bg {
    position: absolute;
    top: -40px; 
    right: -40px;
    width: 120px; 
    height: 120px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Spotlight expands and glows on hover */
.help-card:hover .help-card-bg {
    transform: scale(2.5);
    opacity: 0.8;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2) 0%, transparent 70%);
}

.help-card h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.help-card p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ================= Packages Section Styles ================= */

/* Grid Layout (عشان يبقوا 3 كروت جنب بعض) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Base Card Style (شكل الكارت الغامق) */
.pkg-card {
    background: rgba(15, 17, 21, 0.6); /* خلفية الكارت الدارك */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pkg-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pkg-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Features List */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* 1. Plain text "GET STARTED" for Standard & Pro */
.btn-text-only {
    display: inline-block;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-text-only:hover {
    color: #94a3b8;
}

/* 2. Dotted Divider */
.pkg-divider-dotted {
    border-top: 2px dotted rgba(255, 255, 255, 0.15);
    margin: 25px 0;
    width: 100%;
}

/* ================= 3. Elite Card (Gold Theme) ================= */
.elite-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
    background: rgba(15, 17, 21, 0.8);
    overflow: hidden; 
}

/* Gold Title */
.elite-title-gold {
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

/* Solid Gold Button */
.btn-solid-gold {
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-solid-gold:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); 
    color: #000;
}

/* Best Value Ribbon */
.best-value-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    color: #000;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ================= Specialized Services Section ================= */
.specialized-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Tighter gap */
    max-width: 850px; /* Made the whole section much smaller and tighter */
    margin: 0 auto;
}

.spec-card {
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; 
    padding: 25px 25px; /* Smaller padding inside the card */
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1); /* Cyan glow instead of Red */
    border-color: rgba(0, 243, 255, 0.3);
}

.spec-icon-box {
    width: 40px; height: 40px;
    background: rgba(0, 243, 255, 0.1); /* Cyan background */
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
}
.spec-icon-box i { color: #00f3ff; font-size: 1.1rem; }

.spec-title { font-size: 1.2rem; color: #fff; margin-bottom: 8px; font-weight: 700; }
.spec-subtitle { color: #94a3b8; font-size: 0.85rem; line-height: 1.5; margin-bottom: 20px; min-height: 40px; }

.btn-spec {
    background: rgba(255,255,255,0.03);
    color: #fff; border: 1px solid rgba(255,255,255,0.1);
    width: 100%; border-radius: 6px; padding: 10px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; transition: all 0.3s ease;
}
.btn-spec:hover { background: #00f3ff; color: #000; border-color: #00f3ff; transform: translateY(-2px); }

.spec-divider { border-top: 1px dashed rgba(255,255,255,0.1); margin-bottom: 20px; }

.spec-features { list-style: none; padding: 0; margin: 0; }
.spec-features li { margin-bottom: 12px; color: #e2e8f0; display: flex; align-items: center; font-size: 0.85rem; font-weight: 500; }
.spec-check { color: #00f3ff; font-size: 1rem; margin-right: 10px; }
.spec-features li span { flex: 1; }

/* ================= Specialized Services Section (COMPACT 2x2) ================= */
/* ================= Specialized Services Section (COMPACT 2x2) ================= */
.specialized-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Strictly 2 columns */
    gap: 15px; /* Very tight gap */
    max-width: 800px; /* Highly restricted width to keep them small */
    margin: 0 auto;
}

.spec-card {
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; 
    padding: 20px; /* Very small padding */
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1); 
    border-color: rgba(0, 243, 255, 0.3);
}

.spec-icon-box {
    width: 32px; height: 32px;
    background: rgba(0, 243, 255, 0.1); 
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.spec-icon-box i { color: #00f3ff; font-size: 0.9rem; }

.spec-title { font-size: 1.05rem; color: #fff; margin-bottom: 6px; font-weight: 700; }
.spec-subtitle { color: #94a3b8; font-size: 0.8rem; line-height: 1.4; margin-bottom: 15px; min-height: 35px; }

.btn-spec {
    background: rgba(255,255,255,0.03);
    color: #fff; border: 1px solid rgba(255,255,255,0.1);
    width: 100%; border-radius: 6px; padding: 8px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; transition: all 0.3s ease; text-align: center;
}
.btn-spec:hover { background: #00f3ff; color: #000; border-color: #00f3ff; transform: translateY(-2px); }

.spec-divider { border-top: 1px dashed rgba(255,255,255,0.1); margin-bottom: 15px; }

.spec-features { list-style: none; padding: 0; margin: 0; }
.spec-features li { margin-bottom: 8px; color: #e2e8f0; display: flex; align-items: center; font-size: 0.75rem; font-weight: 500; }
.spec-check { color: #00f3ff; font-size: 0.85rem; margin-right: 8px; }
.spec-features li span { flex: 1; }

/* ================= Custom Plan Section ================= */
.custom-plan-section {
    background-color: #07090e;
    border-top: 1px solid rgba(255,255,255,0.03);
    position: relative;
    background-image: radial-gradient(rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 40px 40px;
}

.custom-plan-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; max-width: 1100px; margin: 0 auto;
}

.custom-plan-form-box {
    background: rgba(15, 17, 21, 0.9);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px; border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.custom-form .input-group { margin-bottom: 20px; text-align: left; }
.custom-form label { display: block; color: #e2e8f0; font-size: 0.9rem; margin-bottom: 8px; font-weight: 600; }
.custom-form input, .custom-form textarea {
    width: 100%; background: #0a0c12; border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 14px; border-radius: 8px; font-family: var(--font-body);
    transition: border-color 0.3s;
}
.custom-form input:focus, .custom-form textarea:focus { outline: none; border-color: #e11d48; }

.custom-plan-quote-box { text-align: center; padding: 20px; }
.badass-quote { font-size: 2.4rem; line-height: 1.3; font-weight: 900; margin-bottom: 25px; font-style: italic; letter-spacing: -1px; }
.quote-author { color: #94a3b8; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;}

@media (max-width: 992px) {
    .custom-plan-grid { grid-template-columns: 1fr; gap: 40px; }
}



/* ================= Perfect Curvy Snake Flow (Aligned & Glowing) ================= */
/* ================= Final Landscape Snake Flow CSS ================= */
.snake-svg-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.snake-main-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Moving Path Animation */
.animated-path {
    stroke-dashoffset: 200;
    animation: snakeFlowMove 8s linear infinite;
    filter: drop-shadow(0 0 5px rgba(225, 29, 72, 0.5));
}

@keyframes snakeFlowMove {
    to { stroke-dashoffset: 0; }
}

/* Glowing Nodes */
.node-glow-bg {
    fill: #e11d48;
    filter: drop-shadow(0 0 15px rgba(225, 29, 72, 0.8));
}

.node-icon-html {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem;
    pointer-events: none;
}

.node-label {
    text-align: center;
    padding: 0 5px;
}

.node-label h3 {
    color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 8px;
    font-family: var(--font-heading);
}

.node-label p {
    color: #94a3b8; font-size: 0.85rem; line-height: 1.5;
    margin: 0;
}

/* Mobile Fallback: Hide SVG and show simple list on mobile */
@media (max-width: 992px) {
    .snake-svg-wrapper { display: none; }
    /* You can add a simple vertical step list here for mobile */
}

/* ================= Premium Alpha Footer ================= */
/* ================= Premium Alpha Footer ================= */
.alpha-footer {
    padding: 100px 0 30px;
    background: #05070a; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer-bio {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 30px; height: 2px;
    background: #e11d48;
}

.footer-links {
    list-style: none; padding: 0; margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e11d48;
    padding-left: 8px;
}

/* Social links for Brand Column (if used) */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: 0.3s;
}

.social-links a:hover {
    background: #e11d48;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.contact-item i { color: #e11d48; }

/* --- Footer Quote Section --- */
.footer-quote-container {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.footer-q {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff 30%, #e11d48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 900;
    line-height: 1.3;
}

.footer-quote-container .quote-author {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #475569;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Footer Bottom & Centered Elements --- */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-box {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-icon:hover {
    background: #e11d48;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.4);
    color: #fff;
}

.footer-bottom p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Designer Link (Your Signature) --- */
.designer-link {
    color: #e11d48;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.designer-link:hover {
    color: #fff;
    border-bottom: 1px solid #e11d48;
    text-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

.mb-20 { margin-bottom: 20px; }
.mt-10 { margin-top: 10px; }


/* ================= Mobile Responsive ================= */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .contact-item { justify-content: center; }
    .footer-q { font-size: 1.4rem; } /* تصغير المقولة في الموبايل */
}



/* ================= Mobile Responsive ================= */
@media (max-width: 1200px) {
    .about-text-half { padding-left: 5%; padding-right: 5%; }
}

@media (max-width: 1024px) { 
    .about-split-section { grid-template-columns: 1fr; } /* Stack vertically on tablets */
    .about-image-half { min-height: 400px; }
    .about-image-half img { position: relative; height: 100%; }
    .vertical-marquee-container { display: none; } 
    .protocol-layout { grid-template-columns: 1fr; }
    .who-we-help-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet view for Services Grid & Footer */
@media (max-width: 992px) {
    .services-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; } /* Tablet Footer */
}

@media (max-width: 768px) {
    /* MOBILE: Hide center pills, keep extreme corner pills clean */
    .floating-pills { display: block; overflow: hidden; }
    .text-pill { font-size: 0.75rem; padding: 6px 12px; }
    .pill-1 { top: 8%; left: -2%; transform: scale(0.7); }
    .pill-2 { top: 15%; right: -2%; transform: scale(0.7); }
    .pill-3 { bottom: 12%; left: -2%; transform: scale(0.7); }
    .pill-4 { bottom: 18%; right: -2%; transform: scale(0.7); }
    .pill-5, .pill-6, .pill-7, .pill-8 { display: none; } 
    
    .cta-heading { font-size: 2.2rem; }
    .cta-subtitle { font-size: 1rem; }
    .who-we-help-grid { grid-template-columns: 1fr; }
    .help-cta-banner { flex-direction: column; text-align: center; gap: 20px; }
    .specialized-wrapper { grid-template-columns: 1fr; }
    
    .hero-title { font-size: 2.8rem; }
    .premium-stats-bar { flex-direction: column; gap: 40px; margin-top: 0; border-radius: 0; }
    .stat-divider { width: 60%; height: 1px; }
    
    .about-split-section { flex-direction: column; }
    .about-text-half { width: 100%; padding: 60px 20px; }
    .about-text-inner { margin: 0 auto; max-width: 100%; }
    .about-image-half { width: 100%; min-height: 400px; display: block;}
    .about-image-half img { position: relative; height: 400px; } 
    
    .split-layout { grid-template-columns: 1fr; gap: 40px; text-align: center;}
    .process-image-content { min-height: 350px; } 
    .section-title.left-align { text-align: center; }
    .timeline-step { flex-direction: column; align-items: center; text-align: center;}
    
    .navbar { top: 0; width: 100%; border-radius: 0; }
    .nav-links, .btn-nav-gradient { display: none; }
    .hamburger { display: block; color: #fff; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 75px; left: 0; width: 100%; background: rgba(10, 15, 25, 0.98); padding: 30px; border-bottom: 1px solid #e11d48; gap: 20px; text-align: center; }
    
    #floating-logo { width: 250px; } 
    .hero-btns { flex-direction: column; width: 100%; align-items: center;}
    .btn { width: 100%; max-width: 300px; margin-bottom: 10px;}
    
    .horizontal-ticker-bg { padding: 12px 0; }
    .ticker-item { font-size: 0.9rem; }
    
    /* ================= Services Bento Grid Mobile Fixes ================= */
    .services-bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .services-cta-banner { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
    .bento-subtitle { min-height: auto; }

    /* ================= Packages Mobile Fixes ================= */
    .packages-grid { grid-template-columns: 1fr; gap: 40px; }

    /* ================= Footer Mobile Fixes ================= */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .contact-item { justify-content: center; }
    .footer-q { font-size: 1.4rem; }
}



/* ================= FIX HOW IT WORKS SVG TEXT ON MOBILE ================= */
@media (max-width: 768px) {
    /* تصغير العناوين جوه رسمة الثعبان */
    .snake-svg-wrapper .node-label h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }
    
    /* تصغير البراجرافات */
    .snake-svg-wrapper .node-label p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }

    /* تكبير العرض عشان الكلام ياخد راحته وميكسّرش */
    .snake-main-svg {
        width: 1200px !important;
        height: auto !important; 
        max-width: none !important;
    }

    /* مسافة فاضية في آخر السكرول عشان آخر خطوة متلزقش في الشاشة */
    .snake-svg-wrapper {
        padding-right: 50px !important; 
    }
}



/* ================= PREMIUM DESIGNER SIGNATURE ================= */
.designer-signature {
    font-size: 0.9rem;
    color: #475569;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

/* أنيميشن تقليبة الألوان RGB */
@keyframes rgbShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.designer-link-pro {
    font-weight: 900;
    /* الجراديانت الجديد اللي فيه كل الألوان الفخمة */
    background: linear-gradient(90deg, #ff003c, #d946ef, #00f3ff, #ff7300, #ff003c);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbShine 4s linear infinite; /* تشغيل الألوان باستمرار */
    text-decoration: none;
    position: relative;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* لون الأيقونة (علامة البرق) */
.designer-link-pro i {
    -webkit-text-fill-color: #00f3ff; /* خليت البرق سماوي عشان ينطق مع الألوان */
    font-size: 0.85rem;
}

/* خط النيون اللي بيظهر لما تقف بالماوس */
.designer-link-pro::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00f3ff, #ff003c); /* الخط كمان بقى بجراديانت */
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.designer-link-pro:hover::after {
    width: 100%;
}

.designer-link-pro:hover {
    filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.6)); /* توهج بنفسجي لما تقف عليه */
}

