/* ===================================
   XYZ Technology Website - Styles
   Modern, Professional IT/SaaS Company
   =================================== */

/* === CSS Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Light Theme (Default) */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --secondary-light: #1e293b;
    --accent-color: #06b6d4;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Theme-specific colors */
    --body-bg: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --header-bg: #ffffff;
    --hero-gradient-start: #2563eb;
    --hero-gradient-end: #1e40af;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #f8fafc;
    --secondary-light: #e2e8f0;
    --accent-color: #06b6d4;
    --text-dark: #f8fafc;
    --text-medium: #cbd5e1;
    --text-light: #94a3b8;
    --bg-white: #1e293b;
    --bg-gray: #0f172a;
    --bg-dark: #020617;
    --border-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Theme-specific colors */
    --body-bg: #0a0f1e;
    --card-bg: #151b2e;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --header-bg: #0f1623;
    --hero-gradient-start: #4338ca;
    --hero-gradient-end: #1e1b4b;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
    overflow-x: hidden;
    width: 100%;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

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

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

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

/* === Header & Navigation === */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

[data-theme="dark"] .header {
    background: rgba(10, 15, 30, 0.9);
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(229, 231, 235, 0.8);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 15, 30, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(51, 65, 85, 0.8);
}

.navbar {
    padding: 0.5rem 0;
    min-height: 65px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: transparent;
}

[data-theme="dark"] .logo-icon {
    background-color: transparent;
}

.logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease;
}

/* Theme-aware logo styling */
[data-theme="light"] .logo-svg {
    filter: none;
}

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

.logo-text {
    font-size: 1.4rem;
    font-family: poppins, var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-suffix {
    font-weight: 500;
    color: var(--text-medium);
    font-size: 1.125rem;
    margin-left: 0.25rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .logo-text {
    color: var(--text-dark);
}

[data-theme="dark"] .logo-suffix {
    color: var(--text-light);
}

/* Responsive logo text */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-suffix {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-suffix {
        font-size: 0.875rem;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.08);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.12);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-light);
    background-color: rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .nav-link.active {
    color: var(--primary-light);
    background-color: rgba(99, 102, 241, 0.2);
}

/* Dropdown Icon */
.dropdown-icon {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Contact Button */
.btn-nav {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
    color: #ffffff !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    border: none;
}

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

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35) !important;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%) !important;
}

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

.btn-nav:active {
    transform: translateY(0);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1000;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 11;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.theme-toggle:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.theme-toggle:hover::before {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .menu-toggle {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.menu-toggle:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.menu-bar {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.theme-toggle:hover svg {
    fill: var(--primary-color);
}

/* Hide/show icons based on theme */
[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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;
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

/* Glass-morphism secondary button for hero section */
.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background-color: var(--card-bg);
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.btn-white:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    border-color: transparent;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--bg-white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-animated-shapes .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out;
}

.hero-animated-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

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

.hero-animated-shapes .shape-3 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, 10px) rotate(3deg);
    }
}

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

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

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff !important;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8) !important;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

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

.btn-secondary.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hero-stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-floating-card.card-1 {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: 35%;
    right: -8%;
    animation-delay: 1s;
}

.hero-floating-card.card-3 {
    bottom: 30%;
    left: -8%;
    animation-delay: 2s;
}

.hero-floating-card.card-4 {
    bottom: 5%;
    right: 0%;
    animation-delay: 1.5s;
}

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

.hero-floating-card .card-icon {
    font-size: 2rem;
    line-height: 1;
}

.hero-floating-card .card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

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

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

/* Old decorations - hide them */
.hero-decoration-left,
.hero-decoration-right {
    display: none;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: #ffffff !important;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 700px;
    margin: 0 auto;
}

/* === Section Styles === */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section * {
    opacity: 1 !important;
}

.alt-bg {
    background-color: var(--bg-gray);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Introduction Section === */
.introduction {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    max-width: 600px;
}

.intro-content h2 {
    opacity: 1 !important;
    color: var(--text-dark) !important;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    opacity: 1 !important;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

[data-theme="dark"] .stat-number {
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* === Services Grid === */
.services-overview {
    position: relative;
}

.services-decoration-left,
.services-decoration-right {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
}

.services-decoration-left {
    left: 0;
    top: 100px;
    max-width: 250px;
}

.services-decoration-right {
    right: 0;
    top: 100px;
    max-width: 250px;
}

.services-decoration-left img,
.services-decoration-right img {
    width: 100%;
    height: auto;
    display: block;
}

.services-overview .container {
    position: relative;
    z-index: 1;
}

.services-overview {
    background: var(--bg-gray);
}

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

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.service-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    display: none; /* Hide if image doesn't exist */
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

[data-theme="dark"] .service-title {
    color: var(--text-dark);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* === Featured Product === */
.featured-product {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-content {
    max-width: 600px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
}

[data-theme="dark"] .product-title {
    color: var(--text-dark);
}

.product-description {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    gap: 1rem;
}

.product-features li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-features li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 4px;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-mockup {
    width: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.product-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.mockup-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-content {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.mockup-sidebar {
    width: 80px;
    background: linear-gradient(180deg, #e0e7ff 0%, #ddd6fe 100%);
    border-radius: 8px;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-card {
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Remove decorations relying on images */
.services-decoration-left,
.services-decoration-right,
.footer-decoration {
    display: none;
}

/* === Service Detail Page === */
.industries {
    background: var(--bg-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.2) rotate(-10deg);
}

.industry-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

[data-theme="dark"] .industry-title {
    color: var(--text-dark);
}

.industry-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* === Why Choose Us === */
.why-choose {
    background: var(--bg-white);
}

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

.reason-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #3b82f6);
    border-radius: 20px 0 0 20px;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.reason-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.reason-card:hover::before {
    transform: scaleY(1);
}

.reason-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reason-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* === Call to Action === */
.cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.btn-white {
    background: white !important;
    color: #1e293b !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    background: #f8fafc !important;
}

/* === Services Detail Page === */
.service-detail-card {
    background-color: var(--card-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-2xl);
}

.service-icon-large {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    height: 100px;
    display: flex;
    align-items: center;
}

.service-icon-large img {
    max-height: 100%;
    width: auto;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.service-feature-heading {
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.service-features-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.service-features-list li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--text-secondary);
}

.service-features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-item {
    background-color: var(--bg-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.benefit-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* === Modern Services Grid === */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.service-card-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

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

.service-card-header {
    margin-bottom: var(--spacing-lg);
}

.service-icon-modern {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.service-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.service-desc-modern {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.service-features-modern {
    margin-bottom: var(--spacing-xl);
}

.features-title-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: 12px;
}

.features-title-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #6366f1, #3b82f6);
    border-radius: 2px;
}

.features-list-modern {
    list-style: none;
    padding: 0;
}

.features-list-modern li {
    padding: var(--spacing-sm) 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.features-list-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.features-list-modern li:hover {
    color: var(--text-dark);
}

.service-benefits-modern {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.benefit-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.2s ease;
}

.benefit-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
    transform: translateY(-2px);
}

/* Responsive adjustments for modern services */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .service-card-modern {
        padding: var(--spacing-xl);
    }
    
    .service-icon-modern {
        font-size: 48px;
    }
    
    .service-title-modern {
        font-size: 1.5rem;
    }
}

/* === Process Grid === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.process-step {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

/* === Modern Products Page === */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.product-card-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.product-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge-modern.featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.product-badge-modern.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-icon-modern {
    font-size: 64px;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.product-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.product-desc-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.product-features-modern {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.feature-item-modern {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.tag-modern {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* === Modern Industries Page === */
.industries-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.industry-card-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

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

.industry-icon-modern {
    font-size: 64px;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.industry-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.industry-desc-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.industry-solutions-modern {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.industry-solutions-modern li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.industry-solutions-modern li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.industry-benefits-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10b981;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: var(--spacing-md);
}

/* === Modern About Page === */
.about-intro-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.about-lead-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.stat-card-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.stat-icon-modern {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label-modern {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-content-modern {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-modern {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-grid-modern,
    .industries-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .product-card-modern,
    .industry-card-modern {
        padding: var(--spacing-xl);
    }
    
    .product-icon-modern,
    .industry-icon-modern {
        font-size: 48px;
    }
    
    .about-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.process-description {
    color: var(--text-secondary);
}

/* === Products Page Styles === */
.product-hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.product-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #ffffff !important;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.product-hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: #ffffff !important;
    font-weight: 800;
}

.product-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px;
    margin: 0 auto;
}

.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
}

.product-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.product-highlights {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.highlight-item {
    background-color: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.highlight-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.product-sidebar .product-info-card {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-md);
}

.product-info-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.product-info-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.product-info-list li:last-child {
    border-bottom: none;
}

/* === Features Grid Large === */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card-large {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

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

.feature-icon-wrapper {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card-description {
    color: var(--text-secondary);
}

/* === Products Showcase Section === */
.products-showcase {
    background-color: var(--bg-gray);
}

.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.product-showcase-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.product-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-color);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.product-card-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.product-card-badge.new {
    background: linear-gradient(135deg, var(--accent-color) 0%, #22d3ee 100%);
}

.product-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 700;
}

.product-card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.product-tag {
    background-color: var(--bg-gray);
    color: var(--text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

[data-theme="dark"] .product-tag {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.product-showcase-card:hover .product-card-link {
    transform: translateX(5px);
    display: inline-block;
}

/* === Industry Types Grid === */
.industry-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.industry-type-card {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.industry-type-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* === Pricing Grid === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background-color: var(--card-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

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

.pricing-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.pricing-amount {
    margin-bottom: var(--spacing-xl);
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* === Coming Soon Cards === */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.coming-soon-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
    position: relative;
    overflow: hidden;
}

.coming-soon-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.coming-soon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.coming-soon-card:hover .coming-soon-image img {
    transform: scale(1.05);
}

.coming-soon-card h3,
.coming-soon-card p {
    padding: 0 var(--spacing-xl);
}

.coming-soon-tag {
    display: inline-block;
    background-color: var(--warning-color);
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 var(--spacing-xl) var(--spacing-md);
}

.coming-soon-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

/* === Industries Detail Page === */
.industry-detail {
    padding: var(--spacing-2xl) 0;
}

.industry-content-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.industry-icon-large {
    font-size: 4rem;
}

.industry-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.industry-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.industry-subheading {
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.industry-solutions {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.solution-item {
    background-color: var(--bg-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.solution-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.industry-benefits {
    list-style: none;
}

.industry-benefits li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--text-secondary);
}

.industry-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.why-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.why-industry-card {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.why-industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* === About Page Styles === */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.mv-card {
    background-color: var(--card-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.mv-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.mv-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.mv-description {
    font-size: 1.125rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: var(--text-secondary);
}

.why-xyz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.why-xyz-item {
    background-color: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.why-xyz-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.why-xyz-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.why-xyz-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.stat-item-large {
    text-align: center;
    padding: var(--spacing-xl);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-label-large {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.stat-description {
    color: var(--text-secondary);
}

/* === Contact Page Styles === */
.contact-section {
    position: relative;
}

.contact-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 300px;
    opacity: 0.1;
    z-index: 0;
}

.contact-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.contact-form-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background-color: var(--body-bg);
    color: var(--text-primary);
}

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

.form-textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.contact-info-value {
    color: var(--text-secondary);
}

.contact-info-value-sub {
    color: var(--text-light);
    font-size: 0.875rem;
}

.contact-cta-box {
    background-color: var(--bg-gray);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-cta-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.contact-cta-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.why-contact-card {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.why-contact-icon {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: var(--spacing-md);
}

.why-contact-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.why-contact-description {
    color: var(--text-secondary);
}

/* === FAQ Section === */
.faq-grid {
    display: grid;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Footer === */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.footer-address-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.125rem;
    vertical-align: middle;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social-title {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* === Animations === */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* === Responsive Design === */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-wrapper {
        height: 350px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-item strong {
        font-size: 1.5rem;
    }
    
    .intro-grid,
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .intro-grid,
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: var(--spacing-sm);
    }
    
    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    /* Header Adjustments */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-wrapper {
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-suffix {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        flex-direction: column;
        background: #ffffff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        padding: 80px 20px 20px;
        gap: 0.5rem;
        align-items: stretch;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    [data-theme="dark"] .nav-menu {
        background: #16213e;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1rem 1.25rem !important;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    /* Hide decorative elements on mobile */
    .hero-decoration-left,
    .hero-decoration-right,
    .services-decoration-left,
    .services-decoration-right,
    .footer-decoration {
        display: none;
    }
    
    .service-icon {
        height: 60px;
    }
    
    .service-icon-large {
        height: 80px;
    }
    
    .contact-decoration {
        display: none;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .hero-stats {
        gap: 24px;
        justify-content: center;
    }
    
    .hero-stat-item {
        text-align: center;
    }
    
    .hero-stat-item strong {
        font-size: 1.5rem;
    }
    
    .hero-stat-item span {
        font-size: 0.8125rem;
    }
    
    .hero-image-wrapper {
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        padding: 10px 14px;
        font-size: 0.875rem;
    }
    
    .hero-floating-card .card-icon {
        font-size: 1.25rem;
    }
    
    .hero-floating-card .card-text {
        font-size: 0.7rem;
    }
    
    /* Adjust floating card positions for mobile */
    .hero-floating-card.card-1 {
        top: 5%;
        left: -2%;
    }
    
    .hero-floating-card.card-2 {
        top: 25%;
        right: -3%;
    }
    
    .hero-floating-card.card-3 {
        bottom: 35%;
        left: -3%;
    }
    
    .hero-floating-card.card-4 {
        bottom: 8%;
        right: -2%;
    }
    
    .hero-animated-shapes .shape-1,
    .hero-animated-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .hero-animated-shapes .shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-visual {
        order: -1;
    }
    
    .product-mockup {
        min-height: 350px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .services-grid,
    .industries-grid,
    .reasons-grid,
    .process-grid,
    .features-grid-large,
    .pricing-grid,
    .values-grid,
    .why-xyz-grid,
    .why-industry-grid,
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-content-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .product-info-card {
        position: static !important;
    }
}

/* === Animations === */

/* Fade In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Float animation for hero decorations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.hero-decoration-left img {
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-right img {
    animation: floatReverse 8s ease-in-out infinite;
}

/* Pulse animation for buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(79, 70, 229, 0.5);
    }
}

.btn-primary {
    animation: pulse 2s ease-in-out infinite;
}

/* Number counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number {
    animation: countUp 0.6s ease-out;
}

/* Card hover glow effect */
.service-card,
.stat-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover::before,
.stat-card:hover::before {
    opacity: 1;
}

/* Stagger animations for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

/* Hero content animation */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1.4s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.6s ease-out;
}

/* Intro section animations */
.intro-content {
    animation: fadeInLeft 1s ease-out;
}

.intro-stats {
    animation: fadeInRight 1s ease-out;
}

/* Section titles animation */
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.section-description {
    animation: fadeInUp 1s ease-out;
}

/* Industry card animations */
.industry-card {
    animation: scaleIn 0.6s ease-out;
}

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }

/* Reason cards animation */
.reason-card {
    animation: fadeIn 0.8s ease-out;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }

/* Featured product animation */
.product-showcase {
    animation: fadeIn 0.8s ease-out;
}

/* CTA section animation */
.cta-content {
    animation: scaleIn 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Print Styles === */
@media print {
    .header,
    .footer,
    .cta,
    .btn {
        display: none;
    }
}

/* ====================================
   MODERN CONTACT PAGE STYLES
==================================== */

.contact-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--surface-color) 100%);
}

.contact-layout-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper-modern {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-wrapper-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-header-modern {
    margin-bottom: 35px;
}

.form-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-subtitle-modern {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-label-modern {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-input-modern,
.form-textarea-modern {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Select dropdown options styling for dark mode */
.form-input-modern option {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 10px;
}

/* Dark mode specific fixes for select dropdowns */
[data-theme="dark"] .form-input-modern {
    color-scheme: dark;
}

[data-theme="dark"] .form-input-modern option {
    background: #1a1a2e;
    color: #e0e0e0;
}

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

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: var(--text-muted);
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-submit-modern svg {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover svg {
    transform: translateX(5px);
}

.form-note-modern {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: -10px;
}

/* Contact Info Styles */
.contact-info-wrapper-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card-modern {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-info-subtitle-modern {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-items-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item-modern {
    display: flex;
    gap: 15px;
    align-items: start;
}

.contact-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.contact-info-content-modern {
    flex: 1;
}

.contact-label-modern {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-value-modern {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value-modern:hover {
    color: var(--primary-color);
}

.contact-value-sub-modern {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Contact Features */
.contact-features-modern {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-feature-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-feature-item-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text-modern {
    flex: 1;
}

.feature-text-modern strong {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.feature-text-modern p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .contact-layout-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper-modern,
    .contact-info-card-modern,
    .contact-features-modern {
        padding: 30px;
    }
    
    .form-title-modern {
        font-size: 1.875rem;
    }
    
    .contact-info-title-modern {
        font-size: 1.625rem;
    }
}

/* Tablets and larger phones */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-section-modern {
        padding: 60px 0;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper-modern,
    .contact-info-card-modern,
    .contact-features-modern {
        padding: 25px;
        border-radius: 16px;
    }
    
    .form-title-modern {
        font-size: 1.75rem;
    }
    
    .contact-info-title-modern {
        font-size: 1.5rem;
    }
    
    .btn-submit-modern {
        width: 100%;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .why-contact {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .why-contact-card {
        padding: 2rem;
    }
    
    .faq-section {
        padding: 3.5rem 0;
    }
    
    .faq-item {
        padding: 1.75rem;
    }
    
    .faq-question {
        font-size: 1.0625rem;
    }
    
    .faq-answer {
        font-size: 0.9375rem;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .page-header {
        padding: 2.5rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .page-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .contact-section-modern {
        padding: 40px 0;
    }
    
    .contact-layout-modern {
        gap: 25px;
    }
    
    .contact-form-wrapper-modern,
    .contact-info-card-modern,
    .contact-features-modern {
        padding: 20px;
        border-radius: 12px;
    }
    
    .form-header-modern {
        margin-bottom: 25px;
    }
    
    .form-title-modern {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .form-subtitle-modern {
        font-size: 0.9375rem;
    }
    
    .contact-form-modern {
        gap: 20px;
    }
    
    .form-row-modern {
        gap: 20px;
    }
    
    .form-label-modern {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }
    
    .form-input-modern,
    .form-textarea-modern {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .form-textarea-modern {
        min-height: 120px;
    }
    
    .btn-submit-modern {
        padding: 13px 24px;
        font-size: 0.9375rem;
    }
    
    .contact-info-title-modern {
        font-size: 1.375rem;
        margin-bottom: 8px;
    }
    
    .contact-info-subtitle-modern {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }
    
    .contact-info-items-modern {
        gap: 20px;
    }
    
    .contact-info-item-modern {
        gap: 12px;
    }
    
    .contact-icon-modern {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-label-modern {
        font-size: 0.9375rem;
        margin-bottom: 4px;
    }
    
    .contact-value-modern {
        font-size: 0.875rem;
    }
    
    .contact-features-modern {
        gap: 15px;
        padding: 20px;
    }
    
    .contact-feature-item-modern {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-icon-modern {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .feature-text-modern strong {
        font-size: 0.9375rem;
    }
    
    .feature-text-modern p {
        font-size: 0.8125rem;
    }
    
    .why-contact {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .why-contact-grid {
        gap: 1rem;
    }
    
    .why-contact-card {
        padding: 1.5rem;
    }
    
    .why-contact-icon {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .why-contact-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .why-contact-description {
        font-size: 0.9375rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.875rem;
    }
    
    .contact-section-modern {
        padding: 30px 0;
    }
    
    .contact-form-wrapper-modern,
    .contact-info-card-modern,
    .contact-features-modern {
        padding: 16px;
    }
    
    .form-title-modern {
        font-size: 1.375rem;
    }
    
    .form-input-modern,
    .form-textarea-modern {
        padding: 10px 14px;
        font-size: 0.875rem;
    }
    
    .btn-submit-modern {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .contact-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .why-contact-card {
        padding: 1.25rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
}
