/* ═══════════════════════════════════════════════════════════ */
/* GÖRPET — Multi-Page Dark Industrial Site                    */
/* Brand Colors: Red #DC1E2D · Blue #0072BC                    */
/* ═══════════════════════════════════════════════════════════ */

/* ── Splash Screen ── */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0a14;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash-screen.splash-hide {
    opacity: 0;
    visibility: hidden;
}

.splash-inner {
    text-align: center;
}

.splash-logo {
    width: 220px;
    max-width: 60vw;
    animation: splashLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.splash-bar {
    width: 180px;
    max-width: 50vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.splash-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #DC1E2D, #0072BC);
    animation: splashBarFill 2s ease-in-out forwards;
}

@keyframes splashBarFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.splash-tagline {
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: splashTagIn 0.6s 0.5s ease forwards;
    opacity: 0;
}

@keyframes splashTagIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Cookie Consent Banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.cookie-show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 1.6rem;
    color: #f0a500;
    flex-shrink: 0;
}

.cookie-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.cookie-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--brand-blue);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #005ea0;
}

.cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
}

.cookie-btn-reject:hover {
    color: var(--brand-red);
}

.cookie-clear-link {
    color: #7a8599 !important;
    font-size: 0.82rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.2s;
}

.cookie-clear-link:hover {
    color: var(--brand-red) !important;
}

.cookie-clear-link i {
    margin-right: 3px;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-float::before {
    content: 'Bize yazın!';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(10, 10, 20, 0.9);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

html[lang="en"] .whatsapp-float::before {
    content: 'Message us!';
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}

/* Cookie banner pushes WhatsApp button up when visible */
#cookie-banner.cookie-show~.whatsapp-float {
    bottom: 100px;
}

/* Light mode overrides */
[data-theme="light"] #splash-screen {
    background: #f5f7fb;
}

[data-theme="light"] .splash-tagline {
    color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .splash-bar {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cookie-inner {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cookie-text strong {
    color: #1a1a2e;
}

[data-theme="light"] .cookie-btn-necessary {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a2e;
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .cookie-btn-necessary:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cookie-btn-reject {
    color: #7a8599;
}

[data-theme="light"] .whatsapp-float::before {
    background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        padding: 1rem 1.2rem;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float::before {
        display: none;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand */
    --brand-red: #DC1E2D;
    --brand-blue: #0072BC;
    --brand-red-dark: #b8182a;
    --brand-blue-dark: #005a96;

    /* Theme */
    --bg-dark: #0a1128;
    --bg-darker: #060d1f;
    --bg-card: #111d3a;
    --bg-card-hover: #162044;
    --accent: #00f5d4;
    --gradient-brand: linear-gradient(135deg, var(--brand-blue), var(--accent));
    --gradient-red: linear-gradient(135deg, var(--brand-red), #ff4d5a);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #8d99ae;
    --text-dim: #4a5578;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Motion */
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-glow: 0 0 30px rgba(0, 114, 188, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
}

/* ── Light Mode ── */
[data-theme="light"] {
    --bg-dark: #f5f7fb;
    --bg-darker: #eaecf2;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f2f8;
    --accent: #00b89c;
    --gradient-brand: linear-gradient(135deg, var(--brand-blue), var(--accent));
    --gradient-red: linear-gradient(135deg, var(--brand-red), #ff6b75);

    --text-main: #1a1a2e;
    --text-muted: #5a6378;
    --text-dim: #9aa3b8;

    --shadow-glow: 0 0 30px rgba(0, 114, 188, 0.1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --border-subtle: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero {
    background: linear-gradient(160deg, #e8ecf5 0%, #dce3f0 30%, #d4dced 60%, #e0e5f0 100%);
}

[data-theme="light"] .hero::before,
[data-theme="light"] .hero::after {
    opacity: 0.3;
}

[data-theme="light"] .showcase-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .showcase-card h4 {
    color: #1a1a2e;
}

[data-theme="light"] .showcase-card p {
    color: #5a6378;
}

[data-theme="light"] .showcase-stat {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .showcase-stat-label {
    color: #7a8599;
}

[data-theme="light"] .header-main {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .header.scrolled .header-main {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .main-nav>li>a {
    color: #1a1a2e;
}

[data-theme="light"] .main-nav>li>a:hover,
[data-theme="light"] .main-nav>li>a.active {
    color: var(--brand-red);
}

[data-theme="light"] .logo-text {
    color: #1a1a2e;
}

[data-theme="light"] .mega-panel {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    border-top: 2px solid var(--brand-blue);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .mega-col-title,
[data-theme="light"] .mega-links a {
    color: #1a1a2e;
}

[data-theme="light"] .mega-col-desc {
    color: #5a6378;
}

[data-theme="light"] .bento-card {
    border-color: var(--accent, rgba(0, 114, 188, 0.3));
}

[data-theme="light"] .section-label {
    color: var(--brand-blue);
}

[data-theme="light"] footer {
    background: #f0f2f8;
    color: #3a3f50;
}

[data-theme="light"] .footer-watermark {
    color: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .footer-col h4 {
    color: #1a1a2e;
}

[data-theme="light"] .footer-col ul li a,
[data-theme="light"] .footer-contact li {
    color: #5a6378;
}

[data-theme="light"] .footer-col ul li a:hover {
    color: var(--brand-red);
}

[data-theme="light"] .footer-logo-text {
    color: #1a1a2e;
}

[data-theme="light"] .footer-about p {
    color: #5a6378;
}

[data-theme="light"] .footer-socials a {
    background: rgba(0, 0, 0, 0.06);
    color: #5a6378;
}

[data-theme="light"] .footer-socials a:hover {
    background: var(--brand-red);
    color: #ffffff;
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.08);
    color: #7a8599;
}

[data-theme="light"] .footer-bottom-links a {
    color: #5a6378;
}

[data-theme="light"] .footer-bottom-links a:hover {
    color: var(--brand-red);
}

[data-theme="light"] .hero-trust .trust-item {
    color: #5a6378;
}

[data-theme="light"] .hero-badge {
    background: rgba(0, 114, 188, 0.1);
    color: var(--brand-blue);
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-showcase:hover .showcase-card {
    opacity: 0.6;
}

[data-theme="light"] .btn-outline {
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

[data-theme="light"] .hamburger span {
    background: #1a1a2e;
}

/* Dropdown menus */
[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dropdown-menu li a {
    color: #3a3f50;
}

[data-theme="light"] .dropdown-menu li a:hover {
    background: #f0f2f8;
    color: var(--brand-red);
}

/* Mega panel extras */
[data-theme="light"] .mega-cta {
    color: var(--brand-blue);
}

[data-theme="light"] .mega-promo-content h5 {
    color: #1a1a2e;
}

[data-theme="light"] .mega-promo-content p {
    color: #5a6378;
}

[data-theme="light"] .mega-col-highlight {
    background: #f0f4ff;
    border: 1px solid rgba(0, 114, 188, 0.1);
    border-radius: var(--radius-lg);
}

[data-theme="light"] .mega-links li a i {
    color: var(--brand-blue);
}

[data-theme="light"] .mega-links li a:hover {
    color: var(--brand-red);
}

/* Header top bar */
[data-theme="light"] .header-top {
    background: #f0f2f8;
    border-bottom-color: rgba(0, 0, 0, 0.06);
    color: #5a6378;
}

[data-theme="light"] .header-top a {
    color: #5a6378;
}

[data-theme="light"] .header-top a:hover {
    color: var(--brand-red);
}

[data-theme="light"] .header-top-right a {
    color: #5a6378;
}

[data-theme="light"] .b2b-btn {
    background: var(--brand-red);
    color: #ffffff !important;
}

/* Nav CTA button */
[data-theme="light"] .nav-cta {
    background: var(--brand-red) !important;
    color: #ffffff !important;
}

/* Section headings */
[data-theme="light"] .section-title {
    color: #1a1a2e;
}

[data-theme="light"] .section-desc {
    color: #5a6378;
}

/* Bento card extras - keep white text since overlay provides contrast */
[data-theme="light"] .bento-card h3 {
    color: #ffffff;
}

[data-theme="light"] .bento-card p {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .bento-card .bento-link {
    color: #ffffff;
}

/* Station cards */
[data-theme="light"] .station-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .station-card h3,
[data-theme="light"] .station-card h4 {
    color: #1a1a2e;
}

[data-theme="light"] .station-card p,
[data-theme="light"] .station-card span {
    color: #5a6378;
}

/* Counter / stat cards */
[data-theme="light"] .stat,
[data-theme="light"] .counter-item {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .stat h3,
[data-theme="light"] .counter-item h3,
[data-theme="light"] .counter-item .counter-number {
    color: #1a1a2e;
}

[data-theme="light"] .stat p,
[data-theme="light"] .counter-item p {
    color: #5a6378;
}

/* News & policy cards */
[data-theme="light"] .news-card,
[data-theme="light"] .policy-card,
[data-theme="light"] .mission-card,
[data-theme="light"] .about-feature,
[data-theme="light"] .hr-card,
[data-theme="light"] .why-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .news-card h3,
[data-theme="light"] .policy-card h3,
[data-theme="light"] .mission-card h3,
[data-theme="light"] .about-feature h4,
[data-theme="light"] .hr-card h3,
[data-theme="light"] .why-card h3 {
    color: #1a1a2e;
}

[data-theme="light"] .news-card p,
[data-theme="light"] .policy-card p,
[data-theme="light"] .mission-card p,
[data-theme="light"] .about-feature p,
[data-theme="light"] .hr-card p,
[data-theme="light"] .why-card p {
    color: #5a6378;
}

/* FAQ accordion */
[data-theme="light"] .faq-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .faq-question {
    color: #1a1a2e;
}

[data-theme="light"] .faq-answer {
    color: #5a6378;
}

/* About section text */
[data-theme="light"] .about-left h2 {
    color: #1a1a2e;
}

[data-theme="light"] .about-lead {
    color: #1a1a2e;
}

[data-theme="light"] .about-left>p {
    color: #5a6378;
}

[data-theme="light"] .about-feature i {
    color: var(--brand-blue);
}

/* Stat bar */
[data-theme="light"] .stat-num {
    color: #1a1a2e;
}

[data-theme="light"] .stat-label {
    color: #5a6378;
}

[data-theme="light"] .stats-bar {
    background: #f5f7fb;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Why icon */
[data-theme="light"] .why-icon {
    background: rgba(0, 114, 188, 0.08);
    color: var(--brand-blue);
}

[data-theme="light"] .why-icon-red {
    background: rgba(220, 30, 45, 0.08);
    color: var(--brand-red);
}

[data-theme="light"] .why-icon-accent {
    background: rgba(0, 245, 212, 0.08);
    color: #00b894;
}

/* CTA section */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f0f4ff 100%);
    border-top: 1px solid rgba(0, 114, 188, 0.15);
    border-bottom: 1px solid rgba(0, 114, 188, 0.15);
}

[data-theme="light"] .cta-content h2 {
    color: #1a1a2e;
}

[data-theme="light"] .cta-content p {
    color: #5a6378;
}

[data-theme="light"] .btn-outline {
    border-color: rgba(0, 0, 0, 0.15);
    color: #3a3f50;
}

[data-theme="light"] .btn-outline:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

/* Form inputs */
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a2e;
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
    color: #9aa3b8;
}

/* Oil tab buttons & product cards */
[data-theme="light"] .oil-tab-btn {
    background: #f0f2f8;
    color: #5a6378;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .oil-tab-btn.active {
    background: var(--brand-blue);
    color: #ffffff;
}

[data-theme="light"] .product-card,
[data-theme="light"] .oil-cat-card {
    background: #f5f7fb;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .product-card-name {
    color: #1a1a2e;
}

[data-theme="light"] .product-card-brand {
    color: #5a6378;
}

[data-theme="light"] .product-card-action {
    background: rgba(0, 114, 188, 0.1);
    color: var(--brand-blue);
}

[data-theme="light"] .oil-cat-card h3 {
    color: #1a1a2e;
}

[data-theme="light"] .oil-cat-card p {
    color: #5a6378;
}

/* Service detail & project cards */
[data-theme="light"] .service-detail {
    background: transparent;
}

[data-theme="light"] .service-detail-text h2 {
    color: #1a1a2e;
}

[data-theme="light"] .service-detail-text p {
    color: #5a6378;
}

[data-theme="light"] .service-detail-text ul li {
    color: #3a3f50;
}

[data-theme="light"] .service-detail-text ul li i {
    color: var(--brand-blue);
}

[data-theme="light"] .service-detail-text .section-tag {
    color: var(--brand-blue);
}

[data-theme="light"] .project-showcase {
    background: transparent;
}

[data-theme="light"] .project-year-badge {
    display: none;
}

[data-theme="light"] .project-details h2 {
    color: #1a1a2e;
}

[data-theme="light"] .project-lead {
    color: #1a1a2e;
}

[data-theme="light"] .project-details>p {
    color: #5a6378;
}

[data-theme="light"] .project-highlights li {
    color: #3a3f50;
}

[data-theme="light"] .project-highlights li i {
    color: var(--brand-blue);
}

[data-theme="light"] .project-details .section-tag {
    color: var(--brand-blue);
}

[data-theme="light"] .mission-block,
[data-theme="light"] .mission-detail {
    background: #f5f7fb;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mission-block h3,
[data-theme="light"] .mission-detail h3 {
    color: #1a1a2e;
}

[data-theme="light"] .mission-block p,
[data-theme="light"] .mission-detail p {
    color: #5a6378;
}

/* Project highlight cards */
[data-theme="light"] .project-highlight {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
}

[data-theme="light"] .project-highlight-content h3 {
    color: #1a1a2e;
}

[data-theme="light"] .project-highlight-content>p {
    color: #5a6378;
}

[data-theme="light"] .project-features li {
    color: #3a3f50;
}

[data-theme="light"] .project-features li i {
    color: var(--brand-blue);
}

[data-theme="light"] .project-highlight-img {
    border-color: rgba(0, 0, 0, 0.08);
}

/* Section alt & headers */
[data-theme="light"] .section-alt {
    background: #f8f9fc;
}

[data-theme="light"] .section-header h2 {
    color: #1a1a2e;
}

[data-theme="light"] .section-header p {
    color: #5a6378;
}

[data-theme="light"] .section-tag {
    color: var(--brand-blue);
}

[data-theme="light"] .section-tag-red {
    color: var(--brand-red);
}

/* Buttons */
[data-theme="light"] .btn-primary {
    background: var(--brand-red);
    color: #ffffff;
}

[data-theme="light"] .btn-blue {
    background: var(--brand-blue);
    color: #ffffff;
}

/* B2B button in top bar stays as-is (dark top bar) */

/* Mega service card (mobile nav) */
[data-theme="light"] .mega-service-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mega-service-card h4 {
    color: #1a1a2e;
}

[data-theme="light"] .mega-service-card p {
    color: #5a6378;
}

/* ── Theme Toggle Button ── */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    border-color: var(--accent);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
    color: #5a6378;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: inline;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: inline;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

/* ── Language Switch Button ── */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
}

[data-theme="light"] .lang-switch {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a2e;
}

[data-theme="light"] .lang-switch:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--brand-blue);
}

/* Smooth body transition */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-red {
    color: var(--brand-red);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 30, 45, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 30, 45, 0.5);
    background: var(--brand-red-dark);
}

.btn-blue {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 114, 188, 0.35);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 114, 188, 0.5);
    background: var(--brand-blue-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════ */
/* HEADER                                                      */
/* ═══════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(6, 13, 31, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

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

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-left a {
    color: var(--text-muted);
}

.header-top-left a:hover {
    color: var(--accent);
}

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

.header-top-right a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.header-top-right a:hover {
    color: var(--accent);
}

.b2b-btn {
    background: var(--brand-red);
    color: #fff !important;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.b2b-btn:hover {
    background: var(--brand-red-dark);
}

/* Main Nav */
.header-main {
    background: rgba(10, 17, 40, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled .header-main {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

/* Main Nav Links */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav>li>a {
    padding: 0 1.1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    transition: var(--transition);
}

.main-nav>li>a:hover,
.main-nav>li>a.active {
    color: #fff;
}

.main-nav>li>a.active {
    border-bottom: 2px solid var(--brand-red);
}

.main-nav>li>a i.fa-chevron-down {
    font-size: 0.6rem;
    transition: var(--transition);
}

.main-nav>li:hover>a i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-cta {
    background: var(--brand-red) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    height: auto !important;
    margin-left: 1rem;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--brand-red-dark) !important;
    box-shadow: 0 4px 20px rgba(220, 30, 45, 0.3);
    transform: translateY(-2px);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    transform: translateY(8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a i {
    color: var(--brand-blue);
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.dropdown-menu li a:hover {
    background: rgba(0, 114, 188, 0.08);
    color: #fff;
    padding-left: 1.8rem;
}

/* Mega Panel (Services) — Full Width, outside container */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 2px solid var(--brand-blue);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.mega-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-col {
    padding: 2rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.mega-col-title i {
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.mega-col-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.mega-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.mega-links li a i {
    font-size: 0.6rem;
    color: var(--brand-blue);
    transition: var(--transition);
}

.mega-links li a:hover {
    color: #fff;
    padding-left: 6px;
}

.mega-links li a:hover i {
    color: var(--brand-red);
}

.mega-cta {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.mega-cta:hover {
    color: var(--accent);
    gap: 10px;
}

.mega-col-highlight {
    background: rgba(0, 114, 188, 0.06);
    padding: 0 !important;
}

.mega-promo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-promo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
}

.mega-promo-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mega-promo-content h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.mega-promo-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex: 1;
}

/* Legacy mega-service-card (kept for subpages using old structure) */
.mega-service-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.mega-service-card:hover {
    background: rgba(0, 114, 188, 0.1);
}

.mega-service-card i {
    font-size: 1.4rem;
    color: var(--brand-blue);
    margin-top: 4px;
}

.mega-service-card h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.mega-service-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════ */
/* HERO (Home only)                                            */
/* ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #060d1f 0%, #0a1128 30%, #0d1a3a 60%, #0a1128 100%);
}

/* Particle network canvas */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}



/* Animated glowing orb — top right */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 188, 0.15) 0%, rgba(0, 114, 188, 0.03) 50%, transparent 70%);
    animation: heroOrb1 8s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Animated glowing orb — bottom left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 30, 45, 0.08) 0%, rgba(220, 30, 45, 0.02) 50%, transparent 70%);
    animation: heroOrb2 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes heroOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

/* ── Hero Visual — Showcase Cards ── */
.hero-showcase {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

.showcase-card {
    position: absolute;
    width: 210px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

/* Hover: siblings dim */
.hero-showcase:hover .showcase-card {
    opacity: 0.55;
    filter: blur(1px);
}

/* Hover: active card pops — preserve horizontal offset */
.hero-showcase .showcase-card:hover {
    opacity: 1 !important;
    filter: blur(0) !important;
    z-index: 20 !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-showcase .showcase-card-1:hover {
    transform: translateX(-315px) translateY(0px) scale(1.05) rotate(0deg) !important;
}

.hero-showcase .showcase-card-2:hover {
    transform: translateX(-105px) translateY(-20px) scale(1.05) rotate(0deg) !important;
}

.hero-showcase .showcase-card-3:hover {
    transform: translateX(105px) translateY(-5px) scale(1.05) rotate(0deg) !important;
}

.hero-showcase .showcase-card-4:hover {
    transform: translateX(315px) translateY(0px) scale(1.05) rotate(0deg) !important;
}

.showcase-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.showcase-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.showcase-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(220, 30, 45, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--brand-red);
}

.showcase-icon-blue {
    background: rgba(0, 114, 188, 0.15);
    color: var(--brand-blue);
}

.showcase-icon-accent {
    background: rgba(0, 245, 212, 0.12);
    color: var(--accent);
}

.showcase-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.showcase-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-stat-num small {
    font-size: 1rem;
}

.showcase-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card positions — fanned cascade, no overlap */
.showcase-card-1 {
    border-left: 3px solid var(--brand-red);
    transform: translateX(-315px) translateY(15px) rotate(-4deg);
    z-index: 3;
    box-shadow: 0 10px 40px rgba(220, 30, 45, 0.1);
    animation: floatCard1 6s ease-in-out infinite;
}

.showcase-card-1:hover {
    box-shadow: 0 20px 60px rgba(220, 30, 45, 0.25) !important;
}

.showcase-card-2 {
    border-left: 3px solid var(--brand-blue);
    transform: translateX(-105px) translateY(-10px) rotate(-1.5deg);
    z-index: 5;
    box-shadow: 0 15px 50px rgba(0, 114, 188, 0.15);
    animation: floatCard2 7s ease-in-out infinite;
}

.showcase-card-2:hover {
    box-shadow: 0 20px 60px rgba(0, 114, 188, 0.25) !important;
}

.showcase-card-3 {
    border-left: 3px solid var(--accent);
    transform: translateX(105px) translateY(8px) rotate(1.5deg);
    z-index: 4;
    box-shadow: 0 12px 45px rgba(0, 245, 212, 0.1);
    animation: floatCard3 6.5s ease-in-out infinite;
}

.showcase-card-3:hover {
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.25) !important;
}

.showcase-card-4 {
    border-left: 3px solid #a78bfa;
    transform: translateX(315px) translateY(5px) rotate(4deg);
    z-index: 3;
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.1);
    animation: floatCard4 7.5s ease-in-out infinite;
}

.showcase-card-4:hover {
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.25) !important;
}

.showcase-icon-purple {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
}




/* Each animation preserves its card's unique offset */
@keyframes floatCard1 {
    0%, 100% { transform: translateX(-315px) translateY(15px) rotate(-4deg); }
    50% { transform: translateX(-315px) translateY(2px) rotate(-3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateX(-105px) translateY(-10px) rotate(-1.5deg); }
    50% { transform: translateX(-105px) translateY(-22px) rotate(-1deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateX(105px) translateY(8px) rotate(1.5deg); }
    50% { transform: translateX(105px) translateY(-4px) rotate(1deg); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateX(315px) translateY(5px) rotate(4deg); }
    50% { transform: translateX(315px) translateY(-8px) rotate(3deg); }
}




/* Decorative blurred orbs */
.showcase-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.showcase-deco-1 {
    width: 200px;
    height: 200px;
    background: rgba(220, 30, 45, 0.12);
    top: 0;
    right: 5%;
    animation: showcaseFloat1 8s ease-in-out infinite;
}

.showcase-deco-2 {
    width: 160px;
    height: 160px;
    background: rgba(0, 114, 188, 0.1);
    top: 45%;
    right: 40%;
    animation: showcaseFloat2 10s ease-in-out infinite;
}

.showcase-deco-3 {
    width: 120px;
    height: 120px;
    background: rgba(0, 245, 212, 0.08);
    bottom: 10%;
    right: 20%;
    animation: showcaseFloat3 9s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 30, 45, 0.12);
    border: 1px solid rgba(220, 30, 45, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-red);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 0.95;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.hero-actions .btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════ */
/* PAGE HEADER (Subpages)                                      */
/* ═══════════════════════════════════════════════════════════ */
.page-header {
    position: relative;
    padding: 4rem 0 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
}

[data-theme="light"] .page-header {
    background: linear-gradient(135deg, #e8eaf0, #f0f2f8);
}

[data-theme="light"] .page-header h1 {
    color: #1a1a2e;
}

[data-theme="light"] .page-header p {
    color: #5a6378;
}

[data-theme="light"] .breadcrumb a {
    color: #5a6378;
}

[data-theme="light"] .breadcrumb .current {
    color: #1a1a2e;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 188, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 114, 188, 0.3), transparent);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--brand-blue);
}

.breadcrumb .sep {
    color: var(--text-dim);
}

.breadcrumb .current {
    color: var(--brand-red);
    font-weight: 600;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════ */
/* PARTNERS MARQUEE                                            */
/* ═══════════════════════════════════════════════════════════ */
.partners,
.marquee-section {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem 0;
    overflow: hidden;
}

.partners-track,
.marquee-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.partner-item,
.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dim);
    white-space: nowrap;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

.partner-item:hover,
.marquee-track span:hover {
    color: var(--brand-blue);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* SECTION COMMON                                              */
/* ═══════════════════════════════════════════════════════════ */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background: var(--bg-darker);
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-tag-red {
    background: rgba(220, 30, 45, 0.1);
    color: var(--brand-red);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════ */
/* BENTO GRID SERVICES (Homepage)                              */
/* ═══════════════════════════════════════════════════════════ */
.services-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 380px;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s, box-shadow 0.4s;
    cursor: pointer;
    min-height: 280px;
    text-decoration: none;
    color: inherit;
}

.bento-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.bento-card:hover .bento-bg {
    transform: scale(1.06);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 188, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 114, 188, 0.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 13, 31, 0.97) 0%, rgba(6, 13, 31, 0.3) 60%);
    transition: var(--transition);
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to top, rgba(6, 13, 31, 0.98) 0%, rgba(6, 13, 31, 0.5) 70%);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 114, 188, 0.15);
    color: var(--brand-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bento-content>i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.4));
    transition: transform 0.3s;
}

.bento-card:hover .bento-content>i {
    transform: scale(1.15);
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.bento-card:hover .bento-link {
    gap: 14px;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.bento-link:hover {
    gap: 14px;
}

.bento-large {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-stations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.bento-stations span {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════════ */
/* ABOUT / STATS                                               */
/* ═══════════════════════════════════════════════════════════ */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-left .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.about-left h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-left>p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
}

.about-feature:hover {
    border-color: rgba(0, 114, 188, 0.3);
    background: rgba(0, 114, 188, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--brand-blue);
    margin-top: 2px;
    transition: filter 0.3s;
}

.about-feature:hover i {
    filter: drop-shadow(0 0 8px rgba(0, 114, 188, 0.5));
}

.about-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-right {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.about-img-wrap img {
    width: 100%;
    filter: brightness(0.85);
    transition: var(--transition);
}

.about-img-wrap:hover img {
    filter: brightness(1);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.12), rgba(220, 30, 45, 0.08));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* MISSION / VISION                                            */
/* ═══════════════════════════════════════════════════════════ */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.values-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
}

.values-grid span i {
    color: var(--accent);
    font-size: 0.8rem;
}

.mission-card.full-width {
    grid-column: span 2;
}

/* Mission page-specific */
.mission-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.mission-block {
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 525.9px !important;
}

.mission-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.mission-block p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* POLICIES                                                    */
/* ═══════════════════════════════════════════════════════════ */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .policy-card h3 i {
    margin-right: 0.5rem;
    color: var(--brand-blue);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.policy-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.policy-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.policy-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.policy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.policy-cert-link {
    display: block;
    margin-bottom: 1rem;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    transition: var(--transition);
}

.policy-cert-link:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.policy-cert-img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--radius-md, 8px);
    background: rgba(255, 255, 255, 0.03);
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.policy-card ul li {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.policy-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-blue);
}

/* ═══════════════════════════════════════════════════════════ */
/* CERTIFICATES                                                */
/* ═══════════════════════════════════════════════════════════ */

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.certificate-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.certificate-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #fff;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-img img {
    transform: scale(1.03);
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 2rem;
    color: #fff;
}

.certificate-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.certificate-info {
    padding: 1.25rem 1.5rem;
}

.certificate-badge {
    display: inline-block;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.certificate-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.certificate-badge-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.certificate-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.certificate-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.certificate-date {
    margin-top: 0.35rem !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent) !important;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* STATIONS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.station-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.station-card .station-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.station-card .station-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.station-card:hover .station-img img {
    transform: scale(1.05);
}

.station-body {
    padding: 1.2rem 1.5rem 1.5rem;
}

.station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition);
}

.station-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.station-card:hover::before {
    opacity: 1;
}

.station-brand {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.station-brand.total {
    background: rgba(0, 114, 188, 0.2);
    color: var(--brand-blue);
}

.station-brand.petrol-ofisi {
    background: rgba(220, 30, 45, 0.12);
    color: var(--brand-red);
}

.station-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.station-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.station-details p i {
    color: var(--brand-blue);
    width: 16px;
    text-align: center;
}

.station-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.station-map:hover {
    color: var(--brand-blue);
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════ */
/* PROJECTS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.project-visual img {
    width: 100%;
    filter: brightness(0.7);
    transition: var(--transition);
}

.project-visual:hover img {
    filter: brightness(0.9);
}

.project-year-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-blue);
    opacity: 0.6;
    line-height: 1;
}

.project-details .section-tag {
    margin-bottom: 1rem;
}

.project-details h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.project-lead {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-details>p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.project-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.project-highlights li i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* HR                                                          */
/* ═══════════════════════════════════════════════════════════ */
.hr-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.hr-content .section-tag {
    margin-bottom: 1rem;
}

.hr-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.hr-lead {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.hr-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hr-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.hr-card:hover {
    border-color: var(--brand-blue);
    background: var(--bg-card-hover);
}

.hr-card i {
    font-size: 1.5rem;
    color: var(--brand-blue);
    margin-top: 3px;
}

.hr-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hr-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════ */
/* NEWS                                                        */
/* ═══════════════════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.news-date {
    background: var(--bg-darker);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.news-date .day {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--brand-red);
}

.news-date .month {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-body {
    padding: 1.5rem;
}

.news-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.news-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
}

.news-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════ */
/* QUOTE / CONTACT FORM                                        */
/* ═══════════════════════════════════════════════════════════ */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.quote-info .section-tag {
    margin-bottom: 1rem;
}

.quote-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.quote-info>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-contact-info>div {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quote-contact-info i {
    font-size: 1.2rem;
    color: var(--brand-blue);
    margin-top: 4px;
}

.quote-contact-info strong {
    display: block;
    margin-bottom: 2px;
}

.quote-contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.quote-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.quote-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ═══════════════════════════════════════════════════════════ */
/* SERVICE PAGES (detail)                                      */
/* ═══════════════════════════════════════════════════════════ */
.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-text .section-tag {
    margin-bottom: 1rem;
}

.service-detail-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-detail-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.service-detail-text ul li i {
    color: var(--accent);
}

.service-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-img img {
    width: 100%;
}

/* Oil categories */
.oil-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.oil-cat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.oil-cat-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.oil-cat-card i {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.oil-cat-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.oil-cat-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.oil-cat-card ul {
    margin-top: 1rem;
}

.oil-cat-card ul li {
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 1rem;
    position: relative;
}

.oil-cat-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
}

/* Brand badges */
.brand-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.brand-badge-blue {
    background: rgba(0, 114, 188, 0.15);
    color: var(--brand-blue);
    border: 1px solid rgba(0, 114, 188, 0.3);
}

.brand-badge-red {
    background: rgba(220, 30, 45, 0.15);
    color: var(--brand-red);
    border: 1px solid rgba(220, 30, 45, 0.3);
}

.brand-badge-accent {
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 245, 212, 0.2);
}

/* Oil category link cards */
.oil-cat-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.oil-cat-link:hover {
    transform: translateY(-6px);
}

.oil-sub-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.oil-sub-cats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.oil-sub-cats span i {
    font-size: 0.7rem;
    color: var(--brand-blue);
    margin-bottom: 0;
}

.oil-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.oil-cat-link:hover .oil-cat-cta i {
    transform: translateX(4px);
}

.oil-cat-cta i {
    transition: transform 0.3s;
}

/* ═══════════════════════════════════════════════════════════ */
/* TAB SYSTEM                                                  */
/* ═══════════════════════════════════════════════════════════ */
.oil-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.oil-tabs::-webkit-scrollbar {
    display: none;
}

.oil-tab-btn {
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.oil-tab-btn:hover {
    color: #fff;
    border-color: rgba(0, 114, 188, 0.3);
}

.oil-tab-btn.active {
    background: rgba(0, 114, 188, 0.15);
    color: var(--brand-blue);
    border-color: rgba(0, 114, 188, 0.4);
}

.oil-tab-content {
    display: none;
}

.oil-tab-content.active {
    display: block;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(0, 114, 188, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.product-card-brand {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.product-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.product-card-action:hover {
    background: rgba(0, 114, 188, 0.25);
}

/* Tab content count badge */
.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.7rem;
    margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════════ */
/* WHY CHOOSE US                                               */
/* ═══════════════════════════════════════════════════════════ */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    width: calc((100% - 3rem) / 3);
    min-width: 260px;
    box-sizing: border-box;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 114, 188, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 114, 188, 0.12);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.why-icon-red {
    background: rgba(220, 30, 45, 0.12);
    color: var(--brand-red);
}

.why-icon-accent {
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════ */
/* PROJECT SHOWCASE                                            */
/* ═══════════════════════════════════════════════════════════ */
.project-highlight {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.project-highlight-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-highlight-img img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.project-highlight-img:hover img {
    transform: scale(1.04);
}

.project-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(220, 30, 45, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.project-highlight-content>p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.project-features li i {
    color: var(--accent);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* ANIMATED COUNTERS                                           */
/* ═══════════════════════════════════════════════════════════ */
.counters-section {
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.06) 0%, var(--bg-dark) 40%, rgba(220, 30, 45, 0.04) 100%);
    border-top: 1px solid rgba(0, 114, 188, 0.1);
    border-bottom: 1px solid rgba(220, 30, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 188, 0.06), transparent 60%);
    pointer-events: none;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item {
    padding: 2rem 1rem;
}

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 114, 188, 0.1);
    border: 1px solid rgba(0, 114, 188, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    color: var(--brand-blue);
    transition: all 0.3s;
}

.counter-item:hover .counter-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 114, 188, 0.2);
}

.counter-num {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* FAQ ACCORDION                                               */
/* ═══════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(0, 114, 188, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--brand-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* POSITIONS & APPLICATION FORM                                */
/* ═══════════════════════════════════════════════════════════ */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.position-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

.position-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 114, 188, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.position-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.position-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(220, 30, 45, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.position-icon-blue {
    background: rgba(0, 114, 188, 0.1);
    color: var(--brand-blue);
}

.position-icon-accent {
    background: rgba(0, 245, 212, 0.1);
    color: #00f5d4;
}

.position-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.position-dept {
    font-size: 0.8rem;
    color: var(--brand-blue);
    font-weight: 600;
}

.position-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.position-details i {
    margin-right: 4px;
    color: var(--brand-red);
}

.position-card>p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Application form */
.application-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
}

.form-group label i {
    margin-right: 6px;
    color: var(--brand-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.form-group textarea {
    resize: vertical;
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-card);
}

.file-upload-area:hover {
    border-color: var(--brand-blue);
    background: rgba(0, 114, 188, 0.04);
}

.file-upload-area i {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.file-upload-area p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.file-browse {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: underline;
}

.file-name {
    font-size: 0.8rem;
    color: var(--brand-blue);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand-blue);
}

.checkbox-label a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    align-self: flex-start;
}

/* Light mode overrides for positions & form */
[data-theme="light"] .position-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .position-header h4 {
    color: #1a1a2e;
}

[data-theme="light"] .position-card>p {
    color: #5a6378;
}

[data-theme="light"] .position-details {
    color: #5a6378;
}

[data-theme="light"] .form-group label {
    color: #3a3f50;
}

[data-theme="light"] .file-upload-area {
    border-color: rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

[data-theme="light"] .file-upload-area:hover {
    border-color: var(--brand-blue);
    background: rgba(0, 114, 188, 0.04);
}

[data-theme="light"] .checkbox-label span {
    color: #3a3f50;
}

/* ═══════════════════════════════════════════════════════════ */
/* PARTNERS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 114, 188, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 114, 188, 0.1);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
}

.partner-icon-red {
    background: rgba(220, 30, 45, 0.1);
    color: var(--brand-red);
}

.partner-icon-accent {
    background: rgba(0, 245, 212, 0.1);
    color: #00f5d4;
}

.partner-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

[data-theme="light"] .partner-card {
    background: #f5f7fb;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .partner-card h4 {
    color: #1a1a2e;
}

[data-theme="light"] .partner-card p {
    color: #5a6378;
}
/* ═══════════════════════════════════════════════════════════ */
/* CTA SECTION                                                 */
/* ═══════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 114, 188, 0.04) 50%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(0, 114, 188, 0.2);
    border-bottom: 1px solid rgba(0, 114, 188, 0.2);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 188, 0.1) 0%, transparent 55%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════ */
/* FOOTER                                                      */
/* ═══════════════════════════════════════════════════════════ */
.footer {
    background: #020510;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    white-space: nowrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 0.8rem;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-blue);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--brand-blue);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact li a {
    color: var(--text-muted);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-dim);
}

.footer-bottom-links a:hover {
    color: var(--brand-blue);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                  */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr 0.8fr;
    }

    .hero-showcase {
        height: 400px;
    }

    .showcase-card {
        width: 180px;
        padding: 1rem;
    }

    .showcase-card-1 {
        transform: translateX(-255px) translateY(10px) rotate(-4deg);
    }

    .showcase-card-2 {
        transform: translateX(-85px) translateY(-8px) rotate(-1.5deg);
    }

    .showcase-card-3 {
        transform: translateX(85px) translateY(6px) rotate(1.5deg);
    }

    .showcase-card-4 {
        transform: translateX(255px) translateY(4px) rotate(4deg);
    }

    .stations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-showcase,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .quote-layout,
    .about-layout,
    .hr-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-grid,
    .policies-grid,
    .certificates-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mission-card.full-width {
        grid-column: span 2;
    }

    .oil-categories {
        grid-template-columns: 1fr;
    }

    .header-top-left span:last-child {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        gap: 1.25rem;
    }

    .why-card {
        width: calc((100% - 1.25rem) / 2);
        min-width: 220px;
    }

    .project-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .header-top {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav>li {
        height: auto;
    }

    .main-nav>li>a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        min-width: auto;
        width: auto;
        padding: 0.5rem 0 0.5rem 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
    }

    .mega-panel {
        position: static;
        transform: none;
        width: 100%;
        border: none;
        box-shadow: none;
        background: var(--bg-darker);
    }

    .mega-panel:not(.active) {
        display: none;
    }

    .mega-panel-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mega-col {
        padding: 0.8rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mega-col-highlight {
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-cta {
        margin: 1rem 0 0 0 !important;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem 0 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: 0;
    }

    .hero-showcase::-webkit-scrollbar {
        display: none;
    }

    .hero-showcase:hover .showcase-card {
        opacity: 1;
        filter: none;
    }

    .showcase-card {
        position: static !important;
        min-width: 200px;
        width: 200px;
        flex-shrink: 0;
        animation: none !important;
        transform: none !important;
    }

    .showcase-deco {
        display: none;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .why-grid {
        gap: 1rem;
    }

    .why-card {
        width: 100%;
        min-width: unset;
    }

    .project-highlight {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .mission-grid,
    .policies-grid,
    .certificates-grid,
    .stations-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .mission-card.full-width {
        grid-column: span 1;
    }

    .mission-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card {
        flex-direction: column;
    }

    .news-date {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 6rem 0 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .oil-tabs {
        gap: 0.4rem;
    }

    .oil-tab-btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* LIGHTBOX                                                    */
/* ═══════════════════════════════════════════════════════════ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    background: #ff1744;
}

.lightbox-caption {
    margin-top: 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.certificate-card {
    cursor: pointer;
}

@media (max-width: 600px) {
    .lightbox-content {
        max-width: 95vw;
        padding: 0 1rem;
    }

    .lightbox-close {
        top: -12px;
        right: 4px;
    }
}


/* ===== Product Groups Grid ===== */
.product-groups-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.product-group-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    aspect-ratio: 3 / 4;
    width: calc((100% - 5rem) / 5);
    min-width: 180px;
    max-width: 260px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.product-group-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-group-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-group-card:hover .product-group-img img {
    transform: scale(1.08);
}

.product-group-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
    transition: background 0.35s ease;
}

.product-group-card:hover .product-group-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
}

.product-group-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    text-align: center;
}

.product-group-label span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-group-card {
        width: calc((100% - 2.5rem) / 3);
    }
}

@media (max-width: 768px) {
    .product-groups-grid {
        gap: 1rem;
    }
    .product-group-card {
        width: calc((100% - 1rem) / 2);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .product-groups-grid {
        gap: 0.75rem;
    }
    .product-group-card {
        width: calc((100% - 0.75rem) / 2);
        min-width: 120px;
    }

    .product-group-label span {
        font-size: 0.88rem;
    }
}


/* ===== Oto Bakım Ürünleri ===== */
.oto-bakim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.oto-bakim-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.oto-bakim-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.oto-bakim-img {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oto-bakim-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.oto-bakim-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.oto-bakim-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.oto-bakim-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.oto-bakim-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.oto-bakim-features li i {
    color: var(--brand-blue);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .oto-bakim-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .oto-bakim-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .oto-bakim-img {
        width: 140px;
        height: 170px;
    }

    .oto-bakim-features {
        align-items: center;
    }
}


/* ===== Yağ Kategorileri ===== */
.yag-kat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.yag-kat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.yag-kat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.yag-kat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(220, 30, 45, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.yag-kat-icon-blue {
    background: rgba(0, 114, 188, 0.1);
    color: var(--brand-blue);
}

.yag-kat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.yag-kat-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .yag-kat-grid {
        grid-template-columns: 1fr;
    }
}
