/* Reset body/html for full-width */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #0a1128 !important;
    overflow-x: hidden;
}

/* Reset i Zmienne dla kontenera */
#omnigeo-wrapper {
    --dark-blue: #0a1128;
    --mid-blue: #121e3d;
    --accent-blue: #00b4d8;
    --white: #ffffff;
    --text-gray: #cfd8dc;
    --card-bg: rgba(255, 255, 255, 0.05);

    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#omnigeo-wrapper * {
    box-sizing: border-box;
}

/* Naprawa paska admina WP */
#wpadminbar { z-index: 99999 !important; }

/* --- NAVIGATION --- */
#omnigeo-wrapper nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 2px solid var(--accent-blue);
}

/* Korekta pozycji nav jeśli jest pasek admina */
.admin-bar #omnigeo-wrapper nav { top: 32px; }

.logo-text { font-weight: 900; font-size: 1.5rem; letter-spacing: 1px; color: var(--white); }
.logo-text span { color: var(--accent-blue); }

.nav-links a {
    color: var(--white) !important;
    text-decoration: none !important;
    margin-left: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--accent-blue) !important; }

/* Hamburger menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10000;
}
.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(135deg, #0a1128 0%, #121e3d 100%);
    position: relative;
    overflow: hidden;
}

.hero-content { flex: 1.2; z-index: 2; }
.hero-title { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; line-height: 1; margin-bottom: 10px; color: var(--white); }

.hero-brand { display: inline-flex; background: #fff; padding: 5px 20px; margin-bottom: 20px; }
.hero-brand span { color: #000; font-weight: 900; font-size: clamp(1.5rem, 4vw, 2.8rem); }
.hero-brand .blue { color: var(--accent-blue); }

.hero-sub { font-size: clamp(1rem, 2vw, 1.8rem); font-weight: 700; margin-bottom: 40px; color: var(--white); }

.hero-contact-info { display: grid; gap: 15px; }
.info-item { display: flex; align-items: center; font-size: 1.1rem; color: var(--white); }
.info-item i { color: var(--accent-blue); margin-right: 15px; font-size: 1.4rem; }

.hero-visual { flex: 0.8; display: flex; justify-content: flex-end; position: relative; }
.circle-container {
    width: 500px; height: 500px;
    border-radius: 50%; border-left: 15px solid white;
    background-size: cover;
    background-position: center;
    position: relative; box-shadow: -20px 0 50px rgba(0,0,0,0.3);
}

.satellite {
    position: absolute; top: 10%; right: 10%;
    font-size: 3rem; color: var(--accent-blue);
    animation: float 4s infinite ease-in-out;
    z-index: 3;
}

/* --- SECTIONS --- */
.section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; text-transform: uppercase; font-weight: 900; color: var(--white); }
.section-header .line { width: 60px; height: 4px; background: var(--accent-blue); margin: 20px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.service-card { background: var(--mid-blue); padding: 40px; border-radius: 15px; transition: 0.4s; border: 1px solid rgba(255,255,255,0.05); }
.service-card:hover { transform: translateY(-10px); background: #1a2a50; border-color: var(--accent-blue); }
.service-card i { font-size: 2.5rem; color: var(--accent-blue); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; color: var(--white); }

/* --- PROCESS --- */
.process-section { padding: 100px 5%; background: #0d1630; text-align: center; }
.process-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 50px; }
.process-tile {
    flex: 1; min-width: 260px; max-width: 300px;
    background: var(--card-bg); backdrop-filter: blur(10px);
    padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.process-tile:hover { background: rgba(0, 180, 216, 0.1); border-color: var(--accent-blue); transform: scale(1.05); }
.step-number {
    width: 60px; height: 60px; background: var(--accent-blue); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 900; margin: 0 auto 25px;
}

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item { position: relative; height: 250px; border-radius: 15px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent);
    display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: 0.3s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- TECHNOLOGY --- */
.feature-row { display: flex; align-items: center; flex-wrap: wrap; gap: 50px; margin-top: 80px; }
.feature-img { flex: 1; min-width: 350px; height: 450px; border-radius: 20px; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text { flex: 1; min-width: 350px; }
.feature-text h2 { color: var(--white); font-weight: 900; }

/* --- CTA --- */
.cta {
    background-size: cover; background-position: center; background-attachment: fixed;
    text-align: center; padding: 120px 5%;
}
.cta-btn {
    display: inline-block; padding: 20px 50px; background: var(--accent-blue); color: #fff !important;
    text-decoration: none !important; font-weight: 900; border-radius: 50px; margin-top: 30px;
    transition: 0.3s; text-transform: uppercase; letter-spacing: 2px;
}
.cta-btn:hover { background: #fff; color: var(--dark-blue) !important; transform: scale(1.1); }

/* --- FOOTER --- */
#omnigeo-wrapper footer { padding: 80px 8% 40px; background: #050a18; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-col h4 { color: var(--accent-blue); margin-bottom: 25px; text-transform: uppercase; font-weight: 700; }

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

@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; height: auto; min-height: 100vh; }
    .hero-visual { display: none; }
    .info-item { justify-content: center; }
    .feature-img { height: 300px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 17, 40, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 9998;
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin-left: 0; font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .section { padding: 60px 5%; }
    .section-header h2 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { gap: 30px; }
    .feature-img { min-width: 100%; height: 250px; }
    .feature-text { min-width: 100%; }
}
