:root {
    /* Harmonized Professional Dark Theme Colors */
    --primary: #0f172a;
    /* Deep navy blue - executive */
    --secondary: #1e40af;
    /* Consistent professional blue */
    --accent: #3b82f6;
    /* Single blue accent */
    --expertise: #1e40af;
    /* Unified blue for expertise */
    --gold: #f59e0b;
    /* Executive gold accent - use sparingly */
    --neutral: #64748b;
    /* Neutral gray */

    /* Background Colors */
    --light: #1e293b;
    /* Dark slate background */
    --white: #0f172a;
    /* Very dark navy - main background */
    --card-bg: #1e293b;
    /* Dark card background */
    --section-alt: #0f172a;
    /* Alternating section background for contrast */
    --contact-bg: #334155;
    /* Harmonized contact section background */

    /* Text Colors */
    --text-primary: #f8fafc;
    /* Light text for dark backgrounds */
    --text-secondary: #e2e8f0;
    /* Light secondary text */
    --text-muted: #94a3b8;
    /* Muted light text */

    /* Borders */
    --border: #334155;
    /* Dark borders */
    --border-light: #475569;
    /* Darker light borders */

    /* Shadows - darker for dark theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-expertise: linear-gradient(135deg, var(--secondary) 0%, #1d4ed8 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 116, 139, 0.3);
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    overflow: visible;
    left: 0;
    right: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: none;
    gap: 20px;
    min-width: 0;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 65px;
    width: auto;
    margin-right: 14px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-section:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
}

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

.logo-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.logo-section:hover .logo-main {
    color: var(--secondary);
}

.logo-sub {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: -1px;
    letter-spacing: 0.3px;
}

.availability-badge {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
    overflow: visible;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1 1 0;
    min-width: 0;
    overflow: visible;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 8px 4px;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-contact-item span:first-child {
    font-size: 14px;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    height: auto;
}

.lang-toggle:hover {
    border-color: var(--secondary);
    background: rgba(30, 64, 175, 0.1);
}

.lang-arrow {
    font-size: 10px;
    transition: var(--transition);
    color: var(--text-secondary);
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 140px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.lang-option:hover {
    background: rgba(30, 64, 175, 0.15);
    color: var(--secondary);
}

.lang-option.active {
    background: rgba(30, 64, 175, 0.2);
    color: var(--secondary);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-expertise);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, var(--secondary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

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

.btn-secondary {
    background: rgba(30, 64, 175, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 64, 175, 0.3);
    backdrop-filter: blur(20px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(30, 64, 175, 0.3);
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--white);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

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

.hero-text {
    max-width: 800px;
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.hero-badge::before {
    content: '🎓';
    font-size: 16px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.025em;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    color: #f8fafc;
    margin-bottom: 36px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 19px;
    color: #e2e8f0;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 580px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(245, 158, 11, 0.2);
    transition: var(--transition-smooth);
    background: var(--gradient-dark);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: var(--transition-smooth);
}

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

.credentials-grid {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.credential {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.credential::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-expertise);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.credential:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(30, 64, 175, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.credential:hover::before {
    transform: scaleY(1);
}

.credential-label {
    font-size: 13px;
    color: #bfdbfe;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.credential-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .btn {
    background: var(--secondary);
    color: var(--white);
    font-size: 17px;
    padding: 18px 36px;
    margin-right: 18px;
    margin-bottom: 18px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.hero .btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.category {
    display: inline-block;
    background: rgba(30, 64, 175, 0.25);
    color: #93c5fd;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(30, 64, 175, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category:hover {
    background: rgba(30, 64, 175, 0.35);
    border-color: rgba(30, 64, 175, 0.7);
    color: #bfdbfe;
    transform: translateY(-2px);
}

.section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section p {
    font-size: 18px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Styles */
.card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-expertise);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(30, 64, 175, 0.3);
    border-color: rgba(30, 64, 175, 0.6);
    background: rgba(30, 41, 59, 0.95);
}

.card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-expertise);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.card:hover .card-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, #1d4ed8 100%);
}

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

/* Enhanced card icon styling */
.card-icon {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.card:hover h3 {
    color: #93c5fd;
}

.card p {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .credentials-grid {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .nav-actions {
        flex-shrink: 0;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile menu overlay */
    .nav-container::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-container.active::before {
        opacity: 1;
        pointer-events: all;
    }

    /* Hide desktop nav, show mobile menu */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: flex-start;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-actions {
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .nav-contact {
        display: none;
    }

    /* Header adjustments */
    .header-inner {
        padding: 15px 0;
    }

    .logo-image {
        height: 40px !important;
        width: 40px !important;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .availability-badge {
        font-size: 10px;
        padding: 4px 10px;
        display: none;
    }

    /* Hero section */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section h1 {
        font-size: 32px !important;
    }

    .section h2 {
        font-size: 24px !important;
    }

    /* Grid layouts */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .credentials-grid {
        flex-direction: column;
        gap: 16px;
    }

    /* Cards */
    .card {
        padding: 24px;
    }

    /* Contact info bar */
    section[style*="background: var(--light)"] {
        padding: 15px 0 !important;
    }

    section[style*="background: var(--light)"] > div > div {
        flex-direction: column;
        gap: 15px !important;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Buttons */
    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Text sizes */
    p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Compact contact section */
    .nav-contact-item {
        font-size: 12px;
    }

    /* Improve form elements on mobile */
    input, textarea, select {
        font-size: 16px;
        min-height: 44px;
    }

    /* Better spacing for content boxes */
    div[style*="background: var(--light)"] {
        padding: 20px !important;
        margin-bottom: 24px !important;
    }

    /* Improve table-like layouts */
    .credentials-grid {
        gap: 12px;
    }

    /* Better hero section on mobile */
    .hero-text h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 12px 0;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .logo-image {
        height: 35px !important;
        width: 35px !important;
    }

    .nav-container {
        width: 100%;
        right: -100%;
    }

    .nav-container.active {
        right: 0;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .section {
        padding: 50px 0;
    }

    .section h1 {
        font-size: 28px !important;
        margin-bottom: 16px !important;
    }

    .section h2 {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .card {
        padding: 20px;
    }

    .credentials-grid {
        flex-direction: column;
        gap: 12px;
    }

    /* Smaller text on very small screens */
    p {
        font-size: 14px;
    }

    /* Category badges */
    .category {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Lists */
    ul, ol {
        padding-left: 30px;
    }

    /* Client logos */
    .client-logo-item img {
        max-height: 50px;
        max-width: 150px;
    }

    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .section > .container > div {
        padding: 0;
    }

    /* Improve readability */
    h3 {
        font-size: 18px !important;
    }

    /* Better list spacing */
    ul, ol {
        margin-bottom: 16px;
    }

    li {
        margin-bottom: 8px;
    }
}

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

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Professional touches */
::selection {
    background: var(--secondary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary), #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary), var(--secondary));
}

/* Loading sequence animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text>* {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-text>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-text>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-text>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-text>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-text>*:nth-child(5) {
    animation-delay: 0.5s;
}

.hero-text>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Professional glow effects - merged with main card:hover above */

/* Client Logos Animation */
.client-logos-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.client-logos-scroll {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-centered 30s linear infinite;
    width: fit-content;
}

.client-logos-container:hover .client-logos-scroll {
    animation-play-state: paused;
}

.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.7;
    transition: var(--transition);
}

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

.client-logo-item img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.client-logo-item:hover img {
    filter: grayscale(0);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    border-top: 2px solid var(--secondary);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.cookie-consent-text p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
    }
}