/* =========================================
   Terminal Lojistik - Design System
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --red: #E53E3E;
    --red-dark: #C53030;
    --red-light: #FEB2B2;
    --dark: #0D0D0D;
    --dark-bg: #111111;
    --dark-card: #1A1A1A;
    --dark-card-2: #1E1E1E;
    --dark-border: rgba(255,255,255,0.08);
    --light-bg: #F7F7F8;
    --light-card: #FFFFFF;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --text-dark: #1A1A1A;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--white);
    background: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-400);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--gray-400); }
.top-bar a:hover { color: var(--white); }
.top-bar .email-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo img {
    height: 48px;
    width: auto;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}
.navbar-logo .logo-text span {
    color: var(--red);
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
}
.nav-quote-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid var(--red);
}
.nav-quote-btn:hover {
    background: transparent;
    color: var(--red) !important;
}
.lang-switch {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.lang-switch:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 0;
}
.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}
.hero-content h1 .highlight {
    color: var(--red);
    display: block;
}
.hero-content .hero-line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 24px 0;
}
.hero-content p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border: 2px solid var(--red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover {
    background: transparent;
    color: var(--red);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding-bottom: 80px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 24px;
    border-right: 1px solid var(--dark-border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(229,62,62,0.05); }
.stat-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-desc {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 80px 0 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('') no-repeat center;
    background-size: contain;
    opacity: 0.05;
}
.section-header {
    margin-bottom: 60px;
}
.section-tag {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
}
.section-line {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin-top: 16px;
}
.services-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}
.services-left {
    flex: 0 0 auto;
}
.services-right {
    max-width: 400px;
    padding-left: 20px;
    border-left: 3px solid var(--red);
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.service-card {
    background: var(--light-card);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card .card-line {
    width: 30px;
    height: 2px;
    background: var(--red);
    margin: 12px auto;
}
.service-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
}
.footer-cta .container { position: relative; z-index: 1; }
.footer-cta h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.footer-cta h2 .highlight { color: var(--red); font-style: italic; }
.footer-cta p {
    font-size: 16px;
    color: var(--gray-300);
    max-width: 500px;
}

.footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: 1px solid var(--dark-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 280px 200px 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}
.footer-brand .footer-logo span {
    color: var(--red);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.footer-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-300);
    align-items: flex-start;
}
.footer-info-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-menu h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}
.footer-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-300);
    padding: 6px 0;
}
.footer-menu a:hover { color: var(--white); padding-left: 4px; }
.footer-menu a svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
    fill: none;
}

.footer-certs h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}
.certs-main {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    align-items: center;
}
.cert-badge {
    width: 80px;
    height: auto;
    opacity: 0.85;
    transition: var(--transition);
}
.cert-badge:hover { opacity: 1; }
.iso-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.iso-item {
    text-align: center;
}
.iso-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 6px;
}
.iso-item .iso-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
}
.iso-item .iso-desc {
    font-size: 9px;
    color: var(--gray-400);
    line-height: 1.3;
}

.footer-legal {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.footer-legal a {
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-legal a svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
    fill: none;
}
.footer-legal a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: var(--gray-400);
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    border-color: var(--red);
    background: var(--red);
}
.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--gray-400);
}
.footer-social a:hover svg { fill: var(--white); }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: var(--dark-bg);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { margin-bottom: 8px; }
.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}
.page-hero h1 .highlight { color: var(--red); font-style: italic; }
.page-hero .hero-line { width: 50px; height: 3px; background: var(--red); margin: 16px 0; }
.page-hero .subtitle {
    font-size: 14px;
    color: var(--gray-400);
    font-style: italic;
}
.page-hero p {
    font-size: 15px;
    color: var(--gray-300);
    max-width: 500px;
    margin-top: 12px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-intro {
    padding: 80px 0;
    background: var(--dark);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-text p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-intro-text p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
}
.about-intro-img img {
    border-radius: var(--radius);
    width: 100%;
}

.about-operations {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--text-dark);
}
.about-ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-ops-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}
.about-ops-text h2 .highlight { color: var(--red); }
.about-ops-text .subtitle {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
    margin-top: 4px;
}
.about-ops-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 16px;
}
.about-ops-text p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
}
.about-ops-img img {
    border-radius: var(--radius);
    width: 100%;
}

.why-section {
    padding: 80px 0;
    background: var(--gray-100);
    color: var(--text-dark);
    text-align: center;
}
.why-section .section-tag { color: var(--red); }
.why-section .section-title { color: var(--text-dark); }
.why-section .section-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--gray-500);
    margin-top: 4px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    text-align: center;
}
.why-card {
    padding: 40px 24px;
}
.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.why-card .why-subtitle {
    font-size: 13px;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.why-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}
.why-card p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 12px;
    margin-top: 8px;
}

.vision-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}
.vision-section .section-tag { color: var(--red); }
.vision-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.vision-content h2 .highlight { color: var(--red); }
.vision-content .subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.vision-content p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 600px;
}
.vision-content p.bold {
    font-weight: 700;
    color: var(--white);
}
.vision-content p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
    margin-top: 8px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
    padding: 60px 0 80px;
    background: var(--dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
}
.contact-info-box {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-info-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-info-box .subtitle {
    font-size: 13px;
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-detail svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-detail p {
    font-size: 13px;
    color: var(--gray-300);
}
.contact-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 20px 0;
    height: 200px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.quote-form-box {
    background: var(--light-card);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--text-dark);
}
.quote-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.quote-form-header svg {
    width: 40px;
    height: 40px;
    stroke: var(--red);
    fill: none;
}
.quote-form-header h3 {
    font-size: 22px;
    font-weight: 700;
}
.quote-form-header .subtitle {
    font-size: 13px;
    font-style: italic;
    color: var(--gray-500);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 4px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.form-group label .required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.form-group .placeholder-hint {
    font-size: 11px;
    color: var(--gray-400);
    font-style: italic;
    margin-top: 4px;
}
.form-group textarea { min-height: 100px; resize: vertical; }

.btn-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    transition: var(--transition);
}
.btn-submit:hover { background: var(--red-dark); }
.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-disclaimer svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-400);
    fill: none;
}

/* =========================================
   JOIN PAGE
   ========================================= */
.join-who {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--text-dark);
}
.join-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.join-who-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}
.join-who-text h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-bottom: 16px;
}
.join-who-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}
.join-who-text p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
}
.join-who-img img {
    border-radius: var(--radius);
    width: 100%;
}

.join-looking {
    padding: 80px 0;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
}
.join-looking .section-line { margin: 16px auto 0; }
.join-looking .section-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 12px;
}
.join-looking .section-subtitle-en {
    font-size: 13px;
    font-style: italic;
    color: var(--gray-400);
}
.attr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.attr-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.attr-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}
.attr-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.attr-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--red);
    fill: none;
}
.attr-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.attr-card .attr-subtitle {
    font-size: 12px;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.attr-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}
.attr-card p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 12px;
    margin-top: 8px;
}

.join-process {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
}
.join-process h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}
.join-process .subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.join-process p {
    font-size: 14px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 24px;
}
.join-process p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
}
.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}
.email-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
}
.btn-cv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-cv:hover { background: var(--red-dark); }
.btn-cv svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
}

.join-quote-section {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}
.join-quote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    position: relative;
    padding: 0 40px;
}
.join-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--red);
    position: absolute;
    left: 0;
    top: -20px;
    font-family: var(--font-serif);
}
.join-quote::after {
    content: '"';
    font-size: 60px;
    color: var(--red);
    position: absolute;
    right: 0;
    bottom: -40px;
    font-family: var(--font-serif);
}
.join-quote strong { color: var(--white); font-weight: 700; }
.join-quote p.en {
    font-style: italic;
    color: var(--gray-400);
    font-size: 13px;
    margin-top: 8px;
}

/* =========================================
   BLOG / TERMINAL AKTİF
   ========================================= */
.blog-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.blog-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-hero .hero-bg::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}
.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
}
.blog-category-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.blog-hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-hero-content h1 .highlight { color: var(--red); }
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-300);
    margin-bottom: 24px;
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-400);
    fill: none;
}

.blog-section {
    padding: 60px 0 80px;
    background: var(--light-bg);
    color: var(--text-dark);
}
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.blog-section-header h2 {
    font-size: 24px;
    font-weight: 800;
}
.blog-section-header a {
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-img .blog-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
}
.blog-card-body {
    padding: 20px;
}
.blog-card-body .blog-meta {
    color: var(--gray-500);
    margin-bottom: 12px;
}
.blog-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.blog-card-body p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-body .read-more {
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-section {
    padding: 60px 0 80px;
    background: var(--light-bg);
    color: var(--text-dark);
}
.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}
.blog-detail-content h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.blog-detail-content .blog-meta {
    margin-bottom: 32px;
    color: var(--gray-500);
}
.blog-detail-content .content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}
.blog-detail-content .content p { margin-bottom: 16px; }
.blog-detail-content .content img { border-radius: var(--radius-sm); margin: 20px 0; }

.blog-featured-detail {
    padding: 60px 0;
    background: var(--white);
    color: var(--text-dark);
}
.blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.blog-featured-text h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.blog-featured-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}
.blog-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.sidebar-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}
.sidebar-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.sidebar-item p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =========================================
   QUOTE PAGE (Full page)
   ========================================= */
.quote-page {
    padding: 80px 0;
    background: var(--dark);
}
.quote-page .quote-form-box {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   ALERTS / FLASH MESSAGES
   ========================================= */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success {
    background: rgba(72,187,120,0.1);
    border: 1px solid rgba(72,187,120,0.3);
    color: #48BB78;
}
.alert-error {
    background: rgba(229,62,62,0.1);
    border: 1px solid rgba(229,62,62,0.3);
    color: var(--red);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .iso-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .attr-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 32px;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid var(--dark-border);
        z-index: 1000;
    }
    .nav-menu.active { right: 0; }
    .hero-content h1 { font-size: 36px; }
    .page-hero h1 { font-size: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-layout { flex-direction: column; }
    .services-right { max-width: 100%; border-left: none; padding-left: 0; border-top: 3px solid var(--red); padding-top: 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-intro-grid,
    .about-ops-grid,
    .contact-grid,
    .join-who-grid,
    .blog-featured-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta h2 { font-size: 32px; }
    .section-title { font-size: 28px; }
    .why-grid { grid-template-columns: 1fr; }
    .attr-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .blog-hero-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
    .services-grid { grid-template-columns: 1fr; }
    .attr-grid { grid-template-columns: 1fr; }
    .iso-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-main { flex-direction: column; }
}

/* =========================================
   ADMIN PANEL STYLES
   ========================================= */
.admin-body {
    font-family: var(--font-main);
    background: #F3F4F6;
    color: #1F2937;
    min-height: 100vh;
}
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 260px;
    background: #111827;
    color: white;
    padding: 24px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}
.admin-sidebar-logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 800;
}
.admin-sidebar-logo span { color: var(--red); }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 14px;
    color: #9CA3AF;
    transition: var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(229,62,62,0.1);
    color: white;
    border-right: 3px solid var(--red);
}
.admin-nav a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}
.admin-nav .nav-section {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6B7280;
    padding: 16px 24px 8px;
}
.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.admin-header h1 {
    font-size: 24px;
    font-weight: 700;
}
.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}
.admin-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.admin-stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.admin-stat-card .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
}
.admin-stat-card .label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    border-bottom: 2px solid #E5E7EB;
}
.admin-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}
.admin-table tr:hover td { background: #F9FAFB; }
.admin-table .badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}
.badge-success { background: #DEF7EC; color: #03543F; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-danger { background: #FEE2E2; color: #991B1B; }

.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}
.admin-form .form-row.single { grid-template-columns: 1fr; }
.admin-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}
.admin-form label .lang-tag {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
}
.lang-tag.tr { background: #FEE2E2; color: var(--red); }
.lang-tag.en { background: #DBEAFE; color: #1E40AF; }
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.admin-form textarea { min-height: 100px; resize: vertical; }
.admin-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.admin-form .checkbox-group input { width: auto; }
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}
.admin-btn-primary { background: var(--red); color: white; }
.admin-btn-primary:hover { background: var(--red-dark); }
.admin-btn-secondary { background: #E5E7EB; color: #374151; }
.admin-btn-secondary:hover { background: #D1D5DB; }
.admin-btn-danger { background: #FEE2E2; color: #991B1B; }
.admin-btn-danger:hover { background: #FECACA; }
.admin-btn-sm { padding: 6px 12px; font-size: 12px; }
.admin-actions { display: flex; gap: 8px; }

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
}
.admin-login-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.admin-login-card h1 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.admin-login-card h1 span { color: var(--red); }
.admin-login-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 32px;
}
.admin-login-card .form-group {
    margin-bottom: 16px;
}
.admin-login-card .form-group label {
    color: #374151;
}
.admin-login-card input {
    color: var(--text-dark);
}
.current-image {
    margin-top: 8px;
}
.current-image img {
    max-height: 100px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

/* Whatsapp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}
@keyframes pulse {
    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); }
}
