/* ============================================
   المعقب — Design System
   Blue & White | RTL | Mobile-First
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── CSS Variables ── */
:root {
    --primary-blue: #0A58CA;
    --primary-blue-dark: #072F6B;
    --primary-blue-light: #2563EB;
    --primary-blue-glow: rgba(10, 88, 202, 0.25);

    --brand-blue: #0A58CA;
    --brand-blue-dark: #072F6B;
    --brand-blue-light: #3B82F6;

    /* Aliases ensuring all components render in royal blue */
    --brand-blue-alias: #0A58CA;
    --brand-blue-dark-alias: #072F6B;
    --brand-blue-light-alias: #2563EB;
    --brand-blue-glow-alias: rgba(10, 88, 202, 0.25);
    --green-500: #0A58CA;
    --green-600: #072F6B;
    --shadow-green: 0 8px 25px rgba(10, 88, 202, 0.25);
    --shadow-blue-btn: 0 8px 25px rgba(10, 88, 202, 0.25);

    --blue-950: #031633;
    --blue-900: #07254D;
    --blue-850: #0A3670;
    --blue-800: #0D47A1;
    --blue-700: #0A58CA;
    --blue-600: #1D6FEE;
    --blue-500: #2563EB;
    --blue-400: #3B82F6;
    --blue-300: #60A5FA;
    --blue-200: #93C5FD;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;

    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    --hero-gradient: linear-gradient(135deg, #07254D 0%, #0A58CA 60%, #1D6FEE 100%);
    --card-gradient: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);

    --shadow-sm: 0 1px 3px rgba(10, 40, 80, 0.06);
    --shadow-md: 0 4px 14px rgba(10, 40, 80, 0.08);
    --shadow-lg: 0 10px 36px rgba(10, 40, 80, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 40, 80, 0.18);
    --shadow-blue: 0 8px 30px rgba(10, 88, 202, 0.28);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --container-max: 1280px;
    --nav-height: 86px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

/* ── Layout ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-lg {
    padding: 100px 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    color: var(--blue-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-50);
    color: var(--blue-700);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 700px;
    line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.text-blue { color: var(--blue-500); }
.text-white { color: var(--white); }
.text-gradient {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Navigation (Executive Blue & White) ── */
.navbar {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 86px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(10, 88, 202, 0.06);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-right-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 66px;
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-text {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link-text:hover,
.nav-link-text.active {
    color: var(--primary-blue);
    background: var(--blue-50);
}

/* Blue Pill Buttons */
.nav-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-blue);
    color: #ffffff !important;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-size: 1.02rem;
    font-weight: 700;
    box-shadow: 0 4px 14px var(--primary-blue-glow);
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.nav-pill-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 88, 202, 0.35);
}

/* Services Dropdown (Blue & White) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--primary-blue);
    background: var(--blue-50);
}

.nav-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 16px 36px rgba(10, 88, 202, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    color: #1e293b;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all var(--transition-fast);
    text-decoration: none;
    text-align: right;
}

.nav-dropdown-menu a:hover {
    background: var(--blue-50);
    color: var(--primary-blue);
    padding-right: 18px;
}

/* Left side of Nav: Call Button ONLY (No Social Media) */
.nav-left-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 14px var(--primary-blue-glow);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 88, 202, 0.38);
}

.nav-call-btn svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
}

/* Mobile Animated Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    background: #F1F5F9;
    border: none;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    transition: background 0.5s ease;
    z-index: 1001;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 3px;
    background: #0A58CA;
    border-radius: 4px;
    /* انميشن بطيء كما طلب المستخدم */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                width 0.5s ease;
    transform-origin: center;
}

/* Animated active state — يتحول لـ X بانميشن بطيء */
.mobile-menu-btn.active {
    background: rgba(10, 88, 202, 0.1);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 37, 77, 0.16);
    padding: 18px 20px 28px;
    z-index: 999;
    border-top: 1px solid #e2e8f0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 13px 8px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.05rem;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--primary-blue);
}

.mobile-services-sub {
    padding-right: 18px;
    background: var(--blue-50);
    border-radius: 12px;
    margin: 8px 0;
}

.mobile-services-sub a {
    font-size: 0.95rem;
    color: #334155;
    border-bottom: 1px dashed #cbd5e1;
}

.mobile-menu .nav-call-btn {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

/* ── Hero Section (Executive Blue & White) ── */
.hero-executive {
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F8FD 65%, #FFFFFF 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-executive::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 88, 202, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-executive::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-executive-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Desktop: image appears on the right, content on the left (RTL) */
.hero-executive-visual {
    order: 2;
}
.hero-executive-content {
    order: 1;
}

.hero-badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-50);
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 88, 202, 0.15);
}

.hero-badge-blue svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero-executive-title {
    font-size: clamp(2.3rem, 4.4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--blue-950);
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-executive-title .highlight-blue {
    color: var(--primary-blue);
    position: relative;
}

.hero-executive-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gray-600);
    margin-bottom: 26px;
    font-weight: 500;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gray-800);
}

.hero-feat-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.hero-executive-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0A58CA 0%, #073B82 100%);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(10, 88, 202, 0.32);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 88, 202, 0.45);
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue);
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-size: 1.08rem;
    font-weight: 800;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-outline-blue:hover {
    background: var(--blue-50);
    transform: translateY(-2px);
}

/* Stats in Hero */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.hero-stat-card {
    text-align: right;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-stat-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Left Image Container in Executive Card */
.hero-executive-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-executive-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 24px 60px rgba(10, 56, 112, 0.16);
    border: 4px solid #ffffff;
    background: #ffffff;
}

.hero-executive-img-wrap img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Floating Trust Badges */
.floating-glass-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid #dbeafe;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(10, 56, 112, 0.14);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--blue-900);
    z-index: 3;
    animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-glass-badge.top-badge {
    top: -16px;
    left: -16px;
}

.floating-glass-badge.bottom-badge {
    bottom: -16px;
    right: -16px;
    animation-delay: 2s;
}

@keyframes floatSlow {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* ── Hero Section (Dark/Blue Alternative) ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-blob-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33,150,243,0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-slow 8s ease-in-out infinite;
}

.hero-blob-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-300);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero h1 .highlight {
    color: var(--blue-200);
    position: relative;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    max-width: 550px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-200);
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 480px;
}

.hero-image-wrapper:hover {
    transform: rotateY(0) rotateX(0);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,38,71,0.5), transparent 50%);
}

/* Hero Cards */
.hero-cards {
    position: relative;
    perspective: 800px;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin-bottom: 12px;
    transition: all var(--transition-base);
}

.hero-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(-4px);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon.blue { background: var(--blue-500); }
.hero-card-icon.green { background: var(--green-500); }
.hero-card-icon.indigo { background: #5C6BC0; }

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-500);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-600);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25,118,210,0.45);
}

.btn-whatsapp {
    background: var(--green-500);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-whatsapp:hover {
    background: var(--green-600);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10,88,202,0.5);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.25);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-200);
}

.btn-outline-blue:hover {
    background: var(--blue-50);
    border-color: var(--blue-400);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(-4px);
}

/* ── Service Cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-100);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-blue);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--blue-800);
    gap: 12px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* ── Feature Cards (Glass) ── */
.features-section {
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.features-section .hero-pattern {
    position: absolute;
    inset: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-spring);
}

.feature-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.blue-bg { background: var(--blue-500); }
.feature-icon.green-bg { background: var(--green-500); }
.feature-icon.indigo-bg { background: #5C6BC0; }
.feature-icon.purple-bg { background: #7E57C2; }
.feature-icon.orange-bg { background: #FF7043; }

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Why Choose Us ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.why-item:hover {
    background: var(--blue-50);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.why-item h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.why-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Steps / How We Work ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 10%;
    left: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-200));
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.step-card:hover .step-number {
    background: var(--blue-500);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-blue);
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Target Audience Cards ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.audience-card:hover::after {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.audience-card .audience-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.audience-card:hover .audience-icon {
    background: var(--blue-500);
}

.audience-card .audience-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--blue-500);
    fill: none;
    stroke-width: 2;
    transition: all var(--transition-base);
}

.audience-card:hover .audience-icon svg {
    stroke: var(--white);
}

.audience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── All Services List ── */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-base);
    cursor: pointer;
}

.service-tag:hover {
    background: var(--blue-50);
    border-color: var(--blue-300);
    color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-tag svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue-500);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--blue-200);
}

.faq-item.active {
    border-color: var(--blue-400);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    width: 100%;
    text-align: right;
}

.faq-question:hover {
    color: var(--blue-600);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-500);
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--hero-gradient);
    border-radius: var(--radius-2xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .hero-pattern {
    position: absolute;
    inset: 0;
}

.cta-section .cta-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(33,150,243,0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ── Footer ── */
.footer {
    background: var(--blue-900);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .footer-logo {
    margin-bottom: 16px;
}

.footer-about .footer-logo img {
    height: 68px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blue-300);
    padding-right: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue-300);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ── Floating WhatsApp ── */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    background: linear-gradient(145deg, #0A58CA, #072F6B);
    box-shadow: var(--shadow-green);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #0A58CA;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.floating-call {
    background: linear-gradient(145deg, var(--blue-500), var(--blue-800));
    box-shadow: var(--shadow-blue);
}

.floating-call svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.floating-label {
    position: absolute;
    left: 74px;
    background: var(--blue-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
}

/* ── Page Header (for sub pages) ── */
.page-header {
    background: var(--hero-gradient);
    padding: calc(var(--nav-height) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header .hero-pattern {
    position: absolute;
    inset: 0;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: var(--blue-200);
    font-weight: 600;
}

/* ── Service Detail Page ── */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-list {
    padding: 0;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    color: var(--gray-700);
}

.service-detail-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-500);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.service-detail-list li div {
    flex: 1;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.req-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    color: var(--gray-700);
}

.req-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-500);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 4px;
}

.req-item div {
    flex: 1;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-100);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    color: var(--blue-600);
    padding-right: 8px;
}

.sidebar-nav a svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue-400);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ── Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition-fast);
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Animations ── */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Keyframes ── */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

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

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

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ── 3D Effects ── */
.card-3d {
    perspective: 800px;
}

.card-3d-inner {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-text {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid::before { display: none; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .all-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }

    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .services-grid,
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 48px 24px;
        border-radius: var(--radius-xl);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .floating-actions {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .floating-label { display: none; }

    /* Hero Section Mobile Layout: image on top, text below */
    .hero-executive-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-executive-visual {
        order: 1; /* Image first on mobile */
        width: 100%;
    }

    .hero-executive-content {
        order: 2; /* Text second on mobile */
        text-align: center;
    }

    .hero-executive-img-wrap img {
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
    }

    .hero-executive-img-wrap {
        border-radius: 16px;
    }

    .hero-executive-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .hero-executive-text {
        font-size: 1rem;
    }

    .hero-badge-blue {
        justify-content: center;
    }

    .hero-features-list {
        text-align: right;
    }

    .hero-executive-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ── Loading Screen ── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--blue-100);
    border-top-color: var(--blue-500);
    border-radius: 50%;
    animation: spin-slow 0.8s linear infinite;
}

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--blue-700);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

/* ── Articles Grid ── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-spring);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.article-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-img svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.5;
}

.article-card-body {
    padding: 24px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Utility ── */
.bg-gray { background: var(--gray-50); }
.bg-blue-light { background: var(--blue-50); }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-16 { gap: 16px; }


/* ── Custom Executive Select Component ── */
.custom-select-group {
    position: relative;
}

.custom-select-wrap {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: right;
    box-sizing: border-box;
}

.custom-select-trigger:hover {
    border-color: #0A58CA;
}

.custom-select-wrap.active .custom-select-trigger {
    border-color: #0A58CA;
    box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.12);
}

.custom-select-trigger .arrow-icon {
    width: 20px;
    height: 20px;
    stroke: #0A58CA;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.custom-select-wrap.active .arrow-icon {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 100;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(7, 37, 77, 0.14);
    padding: 8px;
    max-height: 290px;
    overflow-y: auto;
    display: none;
    animation: selectFadeIn 0.2s ease-out;
}

.custom-select-wrap.active .custom-select-options {
    display: block;
}

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

.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: right;
}

.custom-select-option:hover {
    background: #F0F6FE;
    color: #0A58CA;
    padding-right: 20px;
}

.custom-select-option.selected {
    background: #E8F1FE;
    color: #0A58CA;
    font-weight: 700;
}

.custom-select-option .check-icon {
    width: 18px;
    height: 18px;
    stroke: #0A58CA;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.custom-select-option.selected .check-icon {
    opacity: 1;
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
