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

/* Fix: Hide the duplicate text-based navigation items */
.nav-menu a[href="/portal"],
.nav-menu a[href="/consultation"] {
    display: none;
}



body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #1e293b;
    transform: translateY(-1px);
}

.nav-menu a.active {
    color: #3b82f6;
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

/* Navigation buttons - make them more professional and compact */
.nav-actions .btn-primary,
.nav-actions .btn-secondary {
    min-width: 120px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.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::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main Content Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section.bg-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    background-image: 
        linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 50%, rgba(71, 85, 105, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    background-size: cover, 40px 40px, 20px 20px;
    background-position: center, center, center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

/* Banner-style hero sections for Resources, Services, About, Careers, News, and Contact pages */
body[data-page="resources"] .hero,
body[data-page="services"] .hero,
body[data-page="about"] .hero,
body[data-page="careers"] .hero,
body[data-page="news"] .hero,
body[data-page="contact"] .hero,
.resources-page .hero,
.services-page .hero,
.about-page .hero,
.careers-page .hero,
.news-page .hero,
.contact-page .hero {
    min-height: 40vh;
    padding: 10rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Disable background animations on banner-style hero sections */
body[data-page="resources"] .hero-background,
body[data-page="services"] .hero-background,
body[data-page="about"] .hero-background,
body[data-page="careers"] .hero-background,
body[data-page="news"] .hero-background,
body[data-page="contact"] .hero-background,
.resources-page .hero-background,
.services-page .hero-background,
.about-page .hero-background,
.careers-page .hero-background,
.news-page .hero-background,
.contact-page .hero-background {
    display: none;
}

body[data-page="resources"] .hero h1,
body[data-page="services"] .hero h1,
body[data-page="about"] .hero h1,
body[data-page="careers"] .hero h1,
body[data-page="news"] .hero h1,
body[data-page="contact"] .hero h1,
.resources-page .hero h1,
.services-page .hero h1,
.about-page .hero h1,
.careers-page .hero h1,
.news-page .hero h1,
.contact-page .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

body[data-page="resources"] .hero-subtitle,
body[data-page="services"] .hero-subtitle,
body[data-page="about"] .hero-subtitle,
body[data-page="careers"] .hero-subtitle,
body[data-page="news"] .hero-subtitle,
body[data-page="contact"] .hero-subtitle,
.resources-page .hero-subtitle,
.services-page .hero-subtitle,
.about-page .hero-subtitle,
.careers-page .hero-subtitle,
.news-page .hero-subtitle,
.contact-page .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body[data-page="resources"] .hero-content,
body[data-page="services"] .hero-content,
body[data-page="about"] .hero-content,
body[data-page="careers"] .hero-content,
body[data-page="news"] .hero-content,
body[data-page="contact"] .hero-content,
.resources-page .hero-content,
.services-page .hero-content,
.about-page .hero-content,
.careers-page .hero-content,
.news-page .hero-content,
.contact-page .hero-content {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
}

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

.mesh-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: meshMove 8s ease-in-out infinite;
}

.data-flow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    animation: dataFlow 6s linear infinite;
}

.wireless-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: nodePulse 4s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-10px, -10px) scale(1.1); }
    50% { transform: translate(10px, -5px) scale(0.9); }
    75% { transform: translate(-5px, 10px) scale(1.05); }
}

@keyframes dataFlow {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 200% 200%, 300% 300%, 250% 250%; }
}

@keyframes arrowWiggle {
    0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
    25% { transform: translateX(5px) rotate(8deg) scale(1.1); }
    50% { transform: translateX(0) rotate(0deg) scale(1); }
    75% { transform: translateX(-5px) rotate(-8deg) scale(1.1); }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Typography Improvements */
.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.section p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Enhanced Page Components */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Culture Icons */
.culture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Position Cards */
.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-info h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.position-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    flex-wrap: wrap;
}

.position-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Benefit Icons */
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-list {
    list-style: none;
    margin-top: 1rem;
}

.benefit-list li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
}

/* News Page Enhancements */
.news-category {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-item:hover::before {
    transform: scaleX(1);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Press Release Enhancements */
.press-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.press-category {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.press-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.press-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.press-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.press-item:hover::before {
    transform: scaleX(1);
}

.press-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Contact Page Enhancements */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    margin-bottom: 0;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-header h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-header p {
    color: #64748b;
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.contact-item .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.5;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.highlight-text {
    color: #ffffff;
    font-weight: 700;
    animation: highlightPulse 2s ease-in-out infinite;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.highlight-text:nth-child(1) {
    animation-delay: 0s;
}

.highlight-text:nth-child(2) {
    animation-delay: 0.7s;
}

.highlight-text:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes highlightPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        color: #ffffff;
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 35px rgba(168, 85, 247, 0.8);
        color: #fbbf24;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-right: 1rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

/* Value Cards */
.value-cards {
    padding: 5rem 0;
    background: white;
}

/* Resource Sections */
.resource-section {
    margin-bottom: 4rem;
}

.resource-section h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.resource-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.resource-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resource-meta span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.resource-action {
    margin-top: auto;
}

.resource-action .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-action .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.no-resources {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    padding: 3rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.error-message {
    text-align: center;
    color: #dc2626;
    font-size: 1.1rem;
    padding: 3rem 1rem;
    background: #fef2f2;
    border-radius: 12px;
    border: 2px dashed #fecaca;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    /* Give more space for 3D transforms */
    align-items: start;
}

.card {
    height: 300px;
    /* Create a stable container that doesn't move */
    position: relative;
    overflow: hidden;
    /* Fixed dimensions to prevent layout shifts */
    width: 100%;
    box-sizing: border-box;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
}

/* Use fade transition instead of 3D flip */
.card.flipped .card-front {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.card.flipped .card-back {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.card:not(.flipped) .card-front {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.card:not(.flipped) .card-back {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    /* Remove hover effect to prevent position shifting */
}

/* Remove hover effect that causes position shifting */
.card-front:hover::before {
    /* transform: scaleX(1); */
}

.card-back {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.card-back h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card p {
    color: #64748b;
    line-height: 1.6;
}

.card-back p {
    color: rgba(255, 255, 255, 0.9);
}

/* Solution Snapshot */
.solution-snapshot {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.snapshot-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.snapshot-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.environment-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.env-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.env-icon .icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.env-icon:hover .icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.env-icon span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* AI Highlight */
.ai-highlight {
    padding: 5rem 0;
    background: white;
}

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

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ai-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.ai-features {
    list-style: none;
}

.ai-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.ai-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.ai-video {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.video-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.play-button {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #64748b;
    font-weight: 500;
}

/* Hero video specific styles */
#hero-video-container {
    position: relative;
    width: 400px;
    height: 250px;
}

#hero-video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#hero-video:not([src]) {
    display: none;
}

/* Force center the video placeholder content */
#hero-video-container .video-placeholder {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

#hero-video-container .play-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 3rem !important;
    color: #2563eb !important;
    margin-bottom: 1rem !important;
}

#hero-video-container .video-placeholder p {
    text-align: center !important;
    margin: 0 !important;
}

/* Ensure video is properly positioned above placeholder */
#hero-video-container #hero-video {
    /* Video positioning handled in main #hero-video rule above */
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    background: #f8fafc;
    text-align: center;
}

.trust-bar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.logo-carousel {
    overflow: hidden;
    margin-bottom: 1rem;
}

.logo-slide {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-placeholder {
    background: #e2e8f0;
    color: #64748b;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 150px;
    text-align: center;
}

.trust-note {
    color: #64748b;
    font-size: 0.9rem;
}

/* Resource Sections */
.resource-section {
    margin-bottom: 4rem;
}

.resource-section h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-card .resource-type {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.resource-card .resource-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.resource-card .btn-primary,
.resource-card .btn-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.resource-card .btn-primary {
    background: #1e40af;
    color: white;
    border: none;
}

.resource-card .btn-primary:hover {
    background: #1d4ed8;
}

.resource-card .btn-secondary {
    background: transparent;
    color: #1e40af;
    border: 1px solid #1e40af;
}

.resource-card .btn-secondary:hover {
    background: #1e40af;
    color: white;
}

.webinar-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.webinar-card h3,
.webinar-card p {
    color: white;
}

.webinar-card .resource-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Invitation Styles */
.invitation-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.invitation-info h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.invitation-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.attendees-list {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attendee-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.results-summary {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #1e40af;
}

.results-summary p {
    margin: 0;
    color: #1e293b;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    grid-column: 1;
    text-align: left;
    justify-self: start;
}

.footer-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    text-align: center;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
}

.footer-section ul li {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #8b5cf6;
    padding-left: 5px;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 1px;
    background: #8b5cf6;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-section ul li a:hover::before {
    width: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    justify-content: center;
}

.contact-item svg {
    color: #8b5cf6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.footer-legal p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #8b5cf6;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.certification {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Consultation Page Banner */
.consultation-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.consultation-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.consultation-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages Banner */
.privacy-hero,
.terms-hero,
.cookies-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.privacy-hero h1,
.terms-hero h1,
.cookies-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero p,
.terms-hero p,
.cookies-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content Styling */
.legal-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.effective-date {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section ul li::before {
    content: '•';
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-section a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Legal Tables */
.table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-table th {
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    line-height: 1.5;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:hover {
    background: #f8fafc;
}

/* Cookie Banner Example */
.cookie-banner-example {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.cookie-banner-example p {
    color: #374151;
    font-style: italic;
    margin: 0;
}

/* Contact Info in Legal Pages */
.contact-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consultation-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .cookies-hero h1 {
        font-size: 2.5rem;
    }
    
    .consultation-hero p,
    .privacy-hero p,
    .terms-hero p,
    .cookies-hero p {
        font-size: 1.1rem;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-header h2 {
        font-size: 2rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
    
    .table-container {
        margin: 1rem -1rem;
    }
    
    .legal-table {
        font-size: 0.9rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
        color: #475569;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
        padding-left: 1.75rem;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile action buttons - always visible at bottom */
    .mobile-actions {
        display: none;
    }
    
    .nav-menu .mobile-actions {
        display: none;
    }
    
    /* Always visible mobile action buttons */
    .mobile-actions-fixed {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
        border-top: 1px solid rgba(59, 130, 246, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .mobile-actions-fixed .btn-primary,
    .mobile-actions-fixed .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 10px;
        font-weight: 600;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        letter-spacing: 0.025em;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
    }
    
    .mobile-actions-fixed .btn-primary {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: white;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }
    
    .mobile-actions-fixed .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        transform: translateY(-1px);
    }
    
    .mobile-actions-fixed .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
    }
    
    .mobile-actions-fixed .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #374151;
        border: 1.5px solid rgba(59, 130, 246, 0.2);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .mobile-actions-fixed .btn-secondary:hover {
        background: rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
    }
    
    .mobile-actions-fixed .btn-secondary:active {
        transform: translateY(0);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hide action buttons on mobile */
    .nav-actions {
        display: none;
    }
    
    .logo-image {
        height: 80px;
        max-width: 200px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile card interactions */
    .card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .environment-icons {
        gap: 2rem;
    }
    
    .video-placeholder {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .logo-slide {
        gap: 2rem;
    }
    
    .logo-placeholder {
        min-width: 120px;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-hero,
    .privacy-hero,
    .terms-hero,
    .cookies-hero {
        padding: 6rem 0 3rem;
    }
    
    .consultation-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .cookies-hero h1 {
        font-size: 2rem;
    }
    
    .legal-document {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-header h2 {
        font-size: 1.75rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-table {
        font-size: 0.8rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 65px;
        max-width: 160px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .snapshot-content h2,
    .ai-text h2 {
        font-size: 2rem;
    }
    
    .environment-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
} 

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h5 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .certification {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Careers page styles */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.culture-item h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.positions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.position-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.position-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.position-location,
.position-type {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.position-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-item h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* News page styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #3b82f6;
}

.news-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.press-releases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.press-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.press-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.press-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.press-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.media-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.media-source {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.media-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.media-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.external-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

.media-kit-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.media-kit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.media-kit-item h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.media-kit-item p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.office-item h3 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.office-role {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.office-item p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.support-option h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-option p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Contact form styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive design for new pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-grid,
    .positions-container,
    .benefits-grid,
    .news-grid,
    .press-releases,
    .media-coverage,
    .media-kit-items,
    .offices-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
} 

/* About Page Professional Styling */
.about-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-card p,
.vision-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Values List with Animated Arrows */
.values-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.values-list li {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.values-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: #1d4ed8;
    background: #f1f5f9;
}

.values-list li:hover::before {
    animation: arrowWiggle 0.6s ease-in-out;
    color: #1d4ed8;
}

.values-list strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.values-list li {
    color: #64748b;
    line-height: 1.6;
}

/* Company History */
.history-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.history-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.history-meta p {
    margin: 0;
    font-weight: 500;
}

.history-meta strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
    color: #0c4a6e;
}

.company-story {
    line-height: 1.8;
    color: #64748b;
    font-size: 1.1rem;
}

.company-story p {
    margin-bottom: 1.5rem;
}

.company-story p:last-child {
    margin-bottom: 0;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.leader-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.leadership-bio {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.leadership-bio p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section {
        padding: 1.5rem 0;
    }
    
    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .values-content,
    .history-content,
    .leader-card,
    .leadership-bio {
        padding: 1.5rem;
    }
} 