/*
 * PROTECT İSG - CORPORATE THEME STYLES
 * Professional Business Theme for Occupational Health & Safety
 */

/* ===============================
   CSS VARIABLES (Design Tokens)
   =============================== */
:root {
    /* Colors - Corporate Blue Palette */
    --primary-color: #1e40af;         /* Deep Blue */
    --primary-light: #3b82f6;         /* Blue 500 */
    --primary-dark: #1e3a8a;          /* Blue 800 */
    --secondary-color: #0ea5e9;       /* Sky Blue */
    --secondary-light: #38bdf8;       /* Sky 400 */
    --secondary-dark: #0284c7;        /* Sky 600 */

    /* Accent Colors */
    --accent-color: #059669;          /* Emerald 600 */
    --accent-light: #10b981;          /* Emerald 500 */
    --warning-color: #f59e0b;         /* Amber 500 */
    --danger-color: #dc2626;          /* Red 600 */
    --success-color: #059669;         /* Emerald 600 */

    /* Neutral Colors */
    --white: #ffffff;
    --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;

    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --text-inverse: var(--white);

    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --bg-dark: var(--gray-800);

    /* Border & Shadow */
    --border-color: var(--gray-200);
    --border-light: var(--gray-100);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-monospace: 'Menlo', 'Monaco', 'Consolas', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Spacing */
    --space-px: 1px;
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */

    /* Border Radius */
    --radius-sm: 0.125rem;   /* 2px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Layout */
    --container-padding: var(--space-4);
    --header-height: 80px;
    --header-top-height: 40px;

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1010;
    --z-fixed: 1020;
    --z-modal-backdrop: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    --z-toast: 1070;
}

/* ===============================
   RESET & BASE STYLES
   =============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: var(--leading-normal);
    scroll-behavior: smooth;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: var(--font-semibold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

ul, ol {
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

li {
    margin-bottom: var(--space-2);
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-white { background-color: var(--white); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===============================
   BUTTON COMPONENTS
   =============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    user-select: none;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--white);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--gray-300);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* ===============================
   ULTRA-MODERN HEADER STYLES
   =============================== */

/* Header Variables */
:root {
    --header-height: 95px;
    --header-top-height: 48px;
    --header-blur: 25px;
    --header-opacity: 0.95;
    --header-glass-bg: rgba(255, 255, 255, 0.85);
    --header-border: rgba(255, 255, 255, 0.2);
}

/* Ultra-Modern Header */
.ultra-modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    backdrop-filter: blur(var(--header-blur));
    -webkit-backdrop-filter: blur(var(--header-blur));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Top Bar - Enhanced */
.header-top {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    color: white;
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-info {
    display: flex;
    gap: var(--space-8);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    opacity: 0.95;
    transition: opacity var(--transition-fast);
}

.info-item:hover {
    opacity: 1;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.info-text {
    font-size: var(--text-sm);
}

.header-social {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 var(--space-2);
}

.language-selector {
    display: flex;
    gap: var(--space-1);
}

.lang-button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-button.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Header with Glassmorphism */
.header-main {
    padding: 0;
    position: relative;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    height: var(--header-height);
    overflow: visible;
}

.header-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(var(--header-blur));
    -webkit-backdrop-filter: blur(var(--header-blur));
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    position: relative;
    z-index: 2;
    height: var(--header-height);
}

/* Enhanced Logo Section */
.logo-section {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-link:hover .logo-glow {
    opacity: 0.3;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    position: relative;
    z-index: 2;
}

.shield-layers {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer {
    position: absolute;
    border-radius: var(--radius-xl);
    animation: pulse 2s infinite;
}

.shield-outer {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        rgba(30, 64, 175, 0.2),
        rgba(14, 165, 233, 0.2));
    animation-delay: 0s;
}

.shield-middle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,
        rgba(30, 64, 175, 0.3),
        rgba(14, 165, 233, 0.3));
    animation-delay: 0.5s;
}

.shield-inner {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 3;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-lg);
}

.logo-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    margin: 0;
    line-height: 1;
}

.brand-primary {
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(30, 64, 175, 0.2));
}

.brand-tagline {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}

/* Enhanced Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0.1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-mega-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Ultra-Modern Mega Dropdown */
.has-mega-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    width: 1024px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mega-dropdown-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.02) 0%,
        rgba(16, 185, 129, 0.02) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.has-mega-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-header {
    padding: 24px 32px 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.05) 0%,
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 20px 20px 0 0;
}

.dropdown-main-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.dropdown-content {
    padding: 24px 32px 32px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 32px;
    align-items: start;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.title-icon {
    font-size: 1rem;
}

.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(16, 185, 129, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.dropdown-link:hover::before {
    opacity: 1;
}

.dropdown-link:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.link-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.link-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.dropdown-link:hover .link-icon-wrapper::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.link-icon {
    font-size: 1.25rem;
    color: white;
    z-index: 1;
    position: relative;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.link-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.link-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
}

.link-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    width: fit-content;
}

.dropdown-featured {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.05) 0%,
        rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}

.featured-card {
    text-align: center;
}

.featured-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.featured-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px 0;
}

.featured-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mega-dropdown {
        position: fixed;
        top: 60px !important;
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        transform: none !important;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .has-mega-dropdown:hover .mega-dropdown {
        transform: none !important;
    }

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

    .dropdown-header,
    .dropdown-content {
        padding: 20px;
    }
}

.link-desc {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Modern Button */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.btn-modern.btn-primary:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

/* Mobile Toggle & Hamburger - Ultra Modern */
.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.15));
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.mobile-toggle.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hamburger {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    width: 100%;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.mobile-toggle.active .line {
    background: white;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Ultra Modern Hamburger Animation States */
.mobile-toggle.active .hamburger .line-1 {
    transform: rotate(45deg) translate(8px, 7px) scaleX(1.05);
}

.mobile-toggle.active .hamburger .line-2 {
    opacity: 0;
    transform: scale(0) translateX(-10px);
}

.mobile-toggle.active .hamburger .line-3 {
    transform: rotate(-45deg) translate(8px, -8px) scaleX(1.05);
}

.toggle-line {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
/* Ultra Modern Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

.mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.open .mobile-overlay {
    opacity: 1;
}

/* Ultra Modern Mobile Panel */
.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        #ffffff 0%,
        #f8fafc 50%,
        #e2e8f0 100%);
    border-left: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow:
        -20px 0 80px rgba(0, 0, 0, 0.35),
        -10px 0 40px rgba(37, 99, 235, 0.15),
        inset -1px 0 1px rgba(255, 255, 255, 0.5);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    /* display: flex; */
    flex-direction: column;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

/* Ultra Modern Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.mobile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    animation: shimmerMobile 3s infinite;
}

@keyframes shimmerMobile {
    0% { left: -100%; }
    100% { left: 100%; }
}

.mobile-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.mobile-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.mobile-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-close:hover::before {
    opacity: 1;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08) rotate(90deg);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav {
    padding: var(--space-8);
    background: linear-gradient(180deg,
        #ffffff 0%,
        #f8fafc 50%,
        #f0f4f8 100%);
    min-height: calc(100% - 80px);
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-link {
    display: flex;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(248, 250, 252, 0.6) 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(37, 99, 235, 0.2),
        transparent);
    transition: left 0.5s ease;
}

.mobile-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    border-radius: 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-link:hover {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        rgba(37, 99, 235, 0.9) 100%);
    color: white;
    transform: translateX(12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.mobile-link:hover::before {
    left: 100%;
}

.mobile-link:hover::after {
    transform: scaleY(1);
}

.mobile-link:active {
    transform: translateX(10px) scale(0.98);
}

.mobile-dropdown {
    margin-bottom: var(--space-4);
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(248, 250, 252, 0.6) 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    margin-bottom: var(--space-3);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.3px;
    overflow: hidden;
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(37, 99, 235, 0.15),
        transparent);
    transition: left 0.5s ease;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.mobile-dropdown.open .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle:hover {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        rgba(37, 99, 235, 0.9) 100%);
    color: white;
    transform: translateX(12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.mobile-dropdown-toggle:hover::before {
    left: 100%;
}

.mobile-dropdown-toggle:hover::after {
    color: white;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0 var(--space-3);
}

.mobile-dropdown.open .mobile-dropdown-content {
    max-height: 500px;
    padding: var(--space-4) var(--space-3);
}

.mobile-sub-link {
    display: block;
    padding: var(--space-4) var(--space-5);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg,
        rgba(241, 245, 249, 0.6) 0%,
        rgba(226, 232, 240, 0.4) 100%);
    margin: var(--space-2) 0;
    border-radius: 14px;
    border-left: 4px solid rgba(37, 99, 235, 0.3);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.mobile-sub-link::before {
    content: '→';
    position: absolute;
    right: var(--space-4);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-sub-link:hover {
    color: white;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        rgba(37, 99, 235, 0.8) 100%);
    transform: translateX(14px);
    border-left-color: var(--secondary-color);
    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.mobile-sub-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-cta {
    margin-top: var(--space-8);
    padding: var(--space-8);
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(14, 165, 233, 0.06) 50%,
        rgba(5, 150, 105, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow:
        0 12px 40px rgba(37, 99, 235, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: var(--space-6) var(--space-4) var(--space-4);
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
    animation: mobileCTAGradient 8s ease-in-out infinite;
}

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

.mobile-cta .btn-modern {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        #3b82f6 50%,
        var(--secondary-color) 100%) !important;
    border: none;
    padding: var(--space-4) var(--space-8);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
    font-size: 1.05rem;
}

.mobile-cta .btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.5s ease;
}

.mobile-cta .btn-modern:hover::before {
    left: 100%;
}

.mobile-cta .btn-modern:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(37, 99, 235, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta .btn-modern:active {
    transform: translateY(-2px) scale(0.98);
}

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

/* Body Padding for Fixed Header */
body {
    padding-top: calc(var(--header-top-height) + var(--header-height));
}

/* Mobile Menu Open State */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.mobile-menu-open .ultra-modern-header {
    z-index: 1000;
}

body.mobile-menu-open .main-content,
body.mobile-menu-open .ultra-modern-footer {
    filter: blur(3px) brightness(0.7);
    transition: filter 0.4s ease;
    pointer-events: none;
}

body.mobile-menu-open .modern-header {
    filter: blur(2px);
    transition: filter 0.4s ease;
}

/* ===============================
   RESPONSIVE HEADER
   =============================== */
@media (max-width: 1024px) {
    .header-info {
        gap: var(--space-4);
    }

    .info-item:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    body {
        padding-top: var(--header-height);
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-actions {
        gap: var(--space-2);
        align-items: center;
    }

    .header-actions .btn-modern {
        display: none; /* Portal button'u mobile'da gizle */
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .header-main {
        padding: var(--space-3) 0;
    }

    .header-content {
        gap: var(--space-4);
    }

    .logo-brand {
        gap: var(--space-2);
    }
}

@media (max-width: 480px) {
    .mobile-panel {
        width: 100%;
        height: 100%;
    }

    .logo-brand {
        gap: var(--space-2);
    }

    .shield-icon {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .header-actions .mobile-toggle {
        margin-left: auto;
    }
}

/* ===============================
   MAIN CONTENT STYLES
   =============================== */
.main-content {
    min-height: calc(100vh - 200px);
    padding: var(--space-8) 0;
}

/* ===============================
   FOOTER STYLES
   =============================== */
.corporate-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    margin-top: var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-col p,
.footer-col a {
    color: var(--gray-300);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: var(--space-6) 0;
    text-align: center;
    color: var(--gray-400);
    font-size: var(--text-sm);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
    }

    .main-navigation {
        flex-direction: column;
        gap: var(--space-4);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--space-2);
    }

    .nav-actions {
        margin-left: 0;
        width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }

    .header-top-content {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: var(--space-3);
        --space-8: 1.5rem;
        --space-12: 2rem;
        --space-16: 2.5rem;
    }

    .main-content {
        padding: var(--space-6) 0;
    }

    .brand-text .brand-name {
        font-size: var(--text-xl);
    }

    .nav-link {
        padding: var(--space-3);
        text-align: center;
    }
}

/* ===============================
   ACCESSIBILITY & PRINT STYLES
   =============================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .corporate-header,
    .corporate-footer,
    .nav-actions,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ===============================
   ULTRA-MODERN FOOTER STYLES
   =============================== */

.ultra-modern-footer {
    background: linear-gradient(135deg,
        var(--gray-900) 0%,
        var(--gray-800) 50%,
        var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ultra-modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
}

/* Main Footer Content */
.footer-main {
    padding: var(--space-20) 0 var(--space-16);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start;
}

/* Company Section */
.footer-company {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: var(--space-6);
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-4);
}

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

.logo-glow-footer {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    opacity: 0.2;
    filter: blur(10px);
    z-index: -1;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-brand-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    position: relative;
}

.shield-footer {
    font-size: 1.5rem;
    color: white;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin: 0;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-medium);
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.stat-item {
    text-align: center;
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-number {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.title-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav-item {
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    transition: left 0.5s ease;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.link-icon {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-link:hover .link-icon {
    opacity: 1;
}

.link-text {
    flex: 1;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--leading-relaxed);
}

.contact-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Newsletter Signup */
.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    color: var(--white);
}

.newsletter-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.input-group {
    display: flex;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: var(--space-3) var(--space-4);
    color: var(--white);
    font-size: var(--text-sm);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    padding: var(--space-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    min-width: 48px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--accent-color));
    transform: scale(1.05);
}

/* Social & Certifications Bar */
.footer-social-bar {
    background: linear-gradient(135deg,
        rgba(15, 15, 35, 0.6) 0%,
        rgba(37, 99, 235, 0.08) 50%,
        rgba(5, 150, 105, 0.06) 100%);
    border-top: 2px solid rgba(37, 99, 235, 0.2);
    border-bottom: 2px solid rgba(14, 165, 233, 0.15);
    padding: var(--space-12) 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-social-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent);
    animation: shimmerFooter 6s infinite;
}

@keyframes shimmerFooter {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.social-bar-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-links-enhanced {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.social-title {
    font-size: var(--text-base);
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links-grid {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.social-link-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-link-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.5s ease;
}

.social-link-enhanced:hover::before {
    left: 100%;
}

.social-link-enhanced:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link-enhanced.linkedin:hover {
    background: linear-gradient(135deg, #0077B5, #005885);
    border-color: #0077B5;
    color: white;
    box-shadow:
        0 12px 30px rgba(0, 119, 181, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-enhanced.twitter:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    border-color: #1DA1F2;
    color: white;
    box-shadow:
        0 12px 30px rgba(29, 161, 242, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-enhanced.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
    border-color: #E4405F;
    color: white;
    box-shadow:
        0 12px 30px rgba(228, 64, 95, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-enhanced.youtube:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-color: #FF0000;
    color: white;
    box-shadow:
        0 12px 30px rgba(255, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-enhanced.contact:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--secondary-color);
    color: white;
    box-shadow:
        0 12px 30px rgba(14, 165, 233, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.social-link-enhanced:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

.social-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Certifications */
.certifications {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-5);
}

.cert-title {
    font-size: var(--text-base);
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    min-width: auto;
}

.cert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent);
    transition: left 0.5s ease;
}

.cert-badge:hover::before {
    left: 100%;
}

.cert-badge:hover {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.3),
        rgba(14, 165, 233, 0.2));
    transform: translateY(-4px) scale(1.08);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.cert-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cert-badge:hover .cert-icon {
    transform: scale(1.15) rotate(-5deg);
}

.cert-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6);
    align-items: center;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.copyright-text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.developed-by {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: var(--font-medium);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.footer-bottom-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
}

.footer-bottom-link:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
}

.back-to-top-wrapper {
    display: flex;
    justify-content: flex-end;
}

.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.back-to-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.back-to-top:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover::after {
    width: 100px;
    height: 100px;
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow:
        0 16px 40px rgba(30, 64, 175, 0.5),
        0 8px 16px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 8px 20px rgba(30, 64, 175, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-top svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pulse animation for attention */
@keyframes backToTopPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(30, 64, 175, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(30, 64, 175, 0.5),
            0 0 20px rgba(30, 64, 175, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.back-to-top.pulse {
    animation: backToTopPulse 2s infinite;
}

/* Smooth fade in animation */
@keyframes backToTopFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px) scale(0.5) rotate(180deg);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.back-to-top.animate-in {
    animation: backToTopFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }

    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: var(--space-6);
    }

    .social-bar-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .social-links-enhanced {
        align-items: center;
    }

    .social-links-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .social-link-enhanced {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .social-label {
        display: none;
    }

    .certifications {
        align-items: center;
    }

    .cert-badges {
        justify-content: center;
        gap: var(--space-2);
    }

    .cert-badge {
        padding: var(--space-2) var(--space-3);
    }

    .cert-text {
        font-size: var(--text-2xs);
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

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

    .social-links-grid {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cert-badges {
        justify-content: center;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: center;
    }

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

    .back-to-top-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: var(--space-12) 0 var(--space-8);
    }

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

    .social-links-grid {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
        flex-wrap: wrap;
    }

    .social-link-enhanced {
        padding: var(--space-2) var(--space-2);
        min-width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        border-radius: 12px;
    }

    .social-label {
        display: none !important;
    }

    .social-icon {
        width: 18px;
        height: 18px;
        font-size: 16px;
    }

    .social-title {
        font-size: var(--text-sm);
    }

    .cert-badges {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
        flex-wrap: wrap;
    }

    .cert-badge {
        padding: var(--space-2) var(--space-2);
        min-width: 50px;
        gap: var(--space-1);
        border-radius: 12px;
    }

    .cert-text {
        font-size: 10px;
        white-space: nowrap;
    }

    .cert-icon {
        font-size: 1.2rem;
    }

    .cert-title {
        font-size: var(--text-sm);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-2);
    }

    .footer-social-bar {
        padding: var(--space-8) 0;
    }
}

/* =================================================================
   MODERN FORM STYLES - Teklif Al & Demo Pages
   ================================================================= */

/* Form Wrapper */
.quote-form-wrapper, .demo-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.section-icon {
    font-size: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Form Inputs */
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

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

/* Custom Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.checkbox-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.02);
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: white;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.checkbox-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.note-icon {
    font-size: 1rem;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
}

/* Benefits Section */
.quote-benefits {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.02) 0%,
        rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Contact Card */
.contact-card {
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.08);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

.email-btn {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-color: rgba(37, 99, 235, 0.2);
}

.email-btn:hover {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.trust-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
    font-size: 1rem;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.trust-icon {
    font-size: 1.25rem;
}

.trust-text {
    color: var(--text-inverse);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .quote-form-wrapper, .demo-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .contact-buttons {
        gap: 8px;
    }

    .quote-sidebar {
        gap: 24px;
    }

    .quote-benefits, .contact-card, .trust-indicators {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.125rem;
    }
}

/* ===============================
   ULTRA-MODERN HERO SECTION
   =============================== */

/* Hero Section Container */
.ultra-modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000011;
}

/* Background Layers */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-gradient {
    background: linear-gradient(135deg,
        #000011 0%,
        #1a1a3e 20%,
        #2563eb 40%,
        #0ea5e9 70%,
        #10b981 100%
    );
    z-index: 1;
}

.hero-bg-particles {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"%3E%3Cdefs%3E%3CradialGradient id="particle"%3E%3Cstop offset="0" stop-color="%23ffffff" stop-opacity=".3"/%3E%3Cstop offset="1" stop-color="%23ffffff" stop-opacity="0"/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx="100" cy="150" r="40" fill="url(%23particle)"%3E%3CanimateTransform attributeName="transform" type="translate" values="0,0;800,0;0,0" dur="30s" repeatCount="indefinite"/%3E%3C/circle%3E%3Ccircle cx="900" cy="400" r="60" fill="url(%23particle)"%3E%3CanimateTransform attributeName="transform" type="translate" values="0,0;-800,300;0,0" dur="25s" repeatCount="indefinite"/%3E%3C/circle%3E%3Ccircle cx="200" cy="800" r="35" fill="url(%23particle)"%3E%3CanimateTransform attributeName="transform" type="translate" values="0,0;600,-400;0,0" dur="20s" repeatCount="indefinite"/%3E%3C/circle%3E%3C/svg%3E');
    opacity: 0.6;
    animation: particleFloat 20s linear infinite;
    z-index: 2;
}

.hero-bg-neural {
    background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 52%);
    background-size: 80px 80px, 120px 120px;
    animation: neuralMove 25s linear infinite;
    z-index: 3;
}

.hero-bg-mesh {
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    z-index: 4;
}

/* Hero Content Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
    min-height: 80vh;
}

/* Hero Content Styles */
.hero-content {
    color: var(--text-inverse);
    position: relative;
    z-index: 200;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-content * {
    visibility: visible !important;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: var(--space-3) var(--space-5);
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
    font-weight: 700;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-indicator {
    width: 12px;
    height: 12px;
    background: var(--success-color);
    border-radius: 50%;
    animation: trustPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

.trust-badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: trustShine 3s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(1rem, 8vw, 3rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: var(--space-6);
    display: flex !important;
    flex-direction: column;
    gap: var(--space-2);
    position: relative;
    z-index: 100;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff;
    width: 100%;
}

.title-line {
    display: flex !important;
    gap: var(--space-4);
    flex-wrap: wrap;
    min-height: 1em;
    position: relative;
    z-index: 100;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff;
    width: 100%;
}

.word-animate {
    display: inline-block;
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.3s ease;
    color: inherit;
    /* Animation is optional and will only run if supported */
}

/* Animation states - only apply to elements that should animate */
.word-animate.animate-in {
    animation: wordSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.word-animate:nth-child(1).animate-in {
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
}
.word-animate:nth-child(2).animate-in {
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(30px);
}
.word-animate:nth-child(3).animate-in {
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
}
.word-animate:nth-child(4).animate-in {
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateY(30px);
}

.title-line-1 .word-animate {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Strong fallback */
}

/* Ensure gradient text is always visible */
@supports not (-webkit-background-clip: text) {
    .title-line-1 .word-animate {
        color: #ffffff !important;
        background: none !important;
        -webkit-text-fill-color: inherit !important;
    }
}

.gradient-text {
    color: #10b981 !important;
    background: linear-gradient(135deg, #10b981 0%, #06d6a0 30%, #0ea5e9 70%, #ffffff 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Strong fallback for gradient text */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        color: #10b981 !important;
        background: none !important;
        -webkit-text-fill-color: inherit !important;
    }
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.desc-icon {
    font-size: 1.2em;
    margin-right: var(--space-2);
}

.highlight-stat {
    color: var(--success-color);
    font-weight: 800;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card[data-tech="ai"]:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.feature-card[data-tech="vr"]:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.feature-card[data-tech="iot"]:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-text {
    font-weight: 600;
    font-size: var(--text-sm);
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.btn-hero {
    position: relative;
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #ffffff, #dbeafe);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero:hover .btn-glow {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="20" cy="30" r="1" fill="%23ffffff" opacity="0.6"%3E%3Canimate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/%3E%3C/circle%3E%3Ccircle cx="80" cy="70" r="1" fill="%23ffffff" opacity="0.4"%3E%3Canimate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/%3E%3C/circle%3E%3C/svg%3E');
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-particles {
    opacity: 1;
}

.btn-icon {
    font-size: 1.1em;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-6);
}

.stat-card {
    text-align: center;
    position: relative;
    padding: var(--space-4);
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: var(--space-1);
    background: linear-gradient(135deg, #10b981, #0ea5e9, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: statGlow 2s ease-in-out infinite alternate;
}

.stat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
}

.stat-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #0ea5e9);
    border-radius: 1px;
    animation: progressFill 3s ease-out;
}

.stat-card[data-count="500"] .stat-progress::after {
    width: 85%;
}

.stat-card[data-count="99.9"] .stat-progress::after {
    width: 99%;
}

.stat-card[data-count="24"] .stat-progress::after {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-container {
    position: relative;
    z-index: 5;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    padding: var(--space-6);
    color: white;
}

.overlay-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.2));
    border-radius: 32px;
    filter: blur(20px);
    opacity: 0.6;
    animation: imageGlow 4s ease-in-out infinite;
    z-index: -1;
}

/* Tech Badges */
.tech-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
}

.tech-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: var(--space-4) var(--space-5);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
}

.tech-badge-1 {
    top: -20px;
    left: -10px;
    animation: float 4s ease-in-out infinite;
}

.tech-badge-2 {
    bottom: -60px;
    right: -10px;
    animation: float 4s ease-in-out infinite 2s;
}

.tech-badge-3 {
    top: 40%;
    right: -10px;
    animation: float 4s ease-in-out infinite 1s;
}

.badge-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tech-badge[data-tech="ai"] .badge-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.tech-badge[data-tech="iot"] .badge-icon {
    background: linear-gradient(135deg, #10b981, #06d6a0);
}

.tech-badge[data-tech="vr"] .badge-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.badge-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.badge-subtitle {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.badge-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--success-color);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Interactive Dots */
.interactive-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff, rgba(255,255,255,0.3));
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255,255,255,0.7);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

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

.scroll-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes trustPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

@keyframes trustShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes wordSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .word-animate {
        animation: none;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes neuralMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, -120px 120px; }
}

@keyframes statGlow {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.2) saturate(1.3); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: var(--final-width); }
}

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

@keyframes imageGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

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

@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 12px; opacity: 0.5; }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-12);
    }

    .tech-badge-1, .tech-badge-2, .tech-badge-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .hero-container {
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .title-line {
        justify-content: center;
    }

    .hero-description {
        font-size: var(--text-base);
        max-width: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .cta-container {
        justify-content: center;
        gap: var(--space-3);
    }

    .btn-hero {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }

    .image-frame {
        max-width: 100%;
        height: 300px;
        transform: none;
        border-radius: 20px;
    }

    .image-frame:hover {
        transform: scale(1.02);
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .trust-badge {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }

    .feature-card {
        padding: var(--space-3);
        gap: var(--space-2);
    }

    .feature-icon {
        font-size: 1.4rem;
    }

    .feature-text {
        font-size: var(--text-xs);
    }

    .btn-hero {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-xs);
        gap: var(--space-1);
    }

    .stats-grid {
        gap: var(--space-3);
    }

    .stat-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

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

    .image-frame {
        height: 250px;
        border-radius: 16px;
    }
}
