/*
  KAHRAMANLAR SABİT POMPA - CSS
  Modern, Premium, High Performance Architecture
*/

:root {
    --primary: #facc15;
    /* Etkileyici İnşaat Sarısı */
    --primary-hover: #eab308;
    --dark: #0f172a;
    /* Derin Koyu Mavi/Siyah */
    --dark-light: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px -5px rgba(250, 204, 21, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* --- YARDIMCI SINIFLAR --- */
.text-highlight {
    color: var(--primary);
}

.text-yellow {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: #94a3b8;
}

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

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.shadow-large {
    box-shadow: var(--shadow-lg);
}

.rounded-image {
    border-radius: 1rem;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--dark-light);
    transform: translateY(-2px);
}

.action-pop:active {
    transform: scale(0.95);
}

/* --- TOPBAR & NAVBAR --- */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* TOPBAR PREMIUM */
.topbar {
    background-color: #080c14;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 11px;
    padding: 8px 0;
    font-weight: 500;
}



.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

.tb-item i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.tb-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
}

.tb-text-muted {
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.tb-link-premium {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.tb-link-premium i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.tb-link-premium:hover {
    color: var(--primary);
}

.tb-socials .inst-link {
    color: #94a3b8;
    transition: var(--transition);
    display: flex;
}

.tb-socials .inst-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.tb-socials i {
    width: 16px;
    height: 16px;
}

/* NAVBAR MAIN */
.navbar {
    background-color: transparent;
    padding: 25px 0;
    /* Increase from 20px */
    transition: var(--transition);
}

/* Sticky Class Support (Triggered via JS) */
.navbar.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 16px 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
    text-shadow: none;
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--primary);
}

.navbar.scrolled .logo-text .brand-name {
    color: var(--dark);
    text-shadow: none;
}

.navbar.scrolled .logo-text .brand-tagline {
    color: rgba(15, 23, 42, 0.55);
    text-shadow: none;
}

.navbar.scrolled .logo-text .brand-sub {
    text-shadow: none;
}

.navbar.scrolled .brand-logo {
    height: 40px;
}

.navbar.scrolled .nav-cta {
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    /* Increase from 12px */
    text-decoration: none;
}

.brand-logo {
    height: 48px;
    /* Metinle daha uyumlu bir boyut (54px'den düşürdük) */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .brand-logo {
    transform: scale(1.05);
}

.icon-brand.drop-shadow {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    margin-bottom: 2px;
    /* Add some space below name */
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    /* More spacing for elegance */
    color: var(--primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
    /* Add some space below sub */
}

.brand-tagline {
    font-size: 11px;
    /* Slightly larger for readability */
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-weight: 400;
    margin-top: 6px;
    /* 2px'den 6px'ya çıkardık, daha aşağıda duracak */
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 35px;
    /* 30px'den artırdık */
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    /* Biraz daha zarif */
    font-size: 15px;
    /* Standart kurumsal boyuta çektik */
    text-shadow: none;
    /* Temiz görüntü için shadow'u kaldırdık */
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Premium underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium CTA Button in Navbar */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 30px;
    background: linear-gradient(135deg, #fcdf3c 0%, var(--primary) 100%);
    border-radius: 50px;
    color: var(--dark);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.cta-icon-wrapper {
    background-color: var(--dark);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* ensure proper stacking */
    z-index: 2;
}

.cta-icon-wrapper i,
.cta-icon-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    position: relative;
    z-index: 5;
    fill: none;
    stroke: var(--primary);
}

.cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.cta-text small {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(15, 23, 42, 0.7);
}

.cta-text span {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    background-image: url("assets/hero-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker, deeper gradient that allows yellow text to pop massively */
    background: linear-gradient(100deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding-top: 0;
    margin-top: 0;
}

.badge {
    display: inline-block;
    background-color: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-dark {
    background-color: rgba(15, 23, 42, 0.1);
    color: var(--dark);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow: none;
    backdrop-filter: none;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero h1 .text-highlight {
    display: block;
    margin-top: 12px;
    color: var(--primary);
    background: linear-gradient(to bottom, #fff7ad 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(250, 204, 21, 0.3));
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    /* Reduced from 40px */
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 18px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.trust-bar {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-item i {
    color: var(--primary);
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.3));
}

/* --- ORTAK SECTION KURALLARI --- */
.section {
    padding: 100px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* --- HİZMETLER GRID --- */
.grid {
    display: grid;
    gap: 24px;
}

/* --- HİZMETLER GRID REDESIGN --- */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    height: 380px;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
}

/* Dark Overlay for Image Cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card>* {
    position: relative;
    z-index: 2;
}

.feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Special styling for highlight card if needed, but now all follow the same sleek dark pattern */
.highlight-card {
    border: 2px solid var(--primary);
}

/* --- ÖZELLİKLER SPLIT --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.split-content .lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.check-list i {
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.check-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.check-list p {
    color: var(--text-muted);
    font-size: 15px;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--primary);
}

.experience-badge .num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--dark);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- NEDEN BİZ --- */
.why-grid {
    grid-template-columns: 1fr 1fr;
    background-color: var(--dark-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-box {
    padding: 64px;
}

.why-box.border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-xl {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.why-box h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 32px;
}

.why-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

/* --- STATS SECTION IMPACT REDESIGN --- */
.stats-section {
    padding: 80px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Subtle background pattern/texture for the dark section */
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(250, 204, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.stats-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(250, 204, 21, 0.2);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    /* Sarı yazı parlak olsun */
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}



.stat-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* --- PROCESS SECTION PREMIUM REDESIGN --- */
.process-section {
    background-color: #f8fafc;
    position: relative;
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

/* More modern connector line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #e2e8f0 0, #e2e8f0 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.step-box {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
}

.step-num {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    border: 4px solid var(--white);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    /* Daha belirgin olması için direkt sarı yaptık */
    color: var(--dark);
    /* Sarı üzerinde siyah ikon */
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(250, 204, 21, 0.4);
    box-shadow: 0 15px 25px rgba(250, 204, 21, 0.3);
    /* Güçlü sarı gölge */
}

.step-box:hover .step-icon {
    background: var(--dark);
    /* Hover'da tersine dönsün */
    color: var(--primary);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.step-icon i {
    width: 48px;
    /* İkonu büyüttük */
    height: 48px;
    stroke-width: 2.5px;
    /* İkon çizgilerini kalınlaştırdık */
}

.step-box h3 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.step-box p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-grid::before {
        display: none;
    }
}

/* --- MACHINERY SECTION --- */
/* --- MACHINERY SHOWCASE REDESIGN --- */
.machinery-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.showcase-image-area {
    position: relative;
    background: #f8fafc;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.showcase-image-area::before {
    content: 'PUMP';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    z-index: 0;
    letter-spacing: -10px;
}

.showcase-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-image-area:hover .showcase-image {
    transform: scale(1.05) rotate(-2deg);
}

.showcase-content {
    padding-right: 40px;
}

.showcase-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.showcase-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.showcase-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spec-card {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.spec-card i {
    color: var(--primary);
    margin-bottom: 12px;
}

.spec-card span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.spec-card strong {
    font-size: 20px;
    color: var(--dark);
    font-weight: 800;
}

@media (max-width: 1200px) {
    .showcase-container {
        gap: 40px;
    }

    .showcase-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-content {
        padding-right: 0;
        order: 2;
    }

    .showcase-image-area {
        order: 1;
        padding: 40px;
    }

    .showcase-image-area::before {
        font-size: 120px;
    }

    .showcase-spec-grid {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .showcase-spec-grid {
        grid-template-columns: 1fr;
    }

    .showcase-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .machinery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .machine-img {
        height: 250px;
    }

    .machine-info {
        padding: 25px;
    }

    .machine-specs {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(250, 204, 21, 0.08);
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 40px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question span {
    flex: 1;
}

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

.faq-question i {
    width: 24px;
    height: 24px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 40px 30px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

.faq-answer strong {
    color: var(--dark);
}

/* --- PROFESSIONAL WHY SECTION REDESIGN --- */
.professional-why-section {
    background-color: var(--dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.professional-why-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 20%, rgba(250, 204, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(250, 204, 21, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(250, 204, 21, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.why-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.why-icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
}

.why-badge {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
}

.why-card-body h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-divider {
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 25px;
}

.why-card-body p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.why-feature-list li i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

@media (max-width: 992px) {
    .why-showcase-grid {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 40px 30px;
    }
}

/* --- MODERN INDUSTRIAL FOOTER REDESIGN --- */
.site-footer {
    background: #0a0f1a;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Footer CTA Bar */
.footer-cta-bar {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 40px 0;
    border-top: 5px solid var(--primary);
}

.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.8;
}

.footer-cta-btn {
    padding: 16px 32px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

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

.footer-logo .brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.footer-logo .brand-sub {
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}

.footer-about {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.footer-contact strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    font-size: 15px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding: 30px 0;
    background: #050810;
    font-size: 14px;
}

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

.admin-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    margin-left: 10px;
}

.admin-link:hover {
    opacity: 1;
    color: var(--primary);
}

.credits a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 992px) {
    .navbar {
        background-color: var(--white);
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .brand-name {
        color: var(--dark);
        text-shadow: none;
    }

    .navbar .mobile-menu-btn {
        color: var(--dark);
    }

    .navbar .brand-logo {
        height: 40px;
    }

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .badge {
        padding: 6px 16px;
        margin-bottom: 20px;
        font-size: 11px;
    }

    .check-list li {
        gap: 12px;
        margin-bottom: 16px;
    }

    .check-list strong {
        font-size: 16px;
    }

    .trust-bar {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
    }

    .trust-item {
        font-size: 14px;
        gap: 10px;
        white-space: normal;
    }

    .trust-item i {
        width: 16px;
        height: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-card {
        padding: 15px 20px;
        bottom: 20px;
        right: 20px;
    }

    .sahibinden-gallery {
        margin: 20px 15px 0;
    }

    .experience-badge .num {
        font-size: 30px;
    }

    .main-photo-stage {
        height: 400px;
    }

    .stage-nav-btn {
        width: 45px;
        height: 45px;
    }

    .stage-nav-btn i {
        width: 24px;
        height: 24px;
    }

    .thumb-box {
        flex: 0 0 120px;
    }

    .cta-premium-inner {
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-premium-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fp-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-photo-stage {
        height: 280px;
    }

    .thumb-box {
        flex: 0 0 100px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* --- ANİMASYONLAR --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* --- NEW SECTIONS & MOBILE OVERLAY --- */

/* Hakkımızda */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
}

.about-image .img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    display: block;
}

.experience-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.exp-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
}

/* --- SAHIBINDEN EXACT GALLERY REDESIGN --- */
.gallery-section {
    padding: 100px 0;
    background-color: #f4f6f9;
}

.sahibinden-gallery {
    max-width: 1000px;
    margin: 40px auto 0;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.main-photo-stage {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Stage Navigation Arrows */
.stage-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stage-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.stage-nav-btn.prev {
    left: 20px;
}

.stage-nav-btn.next {
    right: 20px;
}

.stage-nav-btn i {
    width: 32px;
    height: 32px;
}

.main-photo-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

/* Thumbnail Grid */
.thumb-grid-container {
    padding: 20px;
    background: #fff;
}

.thumb-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.thumb-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.thumb-box {
    flex: 0 0 160px;
    /* Fixed width for single line scrolling */
    aspect-ratio: 4/3;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 2px;
    background: #fff;
    transition: all 0.2s;
}

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

.thumb-box:hover {
    border-color: #9ca3af;
}

.thumb-box.active {
    border: 3px solid #10b981;
    /* Green border like screenshot */
}

/* Gallery Footer */
.gallery-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.photo-count-info {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.gallery-nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-arr {
    width: 36px;
    height: 36px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
}

.nav-arr:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.nav-dots-container {
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-dot.active {
    background: #94a3b8;
}

/* Removed redundant old mid-file media queries */

/* --- FAQ TWO COLUMN REDESIGN --- */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* İletişim */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    padding: 12px;
    border-radius: 12px;
}

.contact-method h4 {
    margin-bottom: 4px;
    font-size: 16px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    background: rgba(15, 23, 42, 0.07);
    border: none;
    color: var(--dark);
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-item {
    color: var(--dark);
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 12px;
}

.mobile-nav-item:hover {
    color: var(--primary);
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .split-image {
        order: -1;
        margin-bottom: 30px;
    }

    .experience-badge {
        bottom: 10px;
        left: 10px;
        padding: 15px;
        z-index: 10;
    }

    .experience-badge .num {
        font-size: 28px;
    }
}