/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #003470;
    --primary-light: #0050aa;
    --primary-dark: #00224d;
    --secondary-color: #F4F6F9;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;

    /* Typography */
    --font-main: 'Roboto', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* ==========================================================================
   Reset & Basics
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white h2, .text-white p { color: var(--white); }

.bg-light { background-color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }

.mt-2 { margin-top: var(--spacing-md); }

/* Grids (Mobile First) */
.grid-2-cols, .grid-3-cols {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: 1fr;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.lang-switcher a {
    color: var(--text-color);
    padding: 0 0.5rem;
}

.lang-switcher a.active {
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Sections (About, Services, Software)
   ========================================================================== */
.about-image img, .software-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.strengths-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.strengths-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.service-content {
    padding: 1.5rem;
}

.service-content ul {
    margin-top: 1rem;
    padding-left: 1rem;
    list-style-type: disc;
    color: var(--text-light);
}

.feature-item {
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.feature-item h4 {
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: var(--spacing-lg);
}

.main-footer h3 {
    color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #001836;
    text-align: center;
    padding: 1rem 0;
    margin-top: var(--spacing-lg);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links, .lang-switcher {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}
.header-logo { max-height: 50px; display: block; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; }
.video-background iframe { width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; opacity: 0.6; }
.hero { position: relative; overflow: hidden; z-index: 1; }
