/* Import Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&family=Amiri:wght@400;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

:root {
    /* Enhanced Alvast Brand Colors */
    --primary-blue: #4A90E2;
    --secondary-blue: #357ABD;
    --dark-blue: #2C5F8A;
    --light-blue: #7BB3F0;
    --accent-blue: #5BA0F2;
    --dark-gray: #1a252f;
    --medium-gray: #2c3e50;
    --light-gray: #f8fafc;
    --white: #FFFFFF;
    --text-dark: #2c3e50;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Typography System */
    --font-primary: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cairo', 'Tajawal', sans-serif;
    --font-serif: 'Amiri', 'Cairo', serif;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --gradient-hero: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #4A90E2 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --gradient-soft: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Enhanced Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(74, 144, 226, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(74, 144, 226, 0.3);
    
    /* Smooth Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    font-weight: 400;
    background: var(--light-gray);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-variant-ligatures: contextual;
}

/* Enhanced Arabic Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Header Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    background: rgba(26, 37, 47, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar.hide-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.show-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    order: 1;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.nav {
    display: flex;
    order: 2;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    position: relative;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #4A90E2;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 70%;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* AI Neural Network Pattern */
        radial-gradient(circle 3px at 20% 30%, rgba(74, 144, 226, 0.6) 0%, transparent 50%),
        radial-gradient(circle 2px at 80% 20%, rgba(74, 144, 226, 0.4) 0%, transparent 50%),
        radial-gradient(circle 3px at 60% 70%, rgba(74, 144, 226, 0.5) 0%, transparent 50%),
        radial-gradient(circle 2px at 30% 80%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle 3px at 90% 60%, rgba(74, 144, 226, 0.4) 0%, transparent 50%),
        radial-gradient(circle 2px at 10% 50%, rgba(74, 144, 226, 0.5) 0%, transparent 50%),
        /* Connection Lines */
        linear-gradient(45deg, transparent 48%, rgba(74, 144, 226, 0.1) 49%, rgba(74, 144, 226, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(74, 144, 226, 0.08) 49%, rgba(74, 144, 226, 0.08) 51%, transparent 52%),
        /* Circuit Grid */
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(74, 144, 226, 0.03) 100px, rgba(74, 144, 226, 0.03) 102px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(74, 144, 226, 0.03) 100px, rgba(74, 144, 226, 0.03) 102px),
        /* Gradient Overlays */
        radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(123, 179, 240, 0.08) 0%, transparent 50%);
    background-size: 
        200px 200px, 250px 250px, 180px 180px, 220px 220px, 190px 190px, 210px 210px,
        300px 300px, 400px 400px, 100px 100px, 100px 100px, 800px 800px, 600px 600px;
    animation: neural-network-flow 20s linear infinite;
    z-index: 1;
}

@keyframes neural-network-flow {
    0% {
        background-position: 
            0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%,
            0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 
            100% 100%, -100% 100%, 50% -50%, -50% 50%, 100% -100%, -100% -100%,
            50% 50%, -50% -50%, 100% 0%, 0% 100%, 100% 100%, -100% -100%;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #7BB3F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-medium);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    display: none; /* Hide on mobile for better performance */
}

.element {
    position: absolute;
    border-radius: 24px;
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
    box-shadow: var(--shadow-soft);
}

.element-1 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 20%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(123, 179, 240, 0.15));
    animation-delay: 0s;
}

.element-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    background: linear-gradient(135deg, rgba(53, 122, 189, 0.2), rgba(74, 144, 226, 0.15));
    animation-delay: 2s;
}

.element-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 60%;
    background: linear-gradient(135deg, rgba(123, 179, 240, 0.2), rgba(91, 160, 242, 0.15));
    animation-delay: 4s;
}

.element-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 40%;
    background: linear-gradient(135deg, rgba(91, 160, 242, 0.2), rgba(74, 144, 226, 0.15));
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-25px) rotate(5deg) scale(1.05); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Features Section */
/* الحاوية العامة */
.pricing-section {
    background-color: #f8f9fc; /* خلفية بيضاء ناعمة */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* كل بطاقة باقة */
  .pricing-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 320px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }
  
  /* اسم الباقة */
  .pricing-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
  }
  
  /* السعر */
  .pricing-card .price {
    font-size: 30px;
    font-weight: bold;
    color: #2079ff;
    margin-bottom: 20px;
  }
  
  /* القائمة */
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
  }
  
  .pricing-card ul li::before {
    content: "✔";
    color: #2079ff;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* زر البدء */
  .pricing-card .start-btn {
    background-color: #2079ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pricing-card .start-btn:hover {
    background-color: #1055c5;
  }
  

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-blue);
}

.form-container {
    padding: 2rem;
}

.form-container h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.signup-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    font-family: var(--font-primary);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.login-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}

/* Enhanced Consultation Process Section */
 .consultation-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}


.consultation-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 179, 240, 0.06) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}


.consultation-process .container {
    position: relative;
    z-index: 2;
}


.consultation-process .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 100px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.2) 10%, rgba(74, 144, 226, 0.2) 90%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #4A90E2, #357ABD);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(74, 144, 226, 0.6),
        0 0 40px rgba(74, 144, 226, 0.4);
    border-radius: 2px;
    z-index: 1;
}

/* Enhanced progress line with scroll-based animation */
.progress-line.step-1 {
    height: 25%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-line.step-2 {
    height: 50%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-line.step-3 {
    height: 75%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-line.step-4 {
    height: 100%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add pulsing effect to active progress line */
.progress-line.active {
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0% {
        box-shadow: 
            0 0 20px rgba(74, 144, 226, 0.6),
            0 0 40px rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(74, 144, 226, 0.8),
            0 0 60px rgba(74, 144, 226, 0.6),
            0 0 80px rgba(74, 144, 226, 0.4);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(74, 144, 226, 0.6),
            0 0 40px rgba(74, 144, 226, 0.4);
    }
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 140px;
    opacity: 0.6;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-step.active {
    opacity: 1;
    transform: translateY(0) scale(1.02);
}

/* Enhanced alternating positioning */
.process-step:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
}

.process-step:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 50px);
}

.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.4s; }
.process-step:nth-child(4) { transition-delay: 0.6s; }
.process-step:nth-child(5) { transition-delay: 0.8s; }

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    width: 100%;
}

.step-number {
    position: relative;
    z-index: 10;
    margin-bottom: 25px;
}

.step-number span {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-medium);
    border: 4px solid #1a252f;
    transition: var(--transition-smooth);
    position: relative;
    font-family: var(--font-primary);
}

.step-number span::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 24px;
    animation: pulse-ring 3s ease-out infinite;
}

.process-step.active .step-number span {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.step-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: rgba(74, 144, 226, 0.4);
    border-radius: 50%;
    border: 4px solid #1a252f;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.process-step.active .step-timeline-dot {
    background: #4A90E2;
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.8);
    transform: translate(-50%, -50%) scale(1.3);
}

/* Add a glowing ring effect for active dots */
.process-step.active .step-timeline-dot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.step-content {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    padding: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Adjust content direction for alternating sides */
.process-step:nth-child(even) .step-content {
    flex-direction: row-reverse;
}

.step-image {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}

.step-illustration {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(53, 122, 189, 0.12));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(74, 144, 226, 0.25);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(74, 144, 226, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.step-illustration:hover::before {
    transform: translateX(100%);
}

.step-illustration:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25), rgba(53, 122, 189, 0.2));
    border-color: rgba(74, 144, 226, 0.4);
    transform: scale(1.08);
    box-shadow: var(--shadow-medium);
}

.step-illustration i {
    color: #4A90E2;
    opacity: 0.9;
    z-index: 2;
    position: relative;
    transition: var(--transition-smooth);
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.step-illustration:hover i {
    transform: scale(1.15);
    color: #357ABD;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: white;
    font-weight: 700;
    transition: var(--transition-smooth);
    line-height: 1.4;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.process-step.active .step-info h3 {
    color: #4A90E2;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.step-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Text alignment for alternating sides */
.process-step:nth-child(odd) .step-info {
    text-align: right;
}

.process-step:nth-child(even) .step-info {
    text-align: left;
}

.consultation-cta {
    text-align: center;
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-transform: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    min-width: 280px;
    justify-content: center;
    text-decoration: none; /* Remove underline for link */
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.consultation-btn:hover::before {
    left: 100%;
}

.consultation-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #357ABD, #2C5F8A);
    text-decoration: none; /* Ensure no underline on hover */
}

.consultation-btn:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

.consultation-btn:focus {
    outline: none;
    box-shadow: var(--shadow-glow), 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.consultation-btn i {
    font-size: 1.1rem;
}

.consultation-note {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--font-primary);
}

/* Enhanced Products Section */


/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.8fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section {
    position: relative;
}

/* القسم الأول - اللوجو والوصف */
.footer-section:first-child .footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Cairo', 'Tajawal', sans-serif;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-section:first-child p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 280px;
}

/* عناوين الأقسام */
.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4A90E2;
    font-family: 'Cairo', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4A90E2, transparent);
}

/* قوائم الروابط */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(-5px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.footer-section a:hover {
    color: #4A90E2;
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: #4A90E2;
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

/* قسم معلومات التواصل */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-info p:hover {
    color: #4A90E2;
    transform: translateX(-5px);
}

.contact-info i {
    color: #4A90E2;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* أيقونات وسائل التواصل الاجتماعي */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: #4A90E2;
    border-color: #4A90E2;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    color: white;
}

.social-links a i {
    font-size: 1.2rem;
    width: auto;
}

/* الجزء السفلي من الفوتر */
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #4A90E2;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #6BAFF5;
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
}

/* تنسيقات الموبايل للفوتر */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section:first-child p {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-bottom a {
        display: inline-block;
        margin: 0.2rem 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section a,
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}

/* Enhanced Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    order: 3;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #4A90E2;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #4A90E2;
}

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: slideIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--primary-blue);
    background: rgba(74, 144, 226, 0.1);
    transform: scale(1.1);
}

.form-container {
    padding: 3rem;
}

.form-container h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

.signup-form {
    display: grid;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: var(--font-primary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.terms-link:hover {
    text-decoration: underline;
    color: var(--secondary-blue);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-medium);
    font-family: var(--font-primary);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.login-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.login-link:hover {
    text-decoration: underline;
    color: var(--secondary-blue);
}

/* Enhanced Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    position: relative;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
        flex-direction: row;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav {
        position: fixed;
    top: 0;
        right: -100%;
    width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(26, 37, 47, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav.active {
        right: 0;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1.2rem 0;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(74, 144, 226, 0.15);
        color: #4A90E2;
        transform: translateX(-5px);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
    height: 100%;
        background: linear-gradient(135deg, #4A90E2, #357ABD);
        transition: width 0.3s ease;
        border-radius: 2px 0 0 2px;
    }
    
    .nav-link:hover::before {
        width: 4px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        font-weight: 400;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    text-align: center;
        gap: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        border-radius: 20px;
    }
    
    .form-container {
    padding: 2rem;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .section-title {
        font-size: 2.2rem;
        font-weight: 800;
    }
    
    /* Mobile Consultation Process */
    .consultation-process {
        padding: 80px 0;
    }
    
    .section-subtitle {
        margin-bottom: 60px;
        font-size: 1.1rem;
    }
    
    .process-timeline {
        padding: 20px 10px;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .process-step {
        flex-direction: column !important;
        justify-content: center !important;
        padding: 0 !important;
        margin-bottom: 80px;
        padding-left: 80px !important;
    }
    
    .step-wrapper {
        max-width: none;
        align-items: flex-start;
    }
    
    .step-timeline-dot {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .process-step.active .step-timeline-dot {
        transform: translateY(-50%) scale(1.3);
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .step-number span {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        border: 3px solid #1a252f;
        border-radius: 16px;
    }
    
    .step-content {
        flex-direction: column !important;
        gap: 25px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .step-image {
        width: 110px;
        height: 110px;
    }
    
    .step-illustration {
        border-radius: 20px;
    }
    
    .step-illustration i {
        font-size: 2.5rem;
    }
    
    .step-info {
        text-align: center !important;
    }
    
    .step-info h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .step-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .consultation-cta {
        margin-top: 60px;
    }
    
    .consultation-btn {
        padding: 15px 28px;
        font-size: 1rem;
        gap: 10px;
        border-radius: 10px;
    }
    
    .scroll-indicator {
        height: 2px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-elements {
        display: none; /* Hide on mobile for better performance */
    }
    
    /* Hide complex AI background on mobile for better performance */
    .ai-background {
        display: none;
    }
    
    /* Show simplified version on mobile */
    .hero::before {
        background: 
            radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(123, 179, 240, 0.08) 0%, transparent 50%);
        animation: none;
    }
    
    .logo-img {
        height: 35px;
        max-width: 140px;
    }
    
    .footer-logo .logo-img {
        height: 32px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 400;
    }
    
    .section-title {
        font-size: 1.9rem;
        font-weight: 800;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-container h2 {
        font-size: 1.6rem;
        font-weight: 800;
    }
    
    checkbox-label {
        font-size: 0.85rem;
        font-weight: 400;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        font-weight: 400;
    }
    
    .process-step {
        margin-bottom: 60px;
        padding-left: 60px !important;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-timeline-dot {
        left: 25px;
    }
    
    .step-number span {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 14px;
    }
    
    .step-content {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .step-image {
        width: 100px;
        height: 100px;
    }
    
    .step-illustration i {
        font-size: 2.2rem;
    }
    
    .step-info h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .step-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .consultation-btn {
        padding: 15px 28px;
        font-size: 1rem;
        gap: 10px;
        border-radius: 10px;
    }
}

/* Enhanced Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Scroll Animations */
.feature-card, .product-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.animate-in, .product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Icon Animations */
.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    border: 3px solid rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Infographic Effects */
.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    animation: float-particle 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.3);
        opacity: 1;
    }
}

/* Enhanced Analysis Lines */
.analysis-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #27AE60, transparent);
    border-radius: 2px;
    animation: scan 2.5s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 15%;
    width: 70%;
    height: 3px;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: 20%;
    width: 60%;
    height: 3px;
    animation-delay: 0.8s;
}

.line-3 {
    top: 70%;
    left: 25%;
    width: 50%;
    height: 3px;
    animation-delay: 1.6s;
}

@keyframes scan {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Enhanced Idea Sparks */
.idea-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.spark {
    position: absolute;
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #F39C12, #E67E22);
    border-radius: 2px;
    animation: spark-flash 2s ease-in-out infinite;
}

.spark-1 {
    top: 15%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0s;
}

.spark-2 {
    top: 25%;
    right: 20%;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.spark-3 {
    top: 25%;
    left: 20%;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.spark-4 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 1.5s;
}

@keyframes spark-flash {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Enhanced Rocket Trail */
.rocket-trail {
    position: absolute;
    width: 100%;
    height: 100%;
}

.trail {
    position: absolute;
    background: linear-gradient(90deg, transparent, #E74C3C, transparent);
    border-radius: 10px;
    animation: rocket-trail 2.5s ease-in-out infinite;
}

.trail-1 {
    bottom: 20%;
    left: 15%;
    width: 35px;
    height: 6px;
    animation-delay: 0s;
}

.trail-2 {
    bottom: 25%;
    left: 10%;
    width: 28px;
    height: 4px;
    animation-delay: 0.3s;
}

.trail-3 {
    bottom: 30%;
    left: 5%;
    width: 22px;
    height: 3px;
    animation-delay: 0.6s;
}

@keyframes rocket-trail {
    0% {
        opacity: 0;
        transform: translateX(-25px) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(0px) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateX(25px) scaleX(0.5);
    }
}

/* Enhanced Icon Colors */
.step-image .fa-handshake {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.5));
}

.step-image .fa-search {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(39, 174, 96, 0.5));
}

.step-image .fa-lightbulb {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.5));
}

.step-image .fa-rocket {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.5));
}

/* Enhanced Active State Animations */
.process-step.active .icon-container i {
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.5));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px rgba(74, 144, 226, 0.8));
    }
}

.process-step.active .icon-bg-circle {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 0 35px rgba(74, 144, 226, 0.3);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #4A90E2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Loading States */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: button-spin 1s linear infinite;
}

@keyframes button-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    font-family: var(--font-primary);
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Enhanced Hover Effects for Cards */
.feature-card:hover,
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
}

/* Improved Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
    z-index: 9999;
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    .scroll-indicator {
        height: 2px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-elements {
        display: none; /* Hide on mobile for better performance */
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Enhanced Accessibility Features */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        transition: none;
    }
}

/* Enhanced Dark Mode Support (for future) */
@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #1a1a1a;
        --text-dark: #e2e8f0;
        --text-light: #94a3b8;
    }
}

/* Enhanced Print Styles */
@media print {
    .navbar,
    .hamburger,
    .floating-elements,
    .scroll-indicator,
    .notification {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .modal {
        display: none !important;
    }
}

/* Enhanced High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* AI Background Elements */
.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* AI Floating Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #4A90E2, #7BB3F0);
    border-radius: 50%;
    opacity: 0;
    animation: float-ai-particle 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.ai-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.ai-particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.ai-particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.ai-particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.ai-particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.ai-particle:nth-child(6) {
    top: 70%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.ai-particle:nth-child(7) {
    top: 15%;
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.ai-particle:nth-child(8) {
    top: 85%;
    left: 40%;
    animation-delay: 4.5s;
    animation-duration: 6s;
}

@keyframes float-ai-particle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-120px) scale(1.5);
    }
}

/* Digital Circuit Lines */
.digital-circuits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(74, 144, 226, 0.3) 20%, 
        rgba(74, 144, 226, 0.8) 50%, 
        rgba(74, 144, 226, 0.3) 80%, 
        transparent 100%
    );
    animation: circuit-flow 4s ease-in-out infinite;
    border-radius: 1px;
}

.circuit-line.horizontal {
    height: 2px;
    width: 250px;
}

.circuit-line.vertical {
    width: 2px;
    height: 250px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(74, 144, 226, 0.3) 20%, 
        rgba(74, 144, 226, 0.8) 50%, 
        rgba(74, 144, 226, 0.3) 80%, 
        transparent 100%
    );
}

.circuit-line:nth-child(1) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 55%;
    right: 20%;
    animation-delay: 2s;
}

.circuit-line:nth-child(3) {
    top: 75%;
    left: 50%;
    animation-delay: 4s;
}

.circuit-line:nth-child(4) {
    left: 25%;
    top: 20%;
    animation-delay: 1s;
}

.circuit-line:nth-child(5) {
    right: 30%;
    top: 40%;
    animation-delay: 3s;
}

@keyframes circuit-flow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(74, 144, 226, 0.8);
    }
}

/* AI Brain Network */
.ai-brain {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.15;
}

.brain-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #4A90E2, #357ABD);
    border-radius: 50%;
    animation: brain-pulse 3s ease-in-out infinite;
}

.brain-node:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.brain-node:nth-child(2) {
    top: 40%;
    left: 60%;
    animation-delay: 0.6s;
}

.brain-node:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1.2s;
}

.brain-node:nth-child(4) {
    top: 30%;
    left: 80%;
    animation-delay: 1.8s;
}

.brain-node:nth-child(5) {
    top: 70%;
    left: 70%;
    animation-delay: 2.4s;
}

@keyframes brain-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
    }
    50% {
        transform: scale(2);
        opacity: 1;
        box-shadow: 0 0 30px rgba(74, 144, 226, 1);
    }
}

/* Data Flow Animation */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(74, 144, 226, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(123, 179, 240, 0.05) 50%, transparent 70%),
        linear-gradient(135deg, transparent 40%, rgba(91, 160, 242, 0.06) 60%, transparent 80%);
    background-size: 300px 300px, 400px 400px, 250px 250px;
    animation: data-flow 25s linear infinite;
}

@keyframes data-flow {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 300px 300px, -400px 400px, 250px -250px;
    }
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Additional AI Visual Effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Holographic effect */
        linear-gradient(45deg, transparent 30%, rgba(74, 144, 226, 0.02) 31%, rgba(74, 144, 226, 0.02) 32%, transparent 33%),
        linear-gradient(-45deg, transparent 30%, rgba(123, 179, 240, 0.02) 31%, rgba(123, 179, 240, 0.02) 32%, transparent 33%),
        /* Digital noise */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(74, 144, 226, 0.01) 2px,
            rgba(74, 144, 226, 0.01) 4px
        );
    background-size: 100px 100px, 150px 150px, 4px 4px;
    animation: holographic-shift 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes holographic-shift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.3;
    }
    25% {
        background-position: 25% 25%, -25% 25%, 25% 0%;
        opacity: 0.5;
    }
    50% {
        background-position: 50% 50%, -50% 50%, 50% 0%;
        opacity: 0.3;
    }
    75% {
        background-position: 75% 75%, -75% 75%, 75% 0%;
        opacity: 0.4;
    }
    100% {
        background-position: 100% 100%, -100% 100%, 100% 0%;
        opacity: 0.3;
    }
}

/* Enhanced AI Particles with different types */
.ai-particle:nth-child(odd) {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    animation-direction: reverse;
}

.ai-particle:nth-child(even) {
    background: linear-gradient(45deg, #7BB3F0, #5BA0F2);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Pulsing glow effect for brain nodes */
.brain-node::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3), transparent);
    border-radius: 50%;
    animation: node-glow 2s ease-in-out infinite alternate;
}

@keyframes node-glow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}



/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Infographic Container */
.infographic-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central AI Hub */
.ai-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 0 30px rgba(74, 144, 226, 0.6),
        0 0 60px rgba(74, 144, 226, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: hub-pulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hub-core i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hub-core span {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

@keyframes hub-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(74, 144, 226, 0.6),
            0 0 60px rgba(74, 144, 226, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 40px rgba(74, 144, 226, 0.8),
            0 0 80px rgba(74, 144, 226, 0.6);
    }
}

/* Connected Systems */
.connected-system {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: system-float 4s ease-in-out infinite;
}

.system-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.connected-system span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-primary);
    max-width: 80px;
}

.connected-system:hover .system-icon {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

/* System Positioning */
.system-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.system-2 {
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

.system-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.system-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

/* كود تجاوب الشاشات الصغيرة */
@media (max-width: 768px) {
    .system-1 {
        top: 1%;
        left: 1%;
    }

    .system-2 {
        top: 1%;
        right: 1%;
    }

    .system-3 {
        bottom: 1%;
        left: 1%;
    }

    .system-4 {
        bottom: 1%;
        right: 1%;
    }
}

@keyframes system-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(45deg, 
        rgba(74, 144, 226, 0.6) 0%, 
        rgba(74, 144, 226, 0.3) 50%, 
        rgba(74, 144, 226, 0.6) 100%
    );
    animation: data-flow-line 2s ease-in-out infinite;
}

.line-1 {
    width: 2px;
    height: 120px;
    top: 70px;
    left: 35px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 120px;
    top: 70px;
    right: 35px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 2px;
    height: 120px;
    bottom: 70px;
    left: 35px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.line-4 {
    width: 2px;
    height: 120px;
    bottom: 70px;
    right: 35px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes data-flow-line {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
    }
}

/* Data Flow Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #4A90E2, #7BB3F0);
    border-radius: 50%;
    animation: particle-orbit 8s linear infinite;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
}

.data-particle:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 6s;
}

.data-particle:nth-child(2) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.data-particle:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 8s;
}

.data-particle:nth-child(4) {
    animation-delay: 3s;
    animation-duration: 6s;
}

.data-particle:nth-child(5) {
    animation-delay: 4s;
    animation-duration: 7s;
}

.data-particle:nth-child(6) {
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes particle-orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
        opacity: 0;
    }
}



/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
}

.products .section-title {
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.product-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.price {
    color: var(--primary-blue);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: right;
    flex-grow: 1;
}

.features li {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.features li:hover {
    color: var(--light-blue);
    transform: translateX(-5px);
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--primary-blue);
    margin-left: 0.5rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 179, 240, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq .section-title {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.12);
    border-color: rgba(74, 144, 226, 0.2);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    user-select: none;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-item.active .faq-question {
    background: rgba(74, 144, 226, 0.08);
    border-bottom-color: rgba(74, 144, 226, 0.15);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(123, 179, 240, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.faq-item:hover .faq-icon::before {
    opacity: 1;
}

.faq-icon i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.faq-item.active .faq-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.faq-item.active .faq-icon i {
    color: white;
    transform: scale(1.1);
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    font-family: var(--font-primary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-blue);
}

.faq-answer {
    display: none;
    padding: 10px 15px;
    border-right: 3px solid #2079ff;
    background-color: #f9f9f9;
    margin-top: 10px;
    border-radius: 0 8px 8px 8px;
    transition: all 0.3s ease-in-out;
  }

.faq-item.active .faq-answer {
    background: rgba(74, 144, 226, 0.05);
    border-top: 1px solid rgba(74, 144, 226, 0.15);
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 400;
}

/* Enhanced Animation Keyframes */
@keyframes faqIconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

@keyframes faqRipple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* FAQ Ripple Effect */
.faq-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    transform: scale(0);
    animation: faqRipple 0.6s linear;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Mobile Responsive for FAQ */
@media screen and (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .faq-container {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        cursor: pointer;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 12px;
        background-color: #fff;
        transition: background 0.2s ease;
        margin-bottom: 10px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        margin-left: 10px;
        font-size: 18px;
        color: #2079ff;
        transition: transform 0.3s;
    }
    .faq-item.active .faq-icon i::before {
        content: "\f068"; /* أيقونة minus */
      }
    
    .faq-icon i {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .faq .section-title {
        font-size: 1.9rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-icon i {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
}

.contact .section-title {
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
}

.contact-info {
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.info-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a252f 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive for New Sections */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Enhanced Mobile Navigation - Fixed */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 8px;
        order: 3;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(26, 37, 47, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 0;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(74, 144, 226, 0.15);
        color: #4A90E2;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero Section Mobile Fix */
    .hero {
        padding: 120px 0 60px;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 1.2rem;
        text-align: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    /* Infographic Mobile Fix */
    .infographic-container {
        width: 300px;
        height: 240px;
        margin: 0 auto;
        transform: scale(0.9);
    }
    
    .hub-core {
        width: 100px;
        height: 100px;
    }
    
    .hub-core i {
        font-size: 2rem;
    }
    
    .hub-core span {
        font-size: 0.8rem;
    }
    
    .system-icon {
        width: 55px;
        height: 55px;
    }
    
    .system-icon i {
        font-size: 1.4rem;
    }
    
    .connected-system span {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Navbar Mobile Fix */
    .nav-container {
        padding: 1rem;
        flex-direction: row;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .hamburger {
        order: 3;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    /* Sections Mobile Fix */
    .services, .products, .faq, .contact, .why-choose {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card, .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon, .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        flex-direction: row;
        align-items: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        text-align: right;
        flex: 1;
    }
    
    .faq-toggle {
        flex-shrink: 0;
    }
    
    /* Hide complex animations on mobile */
    .ai-particles,
    .data-particles,
    .connection-line,
    .floating-elements {
        display: none;
    }
    
    /* Simplify hero background on mobile */
    .hero::before {
        background: 
            radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(123, 179, 240, 0.08) 0%, transparent 50%);
        animation: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .infographic-container {
        width: 250px;
        height: 200px;
        transform: scale(0.8);
    }
    
    .nav {
        width: 260px;
    }
    
    .service-card, .contact-form {
        padding: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Ultra small screens */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .nav {
        width: 240px;
    }
    
    .infographic-container {
        width: 220px;
        height: 180px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Mobile overlay for navigation */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Why Choose Alvast Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 179, 240, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    cursor: pointer;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
    background: linear-gradient(135deg, #357ABD, #2c5f8a);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-primary);
} 

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    font-family: var(--font-primary);
}

/* Mobile responsive for features grid */
@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.product-card .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    margin-top: auto;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

/* Enhanced Services Section */
.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-header:hover {
    background: rgba(74, 144, 226, 0.05);
}

.service-header .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.service-header h3 {
    flex: 1;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-primary);
}

.dropdown-icon {
    color: var(--primary-blue);
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

.service-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.service-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(74, 144, 226, 0.02);
}

.service-item:hover .service-dropdown,
.service-item.active .service-dropdown {
    max-height: 200px;
    padding: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.service-item:hover .dropdown-icon,
.service-item.active .dropdown-icon {
    transform: rotate(180deg);
}

.service-dropdown p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .service-header h3 {
        font-size: 1.1rem;
    }
    
    .service-header .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-header h3 {
        font-size: 1rem;
    }
}

/* FAQ Animation Effects */
@keyframes faqIconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.faq-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    transform: scale(0);
    animation: faqRipple 0.6s linear;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes faqRipple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Smooth transition for FAQ items */
.faq-item.active {
    border-color: rgba(74, 144, 226, 0.2);
}

.faq-item.active .faq-question {
    background: rgba(74, 144, 226, 0.05);
    border-bottom-color: rgba(74, 144, 226, 0.1);
}

/* Enhanced Consultation Form Styles */
.consultation-form {
    display: grid;
    gap: 1.5rem;
}

.consultation-form .form-group select {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1rem;
    padding-left: 3rem;
}

.consultation-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.consultation-form .form-group select option {
    color: var(--text-dark);
    background: var(--white);
    padding: 0.5rem;
}

/* Enhanced Consultation Button Styling */
.consultation-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-transform: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    min-width: 280px;
    justify-content: center;
    text-decoration: none; /* Remove underline for link */
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.consultation-btn:hover::before {
    left: 100%;
}

.consultation-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #357ABD, #2C5F8A);
}

.consultation-btn i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.consultation-note {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-primary);
    text-align: center;
    opacity: 0.9;
}

/* Enhanced Animation Keyframes */
@keyframes iconPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.5));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(74, 144, 226, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.5));
    }
}

/* Enhanced Responsive Design for Consultation Section */
@media screen and (max-width: 768px) {
    .consultation-btn {
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 250px;
        gap: 10px;
    }
    
    .consultation-note {
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .consultation-form .form-group select {
        background-position: left 0.8rem center;
        padding-left: 2.5rem;
    }
    
    .process-step {
        margin-bottom: 80px;
        padding-left: 70px !important;
    }
    
    .step-number span {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    .consultation-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-width: 220px;
    }
    
    .consultation-form .form-group select {
        font-size: 0.9rem;
        padding: 0.9rem 2.2rem 0.9rem 1rem;
    }
    
    .process-step {
        margin-bottom: 60px;
        padding-left: 60px !important;
    }
}

/* Arabic Text Optimization */
.consultation-process .step-info h3,
.consultation-process .section-title,
.consultation-process .section-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.consultation-process .step-info p {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.8;
}

/* Enhanced Modal for Mobile */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5% auto;
        border-radius: 20px;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-container h2 {
        font-size: 1.6rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Enhanced Scroll Indicator */
.consultation-process .progress-line {
    background: linear-gradient(180deg, 
        #4A90E2 0%, 
        #357ABD 50%, 
        #2C5F8A 100%);
    box-shadow: 
        0 0 20px rgba(74, 144, 226, 0.6),
        0 0 40px rgba(74, 144, 226, 0.4);
}

/* Loading Animation for Form */
.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Products Section - Unified Color Scheme */
.products .product-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.products .product-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(74, 144, 226, 0.4) !important;
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.3) !important;
}

.products .product-card.featured {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 2px solid #4A90E2 !important;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25) !important;
}

.products .product-card.featured:hover {
    box-shadow: 0 30px 60px rgba(74, 144, 226, 0.4) !important;
}

.products .product-card h3 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products .product-card .price {
    color: #4A90E2 !important;
    text-shadow: 0 2px 15px rgba(74, 144, 226, 0.5);
}

.products .product-card .price span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.products .product-card .features li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.products .product-card .features li:hover {
    color: #7BB3F0 !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.products .product-card .features i {
    color: #4A90E2 !important;
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.6));
}

.products .badge {
    background: linear-gradient(135deg, #4A90E2, #357ABD) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.products .product-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4) !important;
}

.products .product-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2C5F8A) !important;
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6) !important;
}

/* Mobile Responsive للمنتجات */
@media screen and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .product-card {
        min-height: 450px;
        padding: 1.8rem 1.3rem;
    }
    
    .product-card.featured {
        transform: scale(1.01);
    }
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .product-card {
        min-height: 400px;
        padding: 1.5rem 1rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card:hover {
        transform: translateY(-3px);
    }
}

@media screen and (max-width: 480px) {
    .products-grid {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .product-card {
        min-height: 350px;
        padding: 1.2rem 0.8rem;
    }
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products .section-title {
    color: var(--text-dark);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.products .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #357ABD, #2c5f8a);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Hide Navbar on Scroll Down */
.navbar.hide-on-scroll {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar.show-on-scroll {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 179, 240, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 2;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages .section-title {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.packages .section-subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 70px rgba(74, 144, 226, 0.25);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    border: 2px solid white;
}

.package-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    line-height: 1.4;
}

.package-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--font-primary);
    font-weight: 400;
}

.package-features {
    flex: 1;
    margin-bottom: 2.5rem;
}

.package-features h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
    padding-bottom: 0.8rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--primary-blue);
    transform: translateX(-5px);
}

.package-features li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.3));
}

.package-cta {
    margin-top: auto;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.package-btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357ABD, #2c5f8a);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.3);
}

.packages-note {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.packages-note p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    line-height: 1.6;
}

.packages-note i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Special styling for different package types */
.package-essential {
    border-left: 4px solid #27AE60;
}

.package-pro {
    border-left: 4px solid var(--primary-blue);
}

.package-enterprise {
    border-left: 4px solid #8E44AD;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .package-card {
        padding: 2.5rem 2rem;
        min-height: 550px;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
    
    .package-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    .packages {
        padding: 80px 0;
    }
    
    .packages .section-title {
        font-size: 2.5rem;
    }
    
    .packages .section-subtitle {
        font-size: 1.1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card:hover {
        transform: translateY(-5px);
    }
    
    .package-title {
        font-size: 1.6rem;
    }
    
    .package-description {
        font-size: 1rem;
    }
    
    .packages-note {
        margin-top: 3rem;
        padding: 1.5rem;
    }
    
    .packages-note p {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .packages .section-title {
        font-size: 2rem;
    }
    
    .packages .section-subtitle {
        font-size: 1rem;
    }
    
    .package-card {
        padding: 1.5rem 1.2rem;
    }
    
    .package-title {
        font-size: 1.4rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
    }
    
    .package-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
