/* ============================================
   OGEN Infrastructure & Maintenance Ltd.
   Modern Design System & Stylesheet
   ============================================ */

/* === Design Tokens & Custom Properties === */
:root {
    /* Color Palette */
    --ogen-navy: #0b132b;
    --ogen-dark-navy: #070d1e;
    --ogen-slate: #1c2541;
    --ogen-blue: #1e3a5f;
    --ogen-royal-blue: #2563eb;
    --ogen-primary-hover: #1d4ed8;
    --ogen-cyan: #06b6d4;
    --ogen-cyan-light: #ecfeff;
    --ogen-amber: #f59e0b;
    --ogen-amber-light: #fffbeb;
    --ogen-green: #10b981;
    --ogen-green-light: #ecfdf5;
    --ogen-red: #ef4444;
    
    /* Neutrals & Surfaces */
    --ogen-white: #ffffff;
    --ogen-bg-light: #f8fafc;
    --ogen-bg-card: #ffffff;
    --ogen-bg-glass: rgba(255, 255, 255, 0.88);
    --ogen-text-main: #1e293b;
    --ogen-text-muted: #64748b;
    --ogen-text-light: #94a3b8;
    --ogen-border: #e2e8f0;
    --ogen-border-focus: #2563eb;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0b132b 0%, #1c2541 50%, #1e3a5f 100%);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    
    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Elevation & Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 8px 30px rgba(37, 99, 235, 0.3);

    /* Radius & Spacing */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === CSS Reset & Global Standards === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ogen-text-main);
    background-color: var(--ogen-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ogen-navy);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* === Container & Layout System === */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-narrow { max-width: 900px; }
.container-wide { max-width: 1400px; }

/* === Section Layouts === */
.ogen-section {
    padding: 5.5rem 0;
    position: relative;
}

.ogen-section--light {
    background-color: #f1f5f9;
}

.ogen-section--white {
    background-color: #ffffff;
}

.ogen-section--dark {
    background: var(--gradient-hero);
    color: #ffffff;
}

.ogen-section--compact {
    padding: 3rem 0;
}

.ogen-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--ogen-royal-blue);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}

.ogen-section__label--cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--ogen-cyan);
}

.ogen-section__heading {
    font-size: clamp(1.5rem, 2.2vw, 1.85rem) !important;
    font-weight: 700 !important;
    color: var(--ogen-navy);
    line-height: 1.3 !important;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ogen-section__heading--white {
    color: #ffffff !important;
}

.ogen-section__heading--center {
    text-align: center;
}

.ogen-lead {
    font-size: 1rem !important;
    color: var(--ogen-text-muted);
    line-height: 1.65 !important;
}

.ogen-lead--center {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ogen-bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.header-top {
    background: var(--ogen-navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left, .header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.header-top-link:hover {
    color: var(--ogen-cyan);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.site-logo-img {
    height: 80px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.footer-logo-img {
    height: 95px;
    max-height: 95px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.mobile-logo-img {
    height: 65px;
    max-height: 65px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

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

.logo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ogen-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--ogen-text-main);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--ogen-royal-blue);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link.active {
    color: var(--ogen-royal-blue);
    background: rgba(37, 99, 235, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.9rem;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2.1rem;
    color: var(--ogen-navy);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: rgba(37, 99, 235, 0.08);
    color: var(--ogen-royal-blue);
}

.mobile-menu-toggle * {
    pointer-events: none;
}

/* Mobile Nav Drawer & Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-nav-overlay.active,
.mobile-nav-overlay.open,
.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 100%);
    color: #ffffff;
    z-index: 99999;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
    visibility: hidden;
}
.mobile-nav.active,
.mobile-nav.open,
.mobile-nav.show {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}
.mobile-nav-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-item {
    margin-bottom: 0.4rem;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(37, 99, 235, 0.25);
    color: #ffffff;
    padding-left: 1.25rem;
}
.mobile-nav-link i {
    font-size: 1.1rem;
    color: var(--ogen-cyan);
}

.mobile-nav-footer {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-contact-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}
.mobile-contact-link:hover {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }
}

/* ============================================
   BUTTONS & BADGES
   ============================================ */
.ogen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.ogen-btn--primary {
    background: var(--gradient-primary);
    color: #ffffff !important;
    border-color: var(--ogen-royal-blue);
}

.ogen-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: #ffffff !important;
}

.ogen-btn--secondary {
    background: var(--ogen-navy);
    color: #ffffff !important;
}

.ogen-btn--secondary:hover {
    background: var(--ogen-slate);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.ogen-btn--outline-primary {
    background: transparent;
    color: var(--ogen-royal-blue) !important;
    border-color: var(--ogen-royal-blue);
}

.ogen-btn--outline-primary:hover {
    background: var(--ogen-royal-blue);
    color: #ffffff !important;
}

.ogen-btn--outline-light {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.ogen-btn--outline-light:hover {
    background: #ffffff;
    color: var(--ogen-navy) !important;
    border-color: #ffffff;
}

.ogen-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.ogen-btn--lg {
    padding: 1.05rem 2.4rem;
    font-size: 1.05rem;
}

.ogen-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ogen-badge--blue { background: rgba(37, 99, 235, 0.1); color: var(--ogen-royal-blue); }
.ogen-badge--cyan { background: var(--ogen-cyan-light); color: var(--ogen-cyan); }
.ogen-badge--amber { background: var(--ogen-amber-light); color: var(--ogen-amber); }
.ogen-badge--green { background: var(--ogen-green-light); color: var(--ogen-green); }
.ogen-badge--outline { background: transparent; border: 1px solid var(--ogen-border); color: var(--ogen-text-muted); }

/* ============================================
   HERO BANNERS
   ============================================ */
.ogen-hero {
    position: relative;
    padding: 5.5rem 0 5rem;
    color: #ffffff;
    overflow: hidden;
}

.ogen-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0) 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .ogen-hero {
        padding: 3.5rem 0 3rem !important;
        min-height: 420px !important;
    }
    .ogen-hero__title {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
    }
    .ogen-hero__subtitle {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
    }
    .ogen-hero__actions {
        flex-direction: column !important;
        width: 100%;
    }
    .ogen-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.ogen-page-hero {
    position: relative;
    padding: 3rem 0 2rem;
    background: var(--gradient-hero);
    color: #ffffff;
    overflow: hidden;
}

.ogen-page-hero__title {
    font-size: clamp(1.75rem, 3.2vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: #ffffff;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem;
}

.ogen-page-hero__text {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.88);
    max-width: 650px;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.breadcrumb-item a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb-item a:hover { color: #ffffff; }
.breadcrumb-item.active { color: var(--ogen-cyan); font-weight: 600; }

/* ============================================
   CARDS & GRID SYSTEMS
   ============================================ */
.ogen-card {
    background: var(--ogen-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ogen-border);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.ogen-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

.ogen-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.08);
    color: var(--ogen-royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.ogen-card:hover .ogen-card__icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.ogen-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ogen-card__text {
    color: var(--ogen-text-muted);
    font-size: 0.975rem;
    line-height: 1.7;
}

/* Job Listing Cards */
.ogen-job-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ogen-border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ogen-job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

.ogen-job-card__featured {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--ogen-amber-light);
    color: var(--ogen-amber);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.ogen-job-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ogen-job-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ogen-navy);
    margin-bottom: 0.75rem;
}

.ogen-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--ogen-text-muted);
}

.ogen-job-card__meta i {
    color: var(--ogen-royal-blue);
}

/* Filter Card */
.ogen-filter-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ogen-border);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.form-control, .form-select {
    border-radius: var(--radius-md);
    border: 2px solid var(--ogen-border);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--ogen-royal-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* ============================================
   FOOTER COMPONENT
   ============================================ */
.site-footer {
    background: var(--ogen-dark-navy);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
    margin-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.logo-name-white {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.logo-tagline-light {
    color: rgba(255, 255, 255, 0.65);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.25rem;
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--ogen-royal-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--ogen-cyan);
    border-radius: var(--radius-full);
}

.footer-col-title-secondary {
    margin-top: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.925rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--ogen-cyan);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.925rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--ogen-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--ogen-cyan);
}

.footer-social-mobile {
    display: none;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #070d1e;
}

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

.footer-copyright {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--ogen-cyan);
}

.footer-bottom-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991.98px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 767.98px) {
    .ogen-section { padding: 3.5rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-social { display: none; }
    .footer-social-mobile { display: flex; margin-top: 1.5rem; }
    .ogen-filter-card { margin-top: -1.5rem; padding: 1.25rem; }
}

/* ============================================
   SEAMLESS GOOGLE TRANSLATE SUPPRESSION
   ============================================ */
#goog-gt-tt,
#goog-gt-tt *,
.goog-te-balloon-frame,
.goog-te-balloon-frame *,
.goog-tooltip,
.goog-tooltip *,
.goog-te-spinner-pos,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe[id^=":"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-gadget-icon,
.goog-te-menu-value,
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
}

font[style] {
    background-color: transparent !important;
    box-shadow: none !important;
}

html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.custom-lang-dropdown {
    display: flex;
    align-items: center;
    margin-left: 0.75rem;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.95rem;
    background: #f8fafc;
    color: var(--ogen-navy) !important;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.lang-dropdown-btn .lang-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ogen-royal-blue);
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.lang-dropdown-btn:hover,
.lang-dropdown-btn:focus,
.custom-lang-dropdown.show .lang-dropdown-btn {
    background: var(--ogen-royal-blue);
    color: #ffffff !important;
    border-color: var(--ogen-royal-blue);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.lang-dropdown-btn:hover .lang-icon-badge,
.custom-lang-dropdown.show .lang-dropdown-btn .lang-icon-badge {
    color: #ffffff;
}

.custom-lang-dropdown .dropdown-menu {
    border-radius: 14px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.5rem;
}

.custom-lang-dropdown .lang-option {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ogen-slate);
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 0;
}

.custom-lang-dropdown .lang-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

.custom-lang-dropdown .lang-option:hover,
.custom-lang-dropdown .lang-option.active {
    background: rgba(37, 99, 235, 0.08);
    color: var(--ogen-royal-blue);
    font-weight: 700;
}

.custom-lang-dropdown .lang-option.active .lang-badge {
    background: var(--ogen-royal-blue);
    color: #ffffff;
}

.lang-option-mobile.active {
    background: var(--ogen-royal-blue) !important;
    border-color: var(--ogen-royal-blue) !important;
    color: #fff !important;
    font-weight: 700;
}
