/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bahnschrift&display=swap');

/* Mobile Performance Optimization */
* {
    -webkit-tap-highlight-color: rgba(87, 161, 193, 0.2);
    -webkit-touch-callout: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Root Variables */
:root {
    --primary-color: #57a1c1;
    --primary-dark: #3d8aad;
    --primary-light: #72b8d5;
    --secondary-color: #000000;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, rgba(87, 161, 193, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

/* Splash Screen - Modern Design */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f8fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.splash-screen::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(87, 161, 193, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

.splash-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Circular Progress Ring */
.splash-logo-container::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid rgba(87, 161, 193, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.splash-logo-container::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-circle 4s linear forwards;
    filter: drop-shadow(0 0 10px rgba(87, 161, 193, 0.3));
}

@keyframes rotate-circle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-top-color: var(--primary-color);
        border-right-color: var(--primary-color);
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        border-top-color: var(--primary-color);
        border-right-color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        border-left-color: transparent;
    }
    50% {
        border-top-color: var(--primary-color);
        border-right-color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        border-left-color: var(--primary-color);
    }
    75% {
        border-top-color: var(--primary-color);
        border-right-color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        border-left-color: var(--primary-color);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-top-color: var(--primary-color);
        border-right-color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        border-left-color: var(--primary-color);
    }
}

/* Inner Glow Circle */
.splash-logo-container .splash-logo::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 161, 193, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

.splash-logo {
    position: relative;
    height: 160px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(87, 161, 193, 0.25));
    animation: logo-breathe 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logo-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Remove old loader */
.splash-loader {
    display: none;
}

.loader-bar {
    display: none;
}

/* Decorative Particles */
.splash-screen::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(87, 161, 193, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(87, 161, 193, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(87, 161, 193, 0.02) 0%, transparent 50%);
    animation: particles-move 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particles-move {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
    font-family: 'Tajawal', sans-serif;
}

body[dir="ltr"] {
    font-family: 'Bahnschrift', 'Tajawal', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 16px rgba(87, 161, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(87, 161, 193, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(87, 161, 193, 0.3);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 3rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 90px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light) !important;
    border-radius: 24px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    display: none;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light) !important;
    padding: 10px 24px;
    border-radius: 24px;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 161, 193, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(87, 161, 193, 0.2);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 161, 193, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--bg-gradient);
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 161, 193, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    left: 40%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
    border: 2px solid rgba(87, 161, 193, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-gray);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease 0.5s both;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: 4s;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.section-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

section.section-exit {
    opacity: 0;
    transform: translateY(-30px) scale(1.02);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

section.section-visible .section-header {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    animation: fadeInUp 0.8s ease;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.vm-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.vm-icon {
    margin-bottom: 20px;
}

.vm-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.vm-card p {
    line-height: 1.9;
    color: var(--text-gray);
}

/* Values */
.about-values {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.values-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

body[dir="ltr"] .value-item:hover {
    transform: translateX(10px);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
    border-radius: 12px;
}

.value-content h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

body[dir="ltr"] .product-card::before {
    transform-origin: right;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.product-icon {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
    border-radius: var(--border-radius);
    display: inline-block;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.product-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0;
}

.product-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-card p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.product-link:hover {
    gap: 12px;
}

/* Services Section */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.service-icon {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.service-card p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Solutions Section */
.solutions-section {
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.solution-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(87, 161, 193, 0.05) 0%, transparent 70%);
    transform: translate(50%, -50%);
    transition: var(--transition);
}

body[dir="ltr"] .solution-card::before {
    right: auto;
    left: 0;
    transform: translate(-50%, -50%);
}

.solution-card:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

body[dir="ltr"] .solution-card:hover {
    transform: translateX(10px);
}

.solution-card:hover::before {
    width: 300px;
    height: 300px;
}

.solution-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    line-height: 1;
    transition: var(--transition);
}

.solution-card:hover .solution-number {
    color: var(--primary-color);
    -webkit-text-stroke: 0;
}

.solution-icon {
    margin-bottom: 20px;
}

.solution-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.solution-card p {
    line-height: 1.9;
    color: var(--text-gray);
    margin: 0;
}

/* Clients & Partners Section */
.clients-partners-section {
    background: var(--bg-white);
}

.cp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cp-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    margin-top: 60px;
}

.cp-subtitle:first-child {
    margin-top: 0;
}

.clients-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.client-card,
.partner-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.client-card::before,
.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.05) 0%, rgba(87, 161, 193, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
}

.client-card:hover,
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.client-card:hover::before,
.partner-card:hover::before {
    opacity: 1;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-placeholder img {
    max-width: 85%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.client-card:hover .logo-placeholder img,
.partner-card:hover .logo-placeholder img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.logo-text span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.client-card:hover .logo-text span,
.partner-card:hover .logo-text span {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.05rem;
}

.map-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
    transition: var(--transition);
}

.map-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(87, 161, 193, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 48px 0 24px;
}

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

.footer-brand {
    animation: fadeInUp 0.8s ease;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-links,
.footer-contact {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-light);
    margin-bottom: 24px;
    font-size: 1.4rem;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(-5px);
}

body[dir="ltr"] .footer-links a:hover {
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.news-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
}

.news-image.no-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    min-width: 70px;
}

body[dir="ltr"] .news-date-badge {
    right: auto;
    left: 20px;
}

.news-date-badge .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.news-date-badge .month {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-top: 4px;
}

.news-date-badge .year {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.news-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(87, 161, 193, 0.1) 0%, rgba(87, 161, 193, 0.05) 100%);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 2.8rem;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.news-link svg {
    transition: var(--transition);
}

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

body[dir="ltr"] .news-link:hover svg {
    transform: translateX(-4px);
}

.news-link.disabled {
    color: var(--text-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.news-image.no-image::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        padding: 40px 0;
        gap: 16px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    body[dir="ltr"] .nav-menu {
        left: auto;
        right: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    body[dir="ltr"] .nav-menu.active {
        left: auto;
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .solution-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .solution-number {
        font-size: 3rem;
    }

    /* Tablet Optimization */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .clients-grid,
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Medium Mobile Devices (Phones in landscape / Small tablets) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

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

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Navbar Mobile Optimization */
    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 60px;
    }

    .lang-toggle {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Splash Screen Mobile */
    .splash-logo {
        height: 100px;
    }

    .splash-logo-container {
        width: 200px;
        height: 200px;
    }

    .splash-logo-container::before,
    .splash-logo-container::after {
        width: 180px;
        height: 180px;
    }

    .splash-logo-container .splash-logo::before {
        width: 160px;
        height: 160px;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 16px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .hero-visual {
        display: none; /* Hide decorative elements on mobile to improve performance */
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 32px;
    }

    .section-label {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Cards Mobile Optimization */
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card,
    .service-card {
        padding: 24px 20px;
    }

    .product-card h3,
    .service-card h3 {
        font-size: 1.3rem;
        margin: 16px 0 8px;
    }

    .product-card p,
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .product-icon svg,
    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    /* VM Cards Mobile */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 24px 20px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .vm-icon svg {
        width: 32px;
        height: 32px;
    }

    .vm-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .vm-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-item {
        padding: 16px 20px;
    }

    /* Solutions Mobile */
    .solution-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .solution-number {
        font-size: 2.5rem;
    }

    .solution-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .solution-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Clients & Partners Mobile */
    .clients-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-card,
    .partner-card {
        padding: 16px;
        min-height: 100px;
    }

    .logo-placeholder img,
    .logo-text {
        max-height: 50px;
        font-size: 0.85rem;
    }

    /* News Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image {
        height: 200px;
    }

    .news-date-badge {
        top: 16px;
        right: 16px;
        padding: 10px 14px;
        min-width: 60px;
    }

    body[dir="ltr"] .news-date-badge {
        right: auto;
        left: 16px;
    }

    .news-date-badge .day {
        font-size: 1.5rem;
    }

    .news-date-badge .month {
        font-size: 0.75rem;
    }

    .news-content {
        padding: 20px 16px;
    }

    .news-title {
        font-size: 1.2rem;
        min-height: auto;
    }

    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contact Section Mobile */
    .contact-info-wrapper {
        gap: 16px;
        margin-bottom: 24px;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-info-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    /* Contact Form Mobile */
    .contact-form-wrapper {
        padding: 24px 20px;
    }

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

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .btn-full {
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-logo img {
        height: 60px;
        margin: 0 auto 16px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-links ul li,
    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding-top: 24px;
        margin-top: 32px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* Mobile Touch Optimization */
    .btn,
    .nav-link,
    a {
        min-height: 44px; /* iOS touch target size */
        display: inline-flex;
        align-items: center;
    }

    /* Reduce animations on mobile for better performance */
    .hero-shapes,
    .shape {
        animation-duration: 25s; /* Slower animations */
    }

    /* Better spacing for mobile readability */
    p {
        line-height: 1.7;
    }

    h1, h2, h3, h4 {
        line-height: 1.3;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Section Content Animations */
.product-card,
.service-card,
.solution-card,
.client-card,
.partner-card,
.vm-card,
.value-item,
.contact-info-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.section-visible .product-card,
section.section-visible .service-card,
section.section-visible .solution-card,
section.section-visible .client-card,
section.section-visible .partner-card,
section.section-visible .vm-card,
section.section-visible .value-item,
section.section-visible .contact-info-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Animation Delays */
section.section-visible .product-card:nth-child(1),
section.section-visible .service-card:nth-child(1),
section.section-visible .client-card:nth-child(1) {
    transition-delay: 0.4s;
}

section.section-visible .product-card:nth-child(2),
section.section-visible .service-card:nth-child(2),
section.section-visible .client-card:nth-child(2) {
    transition-delay: 0.5s;
}

section.section-visible .product-card:nth-child(3),
section.section-visible .service-card:nth-child(3),
section.section-visible .client-card:nth-child(3) {
    transition-delay: 0.6s;
}

section.section-visible .product-card:nth-child(4),
section.section-visible .service-card:nth-child(4),
section.section-visible .client-card:nth-child(4) {
    transition-delay: 0.7s;
}

section.section-visible .product-card:nth-child(5),
section.section-visible .service-card:nth-child(5),
section.section-visible .client-card:nth-child(5) {
    transition-delay: 0.8s;
}

section.section-visible .product-card:nth-child(6),
section.section-visible .service-card:nth-child(6),
section.section-visible .client-card:nth-child(6) {
    transition-delay: 0.9s;
}

section.section-visible .solution-card:nth-child(1) {
    transition-delay: 0.4s;
}

section.section-visible .solution-card:nth-child(2) {
    transition-delay: 0.5s;
}

section.section-visible .solution-card:nth-child(3) {
    transition-delay: 0.6s;
}

section.section-visible .solution-card:nth-child(4) {
    transition-delay: 0.7s;
}

section.section-visible .solution-card:nth-child(5) {
    transition-delay: 0.8s;
}

section.section-visible .vm-card:nth-child(1),
section.section-visible .value-item:nth-child(1),
section.section-visible .contact-info-card:nth-child(1) {
    transition-delay: 0.5s;
}

section.section-visible .vm-card:nth-child(2),
section.section-visible .value-item:nth-child(2),
section.section-visible .contact-info-card:nth-child(2) {
    transition-delay: 0.6s;
}

section.section-visible .value-item:nth-child(3),
section.section-visible .contact-info-card:nth-child(3) {
    transition-delay: 0.7s;
}

section.section-visible .value-item:nth-child(4),
section.section-visible .contact-info-card:nth-child(4) {
    transition-delay: 0.8s;
}

.about-content,
.about-values,
.contact-form-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.section-visible .about-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

section.section-visible .about-values {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

section.section-visible .contact-form-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.lead-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

section.section-visible .lead-text {
    opacity: 1;
    transform: translateY(0);
}

.cp-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.section-visible .cp-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Section Separator with Animation */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    transition: transform 0.8s ease 0.2s;
}

section.section-visible::before {
    transform: translateX(-50%) scaleX(1);
}

section.hero::before {
    display: none;
}

/* Smooth Section Transitions */
@media (prefers-reduced-motion: no-preference) {
    section {
        will-change: opacity, transform;
    }
}
