/* Omnilink China - Custom Styles */

/* CSS Variables for Brand Colors - Elegant Design System */
:root {
    --primary-color: #1e293b;
    --primary-light: #334155;
    --primary-dark: #0f172a;
    --secondary-color: #f8fafc;
    --accent-color: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --surface-white: #ffffff;
    --surface-gray: #f8fafc;
    --surface-blue: #eff6ff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-surface: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography - Elegant Type System */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Refined Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
}

h3 {
    font-size: 2.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.875rem;
    font-weight: 600;
}

h5 {
    font-size: 1.5rem;
    font-weight: 600;
}

h6 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Display Typography */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Bootstrap Overrides - Elegant Design System */
.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-light {
    background-color: var(--surface-gray) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Refined Button System */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    letter-spacing: 0.025em;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: white;
    box-shadow: var(--shadow);
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--gradient-accent);
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-primary);
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    font-weight: 500;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-accent {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    background: transparent;
    font-weight: 500;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Header Styles - Elegant Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(30, 41, 59, 0.95) !important;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-light) !important;
}

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

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    background: var(--surface-white);
    backdrop-filter: blur(20px);
}

.dropdown-item {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: var(--surface-blue);
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.7)),
        url('/attached_assets/Wallpaper_Home.png');
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

/* Preload background image for better performance */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/attached_assets/Wallpaper_Home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -1;
    will-change: transform;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-width: 2px;
}

.hero-buttons .btn-accent {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b7a 100%);
    color: white;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero h5,
.page-hero h6 {
    color: white !important;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Elegant Card System */
.feature-card {
    background: var(--surface-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    transition: var(--transition);
    color: var(--accent-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-dark);
}

/* Solution Cards */
.solution-card {
    background: var(--surface-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.solution-card .card-body {
    padding: 2rem;
}

/* Modern Product Cards */
.product-card, .modern-product-card {
    background: var(--surface-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card:hover, .modern-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.product-image {
    object-fit: cover;
    height: 200px;
}

.product-features .badge {
    margin-bottom: 0.25rem;
}

.product-actions .btn {
    margin-bottom: 0.5rem;
}

/* Industry Cards */
.industry-card {
    background: var(--gradient-surface);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.industry-icon {
    transition: var(--transition);
    color: var(--accent-color);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    color: var(--accent-dark);
}

/* Support Cards */
.support-option {
    background: var(--surface-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.support-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.support-icon {
    transition: var(--transition);
    color: var(--accent-color);
}

.support-option:hover .support-icon {
    transform: scale(1.1);
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 1.5rem;
}

/* Job Cards */
.job-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.job-meta .badge {
    margin-bottom: 0.25rem;
}

.job-details {
    border-left: 4px solid var(--accent-color);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.benefit-icon {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Contact Cards */
.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(241, 90, 41, 0.25);
}

.form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Timeline Images */
.timeline-content img {
    max-height: 120px;
    object-fit: cover;
    border-radius: 0.375rem;
    transition: var(--transition);
    width: 100%;
}

.timeline-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Timeline Row Alignment */
.timeline-content .row {
    align-items: center;
}

/* Timeline Text Content */
.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 500;
    border: none;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(241, 90, 41, 0.25);
}

/* Download Cards */
.download-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

/* Knowledge Base */
.kb-category {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.kb-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Customer logos */
.customer-logo {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.customer-logo:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Market segments */
.market-segment {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.market-segment:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.segment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 42, 80, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

/* OEM cards */
.oem-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.oem-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Modern Product Cards */
.modern-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #f1f3f4;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.product-header {
    position: relative;
    overflow: hidden;
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 42, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.feature-badge.location {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

.feature-badge.connectivity {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-badge.ai {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
    border-color: rgba(168, 85, 247, 0.2);
}

.feature-badge.bluetooth {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    border-color: rgba(14, 165, 233, 0.2);
}

.feature-badge.video {
    background: rgba(220, 38, 127, 0.1);
    color: #be185d;
    border-color: rgba(220, 38, 127, 0.2);
}

.product-footer {
    padding: 0 1.5rem 1.5rem;
}

/* Category Headers */
.category-header {
    margin-bottom: 3rem;
}

.category-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(10, 42, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Product Navigation */
.product-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem;
}

.product-nav .btn {
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-nav .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

/* Hero Stats */
.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-stats h3 {
    font-size: 2rem;
    color: white;
}

.hero-stats p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Feature Highlights */
.feature-highlight {
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 42, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* AI Features Section */
.ai-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ai-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ai-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ai-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.stat-highlight {
    padding: 1rem;
}

.stat-highlight h3 {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-highlight p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 500;
}

/* Technical Specifications Styling */
.tech-specs-compact {
    background: var(--surface-blue);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.tech-specs-compact:hover {
    background: var(--surface-white);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-sm);
}

/* Footer Enhancements */
footer {
    background: var(--gradient-primary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h6 {
    color: var(--accent-light) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Industry Application Cards */
.industry-application-card {
    background: var(--surface-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.industry-application-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.industry-application-card .industry-icon {
    transition: var(--transition);
}

.industry-application-card:hover .industry-icon {
    transform: scale(1.1);
}

/* Project Cards */
.project-card {
    background: var(--surface-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

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

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 1.5rem;
}

.project-card .card-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

/* Form Enhancements */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 0.875rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-select {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Badge Enhancements */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
}

.badge-primary {
    background: var(--gradient-primary);
    color: white;
}

.badge-accent {
    background: var(--gradient-accent);
    color: white;
}

/* Alert Enhancements */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

/* Dark Background Text Contrast Fixes */
.bg-primary,
.bg-primary.text-white,
section.bg-primary {
    color: white !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: white !important;
}

.bg-primary p,
.bg-primary .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-primary .text-white {
    color: white !important;
}

/* Hero Section Text Contrast */
.hero-section,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: white !important;
}

.hero-section p,
.hero-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-section .text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-section .text-light-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hero-section .text-accent {
    color: var(--accent-light) !important;
}

/* Dark Card Backgrounds */
.ai-feature-card,
.ai-feature-card h1,
.ai-feature-card h2,
.ai-feature-card h3,
.ai-feature-card h4,
.ai-feature-card h5,
.ai-feature-card h6 {
    color: white !important;
}

.ai-feature-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Footer Text Contrast */
footer,
footer * {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer h6 {
    color: var(--accent-light) !important;
}

/* Navbar Text Contrast */
.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-light) !important;
}

/* Certification Cards */
.cert-card {
    background: var(--surface-white);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    text-align: center;
    height: 100%;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.cert-card .cert-icon {
    transition: var(--transition);
}

.cert-card:hover .cert-icon {
    transform: scale(1.1);
}

.cert-card h6 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cert-card p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.specs-title {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.specs-list {
    font-size: 0.8rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.spec-label {
    font-weight: 500;
    color: #666;
    flex: 0 0 auto;
    margin-right: 0.5rem;
}

.spec-value {
    color: #333;
    text-align: right;
    font-weight: 400;
    flex: 1;
}

.kb-icon {
    transition: transform 0.3s ease;
}

.kb-category:hover .kb-icon {
    transform: scale(1.1);
}

/* Success Stories */
.success-story {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ROI Calculator */
.roi-calculator {
    border: 2px solid var(--border-color);
}

.roi-results {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.roi-metric {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Insight Cards */
.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.insight-icon {
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-icon {
    transform: scale(1.1);
}

/* Press Items */
.press-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    min-width: 80px;
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0;
}

/* Client Logos */
.client-logo {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Stat Cards */
.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

/* Team Cards */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.team-avatar {
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

/* Certification Cards */
.cert-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Footer */
footer {
    background-color: #1a1a1a !important;
}

footer .text-light-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

footer .text-light-75 {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .text-light-75:hover {
    color: var(--accent-color) !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .page-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
    }
    
    /* Timeline responsiveness for mobile */
    .timeline-content .row {
        flex-direction: column;
    }
    
    .timeline-content .col-md-4 {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .timeline-content img {
        max-height: 100px;
    }
    
    .product-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .job-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .feature-card,
    .solution-card,
    .product-card,
    .industry-card,
    .support-option,
    .news-card,
    .job-card,
    .benefit-card,
    .testimonial-card,
    .office-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

/* Utility Classes */
.object-fit-cover {
    object-fit: cover;
}

.min-vh-100 {
    min-height: 100vh;
}

.text-decoration-none {
    text-decoration: none !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* News Horizontal Items */
.news-item-horizontal {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.news-item-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.news-item-horizontal .news-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.news-item-horizontal img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.news-item-horizontal .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.news-item-horizontal h3 {
    line-height: 1.3;
}

.news-item-horizontal p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-item-horizontal .news-image-container {
        min-height: 200px;
    }
    
    .news-item-horizontal img {
        height: 200px;
    }
    
    .news-item-horizontal .p-4 {
        padding: 1.5rem !important;
    }
}

/* Mobile Responsiveness */
@media (max-width: 575.98px) {
    /* Typography for mobile */
    .display-1 { font-size: 2.5rem !important; }
    .display-2 { font-size: 2.2rem !important; }
    .display-3 { font-size: 1.9rem !important; }
    .display-4 { font-size: 1.6rem !important; }
    .display-5 { font-size: 1.4rem !important; }
    .lead { font-size: 1.1rem !important; }
    
    /* Hero section mobile */
    .hero-section {
        min-height: 100vh;
        padding: 1rem 0;
        background-attachment: scroll;
    }
    
    .hero-section .container {
        padding: 2rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    /* Page hero mobile */
    .page-hero {
        padding: 6rem 0 3rem !important;
        text-align: center;
    }
    
    /* Cards and features mobile */
    .feature-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 1rem !important;
    }
    
    .feature-icon i {
        font-size: 2rem !important;
    }
    
    /* Navigation mobile */
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1.1rem;
    }
    
    /* Product cards mobile */
    .product-card {
        margin-bottom: 2rem;
    }
    
    .product-card .card-body {
        padding: 1.5rem !important;
    }
    
    /* Timeline mobile */
    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .timeline-image img {
        width: 100% !important;
        max-width: 200px;
        height: auto !important;
    }
    
    /* Solutions grid mobile */
    .solution-card {
        margin-bottom: 2rem;
    }
    
    /* Forms mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    /* Buttons mobile */
    .btn-lg {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* News mobile */
    .news-item-horizontal .row {
        flex-direction: column !important;
    }
    
    .news-item-horizontal .col-md-4,
    .news-item-horizontal .col-md-8 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .news-item-horizontal .news-image-container {
        min-height: 200px !important;
    }
    
    .news-item-horizontal img {
        height: 200px !important;
    }
    
    .news-item-horizontal .p-4 {
        padding: 1.5rem !important;
    }
    
    /* Footer mobile */
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        height: 80px !important;
    }
}

@media (max-width: 767.98px) {
    /* Tablet adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col, [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* About page stats mobile */
    .stats-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .stats-number {
        font-size: 2.5rem !important;
    }
    
    /* Innovation timeline mobile */
    .innovation-timeline {
        padding: 2rem 0;
    }
    
    .timeline-item {
        padding: 1rem 0;
        border-left: 2px solid var(--accent-color);
        margin-left: 1rem;
        padding-left: 2rem;
    }
    
    /* Customer logos mobile */
    .customer-logo {
        margin-bottom: 1rem;
    }
    
    .customer-logo img {
        max-height: 40px !important;
    }
}

@media (max-width: 991.98px) {
    /* Large tablet adjustments */
    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    
    .language-selector {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Additional mobile improvements */
@media (max-width: 575.98px) {
    /* Images responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Customer logos section */
    .customer-grid {
        gap: 1rem !important;
    }
    
    .customer-logo img {
        max-height: 35px !important;
        width: auto !important;
    }
    
    /* FAQ section mobile */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-item .card-header {
        padding: 1rem;
    }
    
    .faq-item .card-body {
        padding: 1rem;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 2rem 1rem;
    }
    
    /* Solutions cards mobile */
    .solution-preview {
        padding: 1.5rem;
    }
    
    .solution-preview h4 {
        font-size: 1.2rem;
    }
    
    /* Support page mobile */
    .support-card {
        margin-bottom: 1.5rem;
    }
    
    .support-card .card-body {
        padding: 1.5rem;
    }
    
    /* Products grid mobile */
    .product-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-features {
        font-size: 0.9rem;
    }
    
    /* Innovation culture section */
    .innovation-culture img {
        margin-bottom: 2rem;
    }
    
    /* Statistics section */
    .stat-item {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
}

/* Touch optimization */
@media (max-width: 767.98px) {
    /* Increase touch targets */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Form controls touch-friendly */
    .form-control,
    .form-select {
        min-height: 44px;
        font-size: 1rem;
    }
    
    /* Cards spacing */
    .card {
        margin-bottom: 1.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    /* Modal mobile improvements */
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-content {
        border-radius: var(--border-radius);
    }
}

/* Landscape mobile adjustments */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 4rem 0 2rem !important;
    }
    
    /* Reduce vertical spacing in landscape */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Touch device specific styles */
.touch-device .btn:hover {
    transform: none;
}

.touch-device .btn:active,
.touch-device .btn.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.touch-device .card:hover {
    transform: none;
}

.touch-device .card:active,
.touch-device .card.touch-active {
    transform: scale(0.99);
    transition: transform 0.1s ease;
}

/* Improve scroll performance on mobile */
* {
    -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on buttons and interactive elements */
.btn, .nav-link, .navbar-brand {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Improve tap targets for accessibility */
@media (max-width: 767.98px) {
    .social-links a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .language-selector .dropdown-toggle {
        min-height: 44px;
        padding: 0.5rem 1rem;
    }
    
    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
    }
}

/* CSS Custom Properties for mobile viewport */
:root {
    --vh: 1vh;
}

/* Use custom viewport height on mobile */
@media (max-width: 767.98px) {
    .min-vh-100 {
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    .hero-section {
        min-height: calc(var(--vh, 1vh) * 100);
    }
}

/* Contact Form Styling */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info Cards */
.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.contact-info-card i {
    transition: all 0.3s ease;
}

.contact-info-card:hover i {
    transform: scale(1.1);
}

.contact-info-card h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-card a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    text-decoration: underline !important;
    transform: scale(1.02);
}

/* Responsive Contact Cards */
@media (max-width: 768px) {
    .contact-info-card {
        min-height: 250px;
        margin-bottom: 1rem;
    }
    
    .contact-info-card i {
        font-size: 2rem !important;
    }
    
    .contact-info-card h5 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn,
    .modal {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
        width: 100% !important;
    }
    
    .page-hero {
        background: none !important;
        color: black !important;
    }
}
