:root {
    --primary: #AE132E;
    --primary-hover: #8b0f25;
    --dark: #0a0a0a;
    --gray-bg: #f8f9fa;
    --border: rgba(0,0,0,0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 32px;
    --section-gap: 60px;
}

/* --- Global Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body { width: 100%; background: #fff; color: var(--dark); font-family: 'Plus Jakarta Sans', sans-serif; }

html { scroll-behavior: smooth; }
/* overflow-x: hidden yapısı position: sticky'i bozduğu için modern yaklaşım olan clip kullanıldı */
body { overflow-x: clip; }

h1, h2, h3, .clash { font-family: 'Clash Display', sans-serif; font-weight: 600; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- Header (Hizada & Genişletilmiş) --- */
header { 
    position: sticky; 
    top: 20px; 
    left: 0; 
    width: 100%; 
    z-index: 1000;
    margin-bottom: 30px;
}

.header-inner {
    width: 100%; /* Konteynere tam hiza için */
    height: 85px; 
    background: rgba(255, 255, 255, 1); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border);
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 40px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    margin: 0;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-desktop { display: flex; gap: 30px; align-items: center; }
.nav-desktop a { font-size: 14px; font-weight: 600; opacity: 0.7; }
.nav-desktop a:hover { opacity: 1; color: var(--primary); }

/* --- Desktop Dropdown --- */
.dropdown { position: relative; display: flex; align-items: center; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    padding: 12px; width: max-content; box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    display: flex; flex-direction: column; gap: 4px; z-index: 10;
}
/* Menüye geçerken farenin boşa düşmemesi için köprü */
.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 30px; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(25px); }
.dropdown-menu a { font-size: 14px; font-weight: 500; color: #444; padding: 10px 20px; border-radius: 8px; opacity: 1; transition: 0.2s; }
.dropdown-menu a:hover { background: var(--gray-bg); color: var(--primary); padding-left: 24px; } /* Hoverda sağa kayma efekti */

/* --- Header Tools (Social & Lang) --- */
.header-tools { display: flex; align-items: center; gap: 20px; }

/* --- Language Switch (Ayrı Yapı) --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-bg);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    border: 1px solid var(--border);
    cursor: pointer;
}
.lang-switcher:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.lang-flag { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }

/* --- Mobile Hamburger --- */
.hamburger { cursor: pointer; display: none; flex-direction: column; gap: 6px; z-index: 2100; width: 25px; }
.hamburger span { width: 100%; height: 2px; background: var(--dark); transition: var(--transition); }
.menu-open .hamburger span { background: var(--dark); } /* Beyaz arkaplanda siyah kalmalı */
.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Menu (Beyaz Arkaplan) --- */
.mobile-menu {
    position: fixed; top: 0; left: 100%; width: 100%; height: 100vh; background: #fff;
    z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: var(--transition);
}
.menu-open .mobile-menu { left: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 44px; color: var(--dark); cursor: pointer; transition: var(--transition); line-height: 1; }
.close-menu:hover { color: var(--primary); transform: rotate(90deg); }
.mobile-menu > ul { list-style: none; text-align: center; margin-bottom: 40px; width: 100%; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu ul a { font-size: 32px; font-family: 'Clash Display'; color: var(--dark); font-weight: 600; }

/* --- Mobile Menu Logo & Animations --- */
.mobile-menu-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-open .mobile-menu-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* --- Mobile Dropdown --- */
.mobile-dropdown-toggle { display: flex; align-items: center; justify-content: center; gap: 10px; }
.mobile-dropdown-toggle .arrow { display: inline-flex; align-items: center; transition: transform 0.3s; }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; opacity: 0; padding: 0; margin: 0; }
.mobile-dropdown.active .mobile-submenu { max-height: 400px; opacity: 1; margin-top: 15px; }
.mobile-dropdown.active .mobile-dropdown-toggle .arrow { transform: rotate(180deg); } /* Ok dönüş animasyonu */
.mobile-submenu li { margin: 15px 0; }
.mobile-submenu a { font-size: 18px !important; font-family: 'Plus Jakarta Sans', sans-serif !important; font-weight: 500 !important; color: #666 !important; }

.mobile-tools { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; width: 100%; }

/* --- Hero --- */
.hero-wrapper { 
    padding-top: 0; 
} 
.hero-frame { height: 75vh; min-height: 550px; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: #000; }
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; }
.hero-poster.is-hidden { opacity: 0; visibility: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; }
.hero-video.is-playing { opacity: 0.6; }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 8%; color: #fff; z-index: 2; }
.hero-content h1 { font-size: clamp(34px, 5vw, 72px); line-height: 1.0; margin-bottom: 25px; }
.hero-content p { font-size: 18px; max-width: 700px; opacity: 0.8; margin-bottom: 40px; font-weight: 300; line-height: 1.5; }

.btn-primary { 
    background: var(--primary); color: #fff; padding: 18px 40px; border-radius: 12px;
    font-weight: 700; display: inline-flex; align-items: center; gap: 10px; width: fit-content;
}

/* --- Bento Grid --- */
.bento-section { padding: var(--section-gap) 0; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bento-item { background: var(--gray-bg); border-radius: 24px; padding: 40px; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); word-wrap: break-word; overflow-wrap: break-word; }
.item-ceo { grid-column: span 2; grid-row: span 2; background: var(--dark); color: #fff; }
.item-stats { background: var(--primary); color: #fff; border: none; }
.stat-num { font-size: clamp(42px, 8vw, 64px); font-weight: 700; font-family: 'Clash Display'; color: #fff; }

/* --- Sectors (Görsel Netliği Artırıldı & Kırmızı Gradyan Eklendi) --- */
.sectors-section { padding: var(--section-gap) 0; background: #fff; }
.sectors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.sector-card { height: 450px; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--border); }
.sector-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0%); opacity: 0.9; transition: var(--transition); } /* Koyu filtre kaldırıldı */

.sector-overlay { 
    position: absolute; inset: 0; 
    /* Aşağıdan yukarıya azalan kırmızı gradyan */
    background: linear-gradient(to top, rgba(174, 19, 46, 0.9) 0%, rgba(174, 19, 46, 0.4) 40%, transparent 80%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; transition: var(--transition); 
}
.sector-card h3 { color: #fff; font-size: 20px; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.sector-card p { color: #fff; font-size: 13px; opacity: 0; max-height: 0; overflow: hidden; transition: var(--transition); }

.sector-card:hover img { transform: scale(1.1); opacity: 1; }
.sector-card:hover .sector-overlay { background: rgba(174, 19, 46, 0.85); }
.sector-card:hover p { opacity: 1; max-height: 80px; margin-top: 15px; }

/* --- Brand Scroller --- */
.brand-section { padding: 50px 0; border-top: 1px solid var(--border); overflow: hidden; width: 100%; }
.brand-track { display: flex; gap: 80px; width: max-content; animation: scroll 35s linear infinite; }
.brand-track span { font-family: 'Clash Display'; font-weight: 700; font-size: 22px; color: #ddd; letter-spacing: 2px; }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- News Section --- */
.news-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.news-career-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.news-list { display: flex; flex-direction: column; gap: 15px; }
.news-item { display: flex; align-items: center; padding: 30px 40px; background: #fff; border: 1px solid var(--border); border-radius: 20px; transition: var(--transition); text-decoration: none; color: var(--dark); }
.news-item:hover { background: var(--primary); border-color: var(--primary); transform: translateX(10px); box-shadow: 0 15px 30px rgba(174,19,46,0.2); }
.news-date { width: 180px; flex-shrink: 0; font-size: 14px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.news-title { flex-grow: 1; font-size: 20px; margin: 0; transition: var(--transition); }
.news-arrow { font-size: 24px; color: #ccc; transition: var(--transition); margin-left: 20px; }
.news-item:hover .news-date, .news-item:hover .news-title, .news-item:hover .news-arrow { color: #fff; }

/* --- Career Box --- */
.career-box { background: var(--dark); border-radius: var(--radius-lg); height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--border); }
.career-bg { position: absolute; inset: 0; background: url('img/kariyer.webp') center/cover; opacity: 0.7; transition: transform 0.8s ease; }
.career-box:hover .career-bg { transform: scale(1.08); opacity: 0.9; }
.career-content { position: relative; z-index: 2; padding: 40px; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.7) 50%, transparent 95%); color: #fff; }

/* --- Footer --- */
footer { padding: 60px 0 40px; border-top: 1px solid var(--border); background: var(--gray-bg); }
.footer-logo img { height: 50px; width: auto; margin-bottom: 25px; mix-blend-mode: multiply; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.footer-col h4 { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 25px; }
.footer-links { list-style: none; }
.footer-links.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.footer-links li { margin-bottom: 14px; }
.footer-links.two-cols li { margin-bottom: 0; }
.footer-links a { color: #666; font-size: 15px; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(6px); }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { color: var(--primary); transition: var(--transition); display: flex; opacity: 0.8; }
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

/* --- Responsive Fixes --- */
@media (max-width: 1200px) {
    .header-inner { height: 75px; padding: 0 30px; border-radius: var(--radius-lg); }
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .item-ceo { grid-column: span 2; }
    .news-career-grid { grid-template-columns: 1fr; gap: 40px; }
    .career-box { min-height: 350px; }
}

@media (max-width: 768px) {
    .container { padding: 0 25px; }
    header { top: 15px; margin-bottom: 45px; }
    .hero-frame { height: auto; aspect-ratio: 16 / 10; min-height: 240px; }
    .hero-content { padding: 20px 6%; }
    .hero-content h1 { font-size: clamp(18px, 5vw, 30px); line-height: 1.15; margin-bottom: 12px; }
    .hero-content p { display: none; }
    .hero-content .btn-primary { padding: 12px 24px; font-size: 14px; border-radius: 10px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item { grid-column: 1 / -1 !important; grid-row: auto !important; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .news-item { flex-direction: column; align-items: flex-start; padding: 25px; gap: 12px; }
    .news-date { width: auto; font-size: 13px; }
    .news-title { font-size: 18px; line-height: 1.4; }
    .news-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .header-inner { width: 100%; padding: 0 25px; }
    .item-ceo h3 { font-size: 24px !important; line-height: 1.3; }
}

/* =========================================
   ALT SAYFALAR (BİZDEN HABERLER)
========================================= */

/* --- Page Hero --- */
.page-hero { padding: 40px 0 60px; background: #fff; text-align: center; }
.page-hero h1 { font-size: 56px; margin-bottom: 20px; color: var(--dark); }
.page-hero p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* --- News Page Grid --- */
.news-page-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.news-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card-page { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.news-card-page:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.06); transform: translateY(-5px); border-color: rgba(174,19,46,0.3); }
.news-card-page .img-wrapper { height: 240px; overflow: hidden; }
.news-card-page img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.news-card-page:hover img { transform: scale(1.05); }
.news-card-page .content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.news-card-page .date { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 15px; display: inline-block; letter-spacing: 1px; }
.news-card-page h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark); line-height: 1.4; transition: var(--transition); }
.news-card-page:hover h3 { color: var(--primary); }
.news-card-page p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; }
.news-card-page .read-more { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--dark); display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.news-card-page:hover .read-more { color: var(--primary); }

.news-card-page.featured { grid-column: span 3; flex-direction: row; }
.news-card-page.featured .img-wrapper { width: 60%; height: auto; min-height: 400px; }
.news-card-page.featured .content { width: 40%; padding: 50px; justify-content: center; }
.news-card-page.featured h3 { font-size: 32px; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 60px; }
.pagination a { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 15px; border-radius: 12px; background: #fff; border: 1px solid var(--border); font-weight: 600; color: var(--dark); transition: var(--transition); }
.pagination a.active, .pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

@media (max-width: 1024px) {
    .news-grid-page { grid-template-columns: repeat(2, 1fr); }
    .news-card-page.featured { grid-column: span 2; flex-direction: column; }
    .news-card-page.featured .img-wrapper { width: 100%; height: 300px; }
    .news-card-page.featured .content { width: 100%; padding: 30px; }
    .news-card-page.featured h3 { font-size: 26px; }
    .page-hero { padding: 40px 0 40px; }
    .page-hero h1 { font-size: 42px; }
}
@media (max-width: 768px) {
    .news-grid-page { grid-template-columns: 1fr; }
    .news-card-page.featured { grid-column: 1 / -1; }
    .news-card-page.featured .img-wrapper { height: 240px; min-height: auto; }
    .news-card-page.featured h3 { font-size: 22px; }
}

/* --- News Detail Page --- */
.news-detail-section { padding: 40px 0 var(--section-gap); }
.breadcrumb { font-size: 14px; color: #666; margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.article-title { font-size: clamp(32px, 4vw, 48px); color: var(--dark); line-height: 1.2; margin-bottom: 20px; font-family: 'Clash Display', sans-serif; }
.article-meta { padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.article-date { font-size: 15px; font-weight: 600; color: var(--primary); letter-spacing: 1px; }

.news-detail-wrapper { max-width: 800px; margin: 0 auto; }
.article-main-image { width: 100%; border-radius: 24px; overflow: hidden; margin-bottom: 40px; }
.article-main-image img { width: 100%; height: auto; display: block; }

.article-body { font-size: 17px; line-height: 1.8; color: #444; }
.article-body p { margin-bottom: 25px; }
.article-body h3 { font-family: 'Clash Display', sans-serif; font-size: 28px; color: var(--dark); margin: 40px 0 20px; }
.article-body blockquote { font-size: 22px; font-family: 'Clash Display', sans-serif; color: var(--primary); padding-left: 24px; border-left: 4px solid var(--primary); margin: 40px 0; font-weight: 500; line-height: 1.5; }

.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.article-gallery img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; }

/* --- Article Navigation --- */
.article-navigation { display: flex; justify-content: space-between; gap: 20px; margin: 60px 0; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-navigation a { flex: 1; display: flex; flex-direction: column; text-decoration: none; transition: var(--transition); }
.article-navigation .nav-next { text-align: right; }
.nav-dir { font-size: 13px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.nav-title { font-family: 'Clash Display', sans-serif; font-size: 18px; color: var(--dark); line-height: 1.4; transition: var(--transition); }
.article-navigation a:hover .nav-title { color: var(--primary); }

/* --- Bottom Other News --- */
.bottom-other-news { margin-top: 40px; }
.bottom-news-title { font-family: 'Clash Display', sans-serif; font-size: 28px; color: var(--dark); margin-bottom: 30px; text-align: center; }
.bottom-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bottom-news-item { display: flex; flex-direction: column; gap: 15px; text-decoration: none; transition: var(--transition); }
.bottom-news-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; transition: var(--transition); }
.bottom-news-item:hover img { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.bottom-news-item h4 { font-size: 16px; color: var(--dark); line-height: 1.4; margin-bottom: 5px; transition: var(--transition); }
.bottom-news-item:hover h4 { color: var(--primary); }
.bottom-news-item span { font-size: 13px; color: var(--primary); font-weight: 700; letter-spacing: 1px; }

@media (max-width: 992px) {
    .article-title { font-size: 28px; }
    .article-gallery { grid-template-columns: 1fr; }
    .article-gallery img { height: 250px; }
}
@media (max-width: 768px) {
    .article-navigation { flex-direction: column; gap: 30px; text-align: left; padding: 30px 0; }
    .article-navigation .nav-next { text-align: left; }
    .bottom-news-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ALT SAYFALAR (HAKKIMIZDA)
========================================= */

/* --- About Intro --- */
.about-intro-section { padding: var(--section-gap) 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-content h2 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 25px; color: var(--dark); line-height: 1.2; font-family: 'Clash Display', sans-serif; }
.about-intro-content p { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.about-intro-image { width: 100%; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.about-intro-image img { width: 100%; height: auto; object-fit: cover; display: block; }

/* --- Companies Section --- */
.companies-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.companies-section .section-header { text-align: center; margin-bottom: 50px; }
.companies-section .section-header h2 { font-size: 36px; color: var(--dark); font-family: 'Clash Display', sans-serif; }

.company-list { display: flex; flex-direction: column; gap: 15px; max-width: 1000px; margin: 0 auto; }
.company-list-item { display: flex; align-items: center; padding: 30px 40px; background: #fff; border: 1px solid var(--border); border-radius: 20px; transition: var(--transition); }
.company-list-item:hover { background: #fff; border-color: transparent; box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: translateX(10px); }
.company-num { font-size: 24px; font-family: 'Clash Display', sans-serif; font-weight: 700; color: var(--primary); width: 60px; flex-shrink: 0; opacity: 0.4; transition: var(--transition); }
.company-list-item:hover .company-num { opacity: 1; }
.company-details { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.company-details h4 { font-size: 20px; color: var(--dark); font-family: 'Clash Display', sans-serif; transition: var(--transition); }
.company-details p { font-size: 15px; color: #666; margin-top: 8px; line-height: 1.6; }
.company-arrow { font-size: 24px; color: #ccc; margin-left: 20px; opacity: 0; transform: translateX(-15px); transition: var(--transition); }
.company-list-item:hover .company-arrow { opacity: 1; transform: translateX(0); color: var(--primary); }

/* --- Values Section --- */
.values-section { padding: var(--section-gap) 0; }
.values-section .section-header { text-align: center; margin-bottom: 50px; }
.values-section .section-header h2 { font-size: 36px; color: var(--dark); font-family: 'Clash Display', sans-serif; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.value-card { background: var(--gray-bg); padding: 40px 30px; border-radius: 20px; text-align: left; border: 1px solid transparent; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; }
.value-card::before {
    content: "✦";
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 90px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 300;
    color: rgba(174, 19, 46, 0.07);
    z-index: -1;
    transition: var(--transition);
    line-height: 1;
}
.value-card:hover { border-color: var(--primary); background: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(174,19,46,0.2); }
.value-card:hover::before { color: rgba(255, 255, 255, 0.15); transform: rotate(45deg) scale(1.15); }
.value-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark); font-family: 'Clash Display', sans-serif; transition: var(--transition); }
.value-card p { font-size: 15px; color: #666; transition: var(--transition); line-height: 1.5; }
.value-card:hover h3, .value-card:hover p { color: #fff; }

@media (max-width: 992px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-grid .about-intro-image { order: -1; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .company-list-item { flex-direction: column; align-items: flex-start; padding: 25px; gap: 5px; }
    .company-num { margin-bottom: 5px; }
    .company-details h4 { font-size: 18px; }
    .company-arrow { display: none; }
    .values-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ALT SAYFALAR (KARİYER)
========================================= */

/* --- HR Approach Section --- */
.hr-approach-section { padding: var(--section-gap) 0; background: #fff; }
.hr-approach-section .section-header { text-align: center; margin-bottom: 40px; }
.hr-approach-section .section-header h2 { font-size: 36px; color: var(--dark); font-family: 'Clash Display', sans-serif; }
.hr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hr-card { background: var(--gray-bg); padding: 40px 30px; border-radius: 20px; border: 1px solid var(--border); transition: var(--transition); border-top: 4px solid var(--primary); }
.hr-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.hr-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--dark); font-family: 'Clash Display', sans-serif; }
.hr-card p { font-size: 16px; color: #444; line-height: 1.6; }

/* --- Career Banner --- */
.career-banner { background: var(--dark); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.career-banner::before { content:''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&w=1600') center/cover; opacity: 0.15; }
.career-banner .container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.career-banner h2 { font-size: 36px; font-family: 'Clash Display', sans-serif; margin-bottom: 25px; }
.career-banner p { font-size: 18px; line-height: 1.8; opacity: 0.9; }

/* --- Application & Contact --- */
.application-section { padding: var(--section-gap) 0; }
.app-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-box { background: var(--gray-bg); padding: 40px; border-radius: 24px; border: 1px solid var(--border); }
.contact-info-box h3 { font-size: 28px; font-family: 'Clash Display', sans-serif; margin-bottom: 30px; color: var(--dark); }
.contact-detail { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-detail-icon { color: var(--primary); font-size: 24px; line-height: 1; margin-top: 2px; }
.contact-detail-text h4 { font-size: 13px; text-transform: uppercase; color: #999; margin-bottom: 5px; letter-spacing: 1px; font-weight: 700; }
.contact-detail-text p, .contact-detail-text a { font-size: 16px; color: var(--dark); font-weight: 500; text-decoration: none; transition: var(--transition); line-height: 1.5; }
.contact-detail-text a:hover { color: var(--primary); }
.kariyer-net-widget { margin-top: 40px; padding: 30px 25px; background: #fff; border-radius: 16px; border: 1px solid var(--border); text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.04); }
.kariyer-net-widget p { font-size: 14.5px; color: #555; margin-bottom: 20px; line-height: 1.6; }
.kariyer-net-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--primary); color: #fff; padding: 16px 25px; border-radius: 12px; font-weight: 600; transition: var(--transition); text-decoration: none; width: 100%; }
.kariyer-net-btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(174,19,46,0.25); color: #fff; }

.app-form-box h3 { font-size: 32px; font-family: 'Clash Display', sans-serif; margin-bottom: 10px; color: var(--dark); }
.app-form-box > p { color: #666; margin-bottom: 30px; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea { width: 100%; padding: 15px 20px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 15px; transition: var(--transition); background: var(--gray-bg); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(174,19,46,0.1); }
.kvkk-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
.kvkk-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.kvkk-group label { font-size: 13px; color: #666; line-height: 1.6; cursor: pointer; }

@media (max-width: 992px) {
    .hr-grid { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hr-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .career-banner { padding: 60px 0; }
    .career-banner h2 { font-size: 28px; }
}

/* =========================================
   ALT SAYFALAR (İLETİŞİM)
========================================= */

/* --- Contact Hero & Form Section --- */
.contact-main-section { padding: var(--section-gap) 0; }
.contact-layout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-map-wrapper { width: 100%; height: 100%; min-height: 500px; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.contact-map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(20%) contrast(90%); }

/* --- Locations Grid --- */
.locations-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.locations-section .section-title { font-size: 36px; color: var(--dark); font-family: 'Clash Display', sans-serif; text-align: center; margin-bottom: 50px; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.loc-card { background: #fff; padding: 35px 30px; border-radius: 20px; border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; gap: 15px; }
.loc-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); border-color: rgba(174,19,46,0.3); }
.loc-card h4 { font-family: 'Clash Display', sans-serif; font-size: 20px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.loc-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #555; line-height: 1.6; }
.loc-row svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.loc-row a { color: inherit; transition: var(--transition); }
.loc-row a:hover { color: var(--primary); }

@media (max-width: 1024px) {
    .contact-layout-grid { gap: 40px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .contact-layout-grid { grid-template-columns: 1fr; }
    .contact-map-wrapper { min-height: 400px; }
    .locations-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ALT SAYFALAR (YÖNETİM KURULU)
========================================= */

.board-section { padding: 40px 0 var(--section-gap); }
.board-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }

.board-member-row { display: flex; align-items: center; gap: 40px; padding: 25px 40px; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: var(--transition); }
.board-list:not(.board-grid-secondary) .board-member-row:nth-child(even) { background: var(--gray-bg); }
.board-member-row:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.04); border-color: rgba(174,19,46,0.25); transform: translateX(5px); }

.board-member-img { width: 140px; height: 140px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: var(--gray-bg); }
.board-member-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: var(--transition); display: block; }
.board-member-row:hover .board-member-img img { filter: grayscale(0%); transform: scale(1.05); }

.board-info { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.board-info h3 { font-size: 26px; font-family: 'Clash Display', sans-serif; color: var(--dark); margin: 0; transition: var(--transition); }
.board-info p { font-size: 15px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.board-grid-secondary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.board-grid-secondary .board-member-row { padding: 20px 25px; gap: 20px; }
.board-grid-secondary .board-member-img { width: 100px; height: 100px; border-radius: 10px; }
.board-grid-secondary .board-info h3 { font-size: 20px; }
.board-grid-secondary .board-info p { font-size: 13px; }

@media (max-width: 768px) { 
    .board-member-row { flex-direction: column; text-align: center; gap: 20px; padding: 30px; }
    .board-info h3 { font-size: 22px; }
    .board-grid-secondary { grid-template-columns: 1fr; }
    .board-grid-secondary .board-member-row { flex-direction: row; text-align: left; padding: 20px; gap: 15px; }
    .board-grid-secondary .board-member-img { width: 80px; height: 80px; }
    .board-grid-secondary .board-info h3 { font-size: 18px; }
}

/* =========================================
   ALT SAYFALAR (POLİTİKALAR)
========================================= */
.policy-section { padding: var(--section-gap) 0; }
.policy-layout { display: flex; gap: 60px; align-items: flex-start; max-width: 1200px; margin: 0 auto; }

.policy-sidebar { width: 320px; flex-shrink: 0; position: sticky; top: 130px; }
.policy-nav { display: flex; flex-direction: column; }
.policy-nav a { padding: 18px 25px; font-weight: 600; color: #666; border-left: 2px solid var(--border); transition: var(--transition); font-size: 15px; text-decoration: none; }
.policy-nav a:hover, .policy-nav a.active { color: var(--primary); border-left-color: var(--primary); background: var(--gray-bg); }

.policy-content { flex-grow: 1; }
.policy-article { margin-bottom: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--border); scroll-margin-top: 140px; }
.policy-article:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.policy-article h2 { font-size: 32px; color: var(--dark); font-family: 'Clash Display', sans-serif; margin-bottom: 25px; line-height: 1.3; }
.policy-article p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 20px; }
.policy-article ul { margin-left: 0; margin-bottom: 20px; list-style: none; display: flex; flex-direction: column; gap: 15px; }
.policy-article li { font-size: 16px; color: #444; line-height: 1.8; padding-left: 20px; position: relative; }
.policy-article li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

@media (max-width: 992px) {
    .policy-layout { flex-direction: column; gap: 30px; }
    .policy-sidebar { width: 100%; position: static; }
    .policy-nav { flex-direction: column; gap: 10px; border-bottom: none; padding-bottom: 10px; }
    .policy-nav a { width: 100%; border: 1px solid var(--border); padding: 16px 20px; background: var(--gray-bg); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
    .policy-nav a::after { content: '↓'; font-size: 16px; opacity: 0.3; transition: var(--transition); }
    .policy-nav a.active { background: var(--dark); color: #fff; border-color: var(--dark); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
    .policy-nav a.active::after { color: #fff; opacity: 1; transform: translateY(2px); }
    .policy-article { margin-bottom: 50px; padding-bottom: 40px; }
}

/* =========================================
   ALT SAYFALAR (SOSYAL SORUMLULUK)
========================================= */
.csr-stats-section { background: var(--dark); padding: 70px 0; color: #fff; border-top: 4px solid var(--primary); }
.csr-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.csr-stat-item h4 { font-family: 'Clash Display', sans-serif; font-size: clamp(36px, 5vw, 52px); color: var(--primary); margin-bottom: 10px; line-height: 1; }
.csr-stat-item p { font-size: clamp(12px, 2vw, 14px); color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; line-height: 1.4; }

.csr-projects-section { padding: var(--section-gap) 0; background: #fff; }
.csr-project-row { display: flex; align-items: center; gap: 80px; margin-bottom: 100px; }
.csr-project-row:last-child { margin-bottom: 0; }
.csr-project-row:nth-child(even) { flex-direction: row-reverse; }
.csr-project-img { flex: 1.2; border-radius: 24px; overflow: hidden; height: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.csr-project-img img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.8s ease, transform 0.8s ease; filter: grayscale(60%) contrast(110%); display: block; }
.csr-project-row:hover .csr-project-img img { filter: grayscale(0%) contrast(100%); transform: scale(1.05); }
.csr-project-content { flex: 1; }
.csr-project-tag { display: inline-block; padding: 6px 14px; background: var(--gray-bg); color: var(--primary); font-size: 13px; font-weight: 700; border-radius: 8px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); }
.csr-project-content h3 { font-size: 36px; font-family: 'Clash Display', sans-serif; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.csr-project-content p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }

@media (max-width: 992px) {
    .csr-project-row, .csr-project-row:nth-child(even) { flex-direction: column; gap: 40px; margin-bottom: 70px; }
    .csr-project-img { width: 100%; height: 350px; }
}
@media (max-width: 768px) {
    .csr-project-content h3 { font-size: 28px; }
}

/* =========================================
   ALT SAYFALAR (TURİZM / SEKTÖR DETAY)
========================================= */
.sector-detail-stats { background: var(--dark); padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.sector-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.sector-stat-item h4 { font-family: 'Clash Display', sans-serif; font-size: clamp(36px, 5vw, 48px); color: #fff; margin-bottom: 5px; line-height: 1; }
.sector-stat-item p { font-size: clamp(11px, 2vw, 13px); color: #888; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

.tourism-brands-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.tourism-brands-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.brand-card { background: #fff; padding: 60px 50px; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 15px 40px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.brand-main-logo { height: 130px; width: 100%; max-width: 320px; object-fit: contain; object-position: left center; margin-bottom: 15px; mix-blend-mode: multiply; }
.brand-title { font-family: 'Clash Display', sans-serif; font-size: 24px; margin-bottom: 20px; line-height: 1.2; letter-spacing: 0.5px; }
.brand-card p { font-size: 16px; color: #555; line-height: 1.8; }

.hotel-logos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 30px 0 40px 0; }
.hotel-logo-item { background: var(--gray-bg); border: 1px solid var(--border); border-radius: 12px; padding: 0px; height: 110px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.hotel-logo-item img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); mix-blend-mode: multiply; }
.hotel-logo-item:hover { background: #fff; border-color: rgba(174,19,46,0.3); box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-3px); }
.hotel-logo-item:hover img { transform: scale(1.05); }

.brand-action { margin-top: auto; border-top: 1px solid var(--border); padding-top: 30px; }
.brand-link-btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); font-size: 15px; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.brand-link-btn:hover { color: var(--primary); transform: translateX(5px); }

@media (max-width: 1024px) {
    .sector-stats-grid, .csr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .tourism-brands-layout { grid-template-columns: 1fr; }
    .hotel-logos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .brand-card { padding: 40px 30px; }
    .hotel-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-main-logo { height: 90px; }
    .brand-title { font-size: 22px; }
}
@media (max-width: 480px) {
    .sector-stats-grid, .csr-stats-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================
   ALT SAYFALAR (İNŞAAT & GAYRİMENKUL)
========================================= */

/* --- Timeline (Tarihçe) --- */
.timeline-section { padding: var(--section-gap) 0; background: #fff; }
.timeline-container { max-width: 900px; margin: 0 auto; padding-left: 20px; }
.timeline { border-left: 2px solid rgba(174,19,46,0.2); padding-left: 40px; position: relative; }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { 
    content: ''; position: absolute; left: -49px; top: 0; 
    width: 16px; height: 16px; border-radius: 50%; 
    background: var(--primary); border: 4px solid #fff; 
    box-shadow: 0 0 0 2px rgba(174,19,46,0.2); transition: var(--transition);
}
.timeline-item:hover::before { transform: scale(1.3); background: var(--dark); box-shadow: 0 0 0 2px var(--dark); }
.timeline-year { font-family: 'Clash Display', sans-serif; font-size: 28px; color: var(--primary); margin-bottom: 10px; line-height: 1; display: inline-block; }
.timeline-content p { font-size: 16.5px; color: #444; line-height: 1.8; margin-bottom: 15px; }
.timeline-content p:last-child { margin-bottom: 0; }

/* --- References Table --- */
.references-section { padding: var(--section-gap) 0; background: var(--gray-bg); }
.ref-table-wrapper { 
    background: #fff; border: 1px solid var(--border); border-radius: 20px; 
    overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.03); 
    margin: 40px auto 0; max-width: 900px;
}
.corporate-table { width: 100%; border-collapse: collapse; text-align: left; }
.corporate-table th { 
    background: var(--primary); color: #fff; font-family: 'Clash Display', sans-serif; 
    font-size: 15px; padding: 22px 30px; letter-spacing: 1px; font-weight: 600; text-transform: uppercase; border: none;
}
.corporate-table thead, .corporate-table thead tr { border: none; }
.corporate-table th:last-child { text-align: right; }
.corporate-table td { padding: 18px 30px; font-size: 15px; color: #444; border-bottom: 1px solid var(--border); transition: all 0.3s ease; }
.corporate-table tbody tr:nth-child(even) { background: #fafafa; }
.corporate-table tbody tr:last-child td { border-bottom: none; }
.corporate-table tbody tr:hover td { background: #f4f4f4; color: var(--primary); }
.corporate-table tbody tr:hover td:first-child { box-shadow: inset 4px 0 0 var(--primary); }
.corporate-table td:last-child { font-weight: 700; width: 120px; text-align: right; font-family: 'Clash Display', sans-serif; font-size: 18px; color: var(--primary); }

@media (max-width: 768px) {
    .timeline { padding-left: 30px; }
    .timeline-item::before { left: -39px; }
    .timeline-year { font-size: 24px; }
    .ref-table-wrapper { border-radius: 12px; }
    .corporate-table th, .corporate-table td { padding: 16px 12px; line-height: 1.5; }
    .corporate-table td { font-size: 14px; }
    .corporate-table th:last-child, .corporate-table td:last-child { width: 70px; min-width: 70px; font-size: 16px; text-align: right; }
}

/* =========================================
   ALT SAYFALAR (PERAKENDE / ABANT SU)
========================================= */
.factories-section { padding: var(--section-gap) 0; background: #fff; }
.factories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.factory-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.factory-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(174,19,46,0.1); }
.factory-card h3 { font-size: 26px; font-family: 'Clash Display', sans-serif; color: var(--dark); margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid var(--gray-bg); }
.factory-specs { list-style: none; margin-bottom: 30px; }
.factory-specs li { display: flex; justify-content: space-between; font-size: 15px; color: #555; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.factory-specs li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.factory-specs li strong { color: var(--dark); font-weight: 600; text-align: right; }
.factory-prod-title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.factory-table { width: 100%; border-collapse: collapse; margin-bottom: auto; }
.factory-table td { padding: 10px 0; font-size: 14px; color: #555; border-bottom: 1px solid var(--gray-bg); }
.factory-table tr:last-child td { border-bottom: none; }
.factory-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.factory-total { margin-top: 25px; padding: 15px; background: var(--primary); color: #fff; border-radius: 12px; text-align: center; font-size: 14.5px; font-weight: 500; display: flex; flex-direction: column; gap: 5px; }
.factory-total strong { font-size: 22px; font-family: 'Clash Display', sans-serif; font-weight: 600; }

@media (max-width: 1024px) { .factories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .factories-grid { grid-template-columns: 1fr; } .factory-card { padding: 30px 20px; } }

/* =========================================
   ALT SAYFALAR (HİZMET SEKTÖRÜ)
========================================= */
.services-section { padding: var(--section-gap) 0; background: #fff; }
.service-row { display: flex; align-items: center; gap: 80px; margin-bottom: 100px; }
.service-row:last-child { margin-bottom: 0; }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-img { flex: 1.2; border-radius: 24px; overflow: hidden; height: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.service-row:hover .service-img img { transform: scale(1.05); }
.service-content { flex: 1; }
.service-tag { display: inline-block; padding: 6px 14px; background: var(--gray-bg); color: var(--primary); font-size: 13px; font-weight: 700; border-radius: 8px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); }
.service-content h3 { font-size: 36px; font-family: 'Clash Display', sans-serif; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.service-content p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }

@media (max-width: 992px) {
    .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 40px; margin-bottom: 70px; }
    .service-img { width: 100%; height: 350px; }
}
@media (max-width: 768px) {
    .service-content h3 { font-size: 28px; }
}

/* =========================================
   ALT SAYFALAR (STATİK SAYFA ŞABLONU)
========================================= */
.static-page-section { padding: var(--section-gap) 0; background: var(--gray-bg); min-height: 50vh; }
.static-page-section .news-detail-wrapper { background: #fff; padding: 60px; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 15px 35px rgba(0,0,0,0.03); }

@media (max-width: 768px) {
    .static-page-section .news-detail-wrapper { padding: 40px 25px; border-radius: 16px; }
}

/* =========================================
   ALT SAYFALAR (404 HATA SAYFASI)
========================================= */
.error-404-section { padding: 120px 20px; text-align: center; min-height: 65vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background: #fff; position: relative; overflow: hidden; }
.error-404-code { font-size: clamp(150px, 25vw, 300px); font-family: 'Clash Display', sans-serif; font-weight: 700; color: var(--dark); line-height: 1; margin: 0; opacity: 0.03; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none; user-select: none; }
.error-404-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.error-404-content h1 { font-size: clamp(32px, 5vw, 48px); font-family: 'Clash Display', sans-serif; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.error-404-content p { font-size: 17px; color: #666; max-width: 500px; line-height: 1.6; margin-bottom: 40px; }

/* =========================================
   ALT SAYFALAR (HAKKIMIZDA - RAKAMLARLA KAYA HOLDİNG COMPACT)
========================================= */
.about-stats-section-compact {
    background: #0d0d0f;
    padding: 55px 0 65px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}
.stats-compact-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 26px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}
.stats-compact-header .stats-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin: 0;
}
.about-stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.about-stat-item-compact {
    text-align: left;
    position: relative;
    padding-right: 15px;
}
.about-stat-item-compact:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.stat-num-compact {
    font-family: 'Clash Display', sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label-compact {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .about-stats-section-compact { padding: 45px 0 55px; }
    .stats-compact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 25px;
    }
    .about-stats-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
    }
    .about-stat-item-compact::after {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .about-stats-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .stat-num-compact {
        font-size: 28px;
    }
    .stat-label-compact {
        font-size: 11px;
    }
}