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

.page-wrapper {
    font-size: 16px;
    scroll-behavior: smooth;
}

.cyber-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.modern-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.bold-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #1a202c;
}

.highlight-text {
    color: #0066ff;
    font-weight: 600;
}

/* Layout Utilities */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex-arrangement {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

/* Header Navigation */
.primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.cyber-dark-theme {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section .company-logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.desktop-menu .menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active-page {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-page::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.cyber-gradient-bg {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: #ffffff;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.security-icon-wrapper {
    margin-bottom: 2rem;
}

.animated-shield-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: pulse 2s infinite;
}

.shield-svg {
    width: 100%;
    height: 100%;
    color: #00d4ff;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #cbd5e0;
    font-weight: 400;
}

.tech-badge-wrapper {
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.hero-tech-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

/* Innovation Showcase */
.innovation-showcase {
    padding: 80px 0;
    background: #f8fafc;
}

.dual-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-column {
    padding: 2rem 0;
}

.section-heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.feature-highlight {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Solutions Overview */
.solutions-overview {
    padding: 80px 0;
    text-align: center;
}

.solutions-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.solutions-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: #cbd5e0;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: #ffffff;
}

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

.service-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-indicator {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    margin: 1.5rem 0;
    animation: float 3s ease-in-out infinite;
}

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

.card-description {
    color: #64748b;
    line-height: 1.7;
}

/* Innovation Features */
.innovation-features {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-visual {
    flex-shrink: 0;
}

.circle-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

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

.feature-item:hover .feature-img {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: #64748b;
    line-height: 1.7;
}

/* Values Section */
.company-values {
    padding: 80px 0;
    background: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-subtitle {
    color: #0066ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.values-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.values-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.values-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Culture Section */
.company-culture {
    padding: 80px 0;
}

.culture-layout {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.culture-icon {
    margin-bottom: 2rem;
}

.team-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-svg {
    width: 100%;
    height: 100%;
    color: #00d4ff;
}

.culture-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.culture-text {
    font-size: 1.125rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-layout {
    max-width: 600px;
    margin: 0 auto;
}

.form-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a202c;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.field-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

/* Footer */
.site-footer {
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    margin-bottom: 3rem;
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-text {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00d4ff;
}

.contact-info {
    color: #cbd5e0;
    line-height: 1.7;
}

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

.copyright-text {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.cookie-layout {
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cookie-text {
    color: #cbd5e0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-accept {
    padding: 0.75rem 2rem;
    background: #ffffff;
    color: #1a202c;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .dual-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

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

    .culture-layout {
        flex-direction: column;
        text-align: center;
    }

    .cookie-layout {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }
}
