/* ===================================
   R-SMART - Awwwards Level Design
   Premium Modern Website Styles
   =================================== */

/* CSS Variables - Premium Color System (Logo Aligned) */
:root {
    /* Logo-Inspired Primary Colors */
    --primary-50: #faf5ff;
    --primary-100: #f3e8ff;
    --primary-200: #e9d5ff;
    --primary-300: #d8b4fe;
    --primary-400: #c084fc;
    --primary-500: #a855f7;
    --primary-600: #9333ea;
    --primary-700: #7e22ce;
    --primary-800: #6b21a8;
    --primary-900: #581c87;

    --primary: #8b31e8;
    --primary-dark: #6b21a8;
    --primary-light: #a855f7;

    /* Logo-Inspired Magenta/Pink */
    --secondary-50: #fdf2f8;
    --secondary-100: #fce7f3;
    --secondary-200: #fbcfe8;
    --secondary-300: #f9a8d4;
    --secondary-400: #f472b6;
    --secondary-500: #ec4899;
    --secondary-600: #db2777;
    --secondary-700: #be185d;

    --secondary: #e91e8c;
    --secondary-dark: #c2185b;
    --secondary-light: #f472b6;

    /* Accent Colors */
    --accent: #d946ef;
    --accent-light: #e879f9;
    --accent-dark: #a21caf;

    /* Success, Warning, Error */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Neutrals with Better Contrast */
    --dark: #0f0f1e;
    --dark-100: #1a1a2e;
    --dark-200: #2a2a44;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --bg-light: #fafbfc;
    --bg-lighter: #fcfcfd;

    /* Premium Gradients - Logo Inspired */
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #8b31e8 30%, #a855f7 60%, #e91e8c 100%);
    --gradient-secondary: linear-gradient(135deg, #8b31e8 0%, #e91e8c 100%);
    --gradient-purple: linear-gradient(135deg, #6b21a8 0%, #8b31e8 50%, #a855f7 100%);
    --gradient-pink: linear-gradient(135deg, #e91e8c 0%, #f472b6 50%, #f9a8d4 100%);
    --gradient-dark: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 50%, #2a2a44 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(139, 49, 232, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(233, 30, 140, 0.15) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.12) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.12) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(139, 49, 232, 0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 100%, rgba(233, 30, 140, 0.1) 0px, transparent 50%);
    
    /* Premium Shadows - Enhanced */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(139, 49, 232, 0.08), 0 1px 2px 0 rgba(139, 49, 232, 0.06);
    --shadow-md: 0 4px 8px -2px rgba(139, 49, 232, 0.1), 0 2px 4px -1px rgba(139, 49, 232, 0.06);
    --shadow-lg: 0 10px 20px -5px rgba(139, 49, 232, 0.12), 0 6px 8px -4px rgba(139, 49, 232, 0.08);
    --shadow-xl: 0 20px 30px -8px rgba(139, 49, 232, 0.15), 0 12px 15px -6px rgba(139, 49, 232, 0.08);
    --shadow-2xl: 0 30px 60px -15px rgba(139, 49, 232, 0.25), 0 15px 25px -8px rgba(233, 30, 140, 0.15);
    --shadow-3xl: 0 40px 80px -20px rgba(139, 49, 232, 0.3), 0 20px 35px -10px rgba(233, 30, 140, 0.2);
    --shadow-glow: 0 0 30px rgba(139, 49, 232, 0.35), 0 0 15px rgba(233, 30, 140, 0.25);
    --shadow-glow-lg: 0 0 60px rgba(139, 49, 232, 0.45), 0 0 30px rgba(233, 30, 140, 0.35);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Glassmorphism - Enhanced */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-light: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(139, 49, 232, 0.12), 0 4px 16px 0 rgba(233, 30, 140, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.15);
    
    /* Premium Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.2s var(--ease-out-expo);
    --transition: all 0.4s var(--ease-out-expo);
    --transition-slow: all 0.6s var(--ease-in-out-expo);
    --transition-bounce: all 0.5s var(--ease-spring);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.bg-light {
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

/* Navigation - Premium Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 0 rgba(168, 85, 247, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px 0 rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Carousel - Premium Design */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s var(--ease-in-out-expo);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(126, 34, 206, 0.12) 0%, 
        rgba(168, 85, 247, 0.08) 25%, 
        rgba(192, 132, 252, 0.06) 50%, 
        rgba(236, 72, 153, 0.08) 75%, 
        rgba(244, 114, 182, 0.12) 100%);
    animation: gradientShift 20s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 30s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    top: -300px;
    right: -300px;
    opacity: 0.3;
    animation: float 25s infinite ease-in-out, pulse 5s infinite ease-in-out;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    bottom: -250px;
    left: -250px;
    opacity: 0.3;
    animation-delay: -8s;
    animation: float 30s infinite ease-in-out, pulse 6s infinite ease-in-out;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
    animation-delay: -15s;
    animation: float 35s infinite ease-in-out, pulse 7s infinite ease-in-out;
}

.shape-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    top: 20%;
    right: 20%;
    opacity: 0.2;
    animation-delay: -20s;
    animation: float 28s infinite ease-in-out, pulse 5.5s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(60px, -60px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-40px, 40px) rotate(180deg) scale(0.95); }
    75% { transform: translate(50px, 50px) rotate(270deg) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.15); }
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.4s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    color: var(--gray-600);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.6s both;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.8s both;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2) translateY(-50%);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-indicators .indicator.active {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    border-radius: 25px;
    border-color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--dark);
    border-radius: 16px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--dark);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

/* Section Headers - Premium */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Features Grid - 4-2 Premium Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.feature-card:hover::after {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 245, 255, 0.9) 100%);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.feature-card:hover .feature-icon::before {
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover::after {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.3);
}

.service-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.service-card:hover .service-image {
    transform: scale(1.2) rotate(360deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.service-card:hover .service-image::before {
    animation: shine 2s infinite;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.service-link:hover {
    gap: 1.25rem;
    color: var(--primary-dark);
}

.service-link:hover::after {
    width: 100%;
}

/* Services Detail */
.services-detail {
    padding: 8rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.service-detail-card {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.06), transparent);
    transition: var(--transition-slow);
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.3);
}

.service-detail-icon {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-detail-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.service-detail-card:hover .service-detail-icon::after {
    width: 250px;
    height: 250px;
}

.service-detail-title {
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-detail-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.875rem 0;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.7;
}

.service-features i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Stats Section - Premium */
.stats {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 4rem 2.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--white);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Testimonials - Premium */
.testimonials {
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s var(--ease-out-expo);
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 5rem 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(168, 85, 247, 0.2);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.testimonial-quote {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.25;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.15) rotate(360deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.author-role {
    font-size: 1rem;
    color: var(--gray-600);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-prev,
.testimonial-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.testimonial-indicators {
    display: flex;
    gap: 1rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-indicators .indicator.active {
    background: var(--primary);
    width: 40px;
    border-radius: 20px;
}

/* Partners Carousel */
.partners-carousel {
    display: flex;
    gap: 3.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 3rem 0;
    animation: scrollPartners 35s linear infinite;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-slide {
    flex: 0 0 auto;
    width: 220px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.12), transparent);
    transition: var(--transition-slow);
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-12px) scale(1.06);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 1);
}

.partner-logo i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: var(--transition-bounce);
}

.partner-logo:hover i {
    transform: scale(1.25) rotate(8deg);
}

.partner-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* CTA Section - Premium */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: backgroundMove 25s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(255, 255, 255, 0.4);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: backgroundMove 25s linear infinite;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

/* About Section */
.about-content {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 1.15rem;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    opacity: 0.85;
    box-shadow: var(--shadow-xl);
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

.mv-card {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.mv-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.mv-title {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.mv-description {
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.value-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.member-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.contact-description {
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 1rem;
}

.contact-social {
    margin-top: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Footer - Premium */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 6rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.4;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    background: transparent;
    border-color: var(--primary);
    transform: translateY(-6px) scale(1.15);
    box-shadow: var(--shadow-glow);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    font-size: 1rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Animations - Premium AOS */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Notification System */
.notification {
    position: fixed;
    top: 120px;
    right: 2rem;
    background: var(--white);
    color: var(--dark);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: 10000;
    transform: translateX(450px);
    transition: transform 0.4s var(--ease-out-expo);
    border-left: 5px solid var(--primary);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-warning {
    border-left-color: #f59e0b;
}

/* Responsive Design - Enhanced Premium */

/* Extra Large Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 8rem;
    }

    .section-title {
        font-size: 5.5rem;
    }
}

/* Large Screens */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 6rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-padding {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-2xl);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        padding: 1rem 0;
    }

    .hero-carousel {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .hero-controls {
        padding: 0 1.5rem;
    }

    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 3rem 2rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .services-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 3rem 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .testimonial-card {
        padding: 3rem 2rem;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .partners-carousel {
        gap: 2rem;
    }

    .partner-slide {
        width: 180px;
        height: 110px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-wrapper {
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .social-links {
        justify-content: center;
    }

    .page-header {
        padding: 140px 0 100px;
    }

    .page-title {
        font-size: 3rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .hero-carousel {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-indicators {
        bottom: 30px;
        gap: 0.75rem;
    }

    .scroll-indicator {
        bottom: 80px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 3rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .feature-card,
    .service-card,
    .service-detail-card {
        padding: 2.5rem 2rem;
    }

    .feature-icon,
    .service-image {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title,
    .service-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.75rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .author-avatar {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .page-header {
        padding: 120px 0 80px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .value-card,
    .mv-card {
        padding: 3rem 2rem;
    }

    .team-member {
        padding: 2rem 1.75rem;
    }

    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }

    .notification {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 110px 0 70px;
    }

    .page-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .feature-card,
    .service-card,
    .nav-menu a {
        -webkit-tap-highlight-color: transparent;
    }

    .hero-prev,
    .hero-next,
    .testimonial-prev,
    .testimonial-next {
        width: 55px;
        height: 55px;
    }

    /* Increase touch targets */
    .social-links a {
        min-width: 48px;
        min-height: 48px;
    }

    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 0.75rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 20px 30px -8px rgba(0, 0, 0, 0.35);
    }

    .btn {
        border-width: 3px;
    }
}

/* Dark Mode Preference */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode support if needed */
}

/* Smooth Scrollbar - Enhanced */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
    border-color: var(--gray-200);
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: var(--transition);
}

.skip-to-main:focus {
    top: 20px;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(139, 49, 232, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 40px rgba(233, 30, 140, 0.6);
    }
}

/* Floating Animation */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Card Tilt Effect */
.card-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(10px);
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gradient-text-animated {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Modern Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Alert/Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border-left: 4px solid var(--primary);
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.4s var(--ease-out-expo);
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Improved Backdrop Filter Support */
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
    .glass-effect {
        background: var(--glass-bg-light);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--glass-border);
    }
}

/* Enhanced Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MODERN BENTO GRID LAYOUT
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 49, 232, 0.08);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(139, 49, 232, 0.2);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: float-gentle 6s ease-in-out infinite;
}

.bento-icon-sm {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.bento-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-title-sm {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.bento-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

.bento-description-sm {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bento-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
}

.bento-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bento-stat-item {
    text-align: center;
}

.bento-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.bento-stat-label {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}

.bento-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    font-weight: 500;
}

.bento-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 49, 232, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 49, 232, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.tech-card:hover::after {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.tech-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
}

.tech-card:hover .tech-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.tech-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.tech-desc {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-mesh-bg {
    background: var(--gradient-mesh);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 49, 232, 0.1);
    animation: float-gentle 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-label {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
}

.btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE BENTO GRID
   ============================================ */

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: 2rem;
    }

    .bento-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .bento-card {
        padding: 1.75rem;
    }

    .bento-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .bento-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }
}

/* ============================================
   MODERN CTA SECTION
   ============================================ */

.cta-modern {
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
    z-index: 0;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 49, 232, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(233, 30, 140, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
    z-index: 0;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.cta-badge-modern i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.cta-title-modern {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-subtitle-modern {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.cta-features-modern {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* ============================================
   MINIMALIST MODERN FOOTER
   ============================================ */

.footer-modern {
    background: var(--dark);
    color: var(--gray-300);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-modern-brand {
    max-width: 350px;
}

.footer-logo-modern {
    margin-bottom: 1.5rem;
}

.footer-logo-modern img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-modern-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-nav-group h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.footer-nav-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.875rem;
    transition: var(--transition);
}

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

.footer-social-modern {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-modern a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 0;
}

.footer-social-modern a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.footer-modern-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern-bottom p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal span {
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE CTA & FOOTER
   ============================================ */

@media (max-width: 1024px) {
    .footer-modern-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-modern-brand {
        max-width: 100%;
    }

    .footer-modern-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .cta-title-modern {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .cta-title-modern {
        font-size: 2.75rem;
    }

    .cta-subtitle-modern {
        font-size: 1.15rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-features-modern {
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-modern-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-modern-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-title-modern {
        font-size: 2.25rem;
    }

    .cta-subtitle-modern {
        font-size: 1.05rem;
    }

    .cta-badge-modern {
        font-size: 0.9rem;
        padding: 0.625rem 1.5rem;
    }

    .footer-modern {
        padding: 4rem 0 1.5rem;
    }
}

/* ============================================
   MODERN HERO SECTION - NO SLIDER
   ============================================ */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #2a2a44 100%);
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 49, 232, 0.8) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.6) 0%, transparent 70%);
    top: 40%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

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

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-modern-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-modern-subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.hero-modern-subtitle strong {
    color: var(--white);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-modern-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-modern-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
}

.btn-modern-primary i {
    transition: var(--transition);
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}

.btn-modern-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-modern-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.hero-modern-tags {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-modern-tags .tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-modern-tags .tag i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Hero Visual Cards */
.hero-modern-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
    animation: float-gentle 6s ease-in-out infinite;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-3xl), var(--shadow-glow);
}

.card-1 {
    width: 320px;
    top: 50px;
    left: 0;
    z-index: 3;
    animation-delay: 0s;
}

.card-2 {
    width: 320px;
    top: 180px;
    right: 0;
    z-index: 2;
    animation-delay: 2s;
}

.card-3 {
    width: 300px;
    bottom: 50px;
    left: 60px;
    z-index: 1;
    animation-delay: 4s;
}

.visual-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.visual-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.visual-card .card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.card-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: progress-fill 2s ease-out;
    box-shadow: 0 0 15px rgba(139, 49, 232, 0.6);
}

@keyframes progress-fill {
    from { width: 0%; }
}

.visual-floating-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
    animation: pulse-badge 3s ease-in-out infinite;
    z-index: 4;
}

.visual-floating-badge i {
    font-size: 1.5rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-2xl), 0 0 80px rgba(233, 30, 140, 0.6);
    }
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   RESPONSIVE MODERN HERO
   ============================================ */

@media (max-width: 1024px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-modern-visual {
        display: none;
    }

    .hero-modern-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-modern-title {
        font-size: 3.5rem;
    }

    .hero-modern-subtitle {
        font-size: 1.2rem;
    }

    .hero-modern-actions {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 640px) {
    .hero-modern-title {
        font-size: 2.75rem;
    }

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

    .hero-label {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .btn-modern {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }

    .hero-modern-tags {
        gap: 1rem;
    }

    .hero-modern-tags .tag {
        font-size: 0.875rem;
    }
}
