/* =============================================
   GKMC Website Clone - Exact Match CSS
   ============================================= */

:root {
    /* Brand Colors */
    --primary: #0099cc;
    --accent: #40bbf4;
    --dark-blue: #007ead;
    --text: #555555;
    --heading: #0099cc;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: rgb(40, 40, 40);
    
    /* Spacing & Transitions */
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* Utility Classes for Inline Style Replacement */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }
.text-large { font-size: 120% !important; }
.text-shadow { text-shadow: 1px 1px 5px rgba(0,0,0,0.5) !important; }

.mt-neg-90 { margin-top: -90px !important; }
.mt-neg-140 { margin-top: -140px !important; }
.mt-neg-200 { margin-top: -200px !important; }

/* Ensure Slider Heading stays Accent Blue */
.slide-heading {
    color: var(--accent) !important;
}

/* Fix Navigation Link Colors */
.nav-main > .menu-item > .nav-top-link {
    color: var(--text);
}

/* Specific override for active language button & active menu links */
.nav-main > .menu-item > .nav-top-link.lang-active,
.nav-main > .menu-item.active > .nav-top-link {
    color: var(--dark-blue) !important;
}

/* Hover state: Light Blue */
.nav-main > .menu-item > .nav-top-link:hover {
    color: var(--accent) !important;
}

@media (max-width: 849px) {
    .mt-neg-90, .mt-neg-140, .mt-neg-200 { margin-top: 0 !important; }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: var(--white);
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 120%;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media screen and (max-width: 549px) {
    body {
        font-size: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: var(--primary);
}

h1 {
    font-size: 1.5em;
    line-height: 1.3;
}

.thin-font {
    font-weight: 300;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.text-center {
    text-align: center;
}

/* =============================================
   Page Loader
   ============================================= */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s .3s;
    pointer-events: none;
}

.loading-site .page-loader {
    opacity: 0.98;
    pointer-events: all;
}

.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-loader-logo {
    width: 220px;
    margin: 0;
    padding-bottom: 25px;
    animation: pageLoadZoom 1.3s ease-out;
    display: flex;
    justify-content: center;
}

.page-loader-logo a {
    display: block;
    width: 100%;
}

.page-loader-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.page-loader-spin {
    animation: pageLoadZoomSpin 1.3s ease-out;
    display: flex;
    justify-content: center;
    width: 100%;
}

.loading-spin {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 20px;
}

@keyframes pageLoadZoom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageLoadZoomSpin {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   Header
   ============================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-wrapper {
    position: relative;
}

.header-main {
    height: 75px;
    position: relative;
    z-index: 2;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
#logo {
    width: 180px;
    flex-shrink: 0;
    position: relative;
    top: 6px;
}

#logo a {
    display: block;
}

#logo img {
    max-height: 65px;
    width: auto;
}

/* Header Background */
.header-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.header-bg-color {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.71);
}

/* Sticky */
#header.stuck .header-bg-color {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* =============================================
   Navigation
   ============================================= */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-main {
    display: flex;
    align-items: center;
}

.nav-main>.menu-item>.nav-top-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    line-height: 90px;
    font-weight: 900;
    font-size: 80%;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.nav-main>.menu-item>.nav-top-link:hover {
    color: var(--primary);
}

.nav-main>.menu-item.active>.nav-top-link {
    color: var(--primary);
}

/* TR / EN language links: separator + tighter spacing */
.nav-main>.lang-separator {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.nav-main>.lang-separator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.25);
}

.nav-main>.lang-separator>.nav-top-link,
.nav-main>.lang-en-link>.nav-top-link {
    padding: 0 6px;
    font-size: 75%;
}

/* Dropdown arrow */
.icon-angle-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

/* Dropdown Menu */
.menu-item.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    border-radius: 5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 100;
    padding: 8px 0;
}

.menu-item.has-dropdown:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 80%;
    color: #555;
    font-weight: 400;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-dropdown li a:hover {
    color: var(--primary);
    background: #f7f7f7;
}

/* Responsive visibility */
.hide-for-medium {
    display: flex;
}

.show-for-medium {
    display: none;
}

@media (max-width: 849px) {
    .hide-for-medium {
        display: none !important;
    }

    .show-for-medium {
        display: flex !important;
    }
}

.hide-for-small {
    display: block;
}

.show-for-small {
    display: none;
}

@media (max-width: 549px) {
    .hide-for-small {
        display: none !important;
    }

    .show-for-small {
        display: block !important;
    }
}

/* =============================================
   Mobile Menu Button
   ============================================= */
.mobile-nav-toggle {
    align-items: center;
    justify-content: flex-end;
}

.mobile-menu-btn {
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
}

.mobile-menu-btn:hover {
    background: #007aad;
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

/* =============================================
   Mobile Sidebar
   ============================================= */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 5px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-sidebar {
    padding: 0 20px;
}

.nav-vertical>li {
    border-top: 1px solid #eee;
    position: relative;
}

.nav-vertical>li:first-child {
    border-top: none;
}

.nav-vertical>li>a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #555;
}

.toggle-children {
    position: absolute;
    right: 0;
    top: 8px;
    background: none;
    border: 1px solid #ddd;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-vertical .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.nav-vertical .sub-menu.open {
    display: block;
}

.nav-vertical .sub-menu li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    font-weight: 400;
    text-transform: none;
}

.nav-vertical .sub-menu li a:hover {
    color: var(--primary);
}

/* =============================================
   Sections
   ============================================= */
.section {
    position: relative;
    overflow: hidden;
}

.section.dark {
    background-color: var(--dark-bg);
}

.section-content {
    position: relative;
}

/* =============================================
   HERO SLIDER
   ============================================= */
#section-hero-slider {
    position: relative;
    padding: 0;
}

#section-hero-slider .section-content {
    position: relative;
    width: 100%;
    /* 16:9 ratio on desktop */
    padding-top: 56.25%;
    overflow: hidden;
}

@media (max-width: 849px) {
    #section-hero-slider .section-content {
        padding-top: 66%;
    }
}

@media (max-width: 549px) {
    #section-hero-slider .section-content {
        padding-top: 100%;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    will-change: opacity;
    transform: translateZ(0);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

.slide-overlay {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slide-text-box {
    width: 71%;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 849px) {
    .slide-text-box {
        width: 76%;
    }
}

@media (max-width: 549px) {
    .slide-text-box {
        width: 90%;
    }
}

.slide-heading {
    font-weight: 900;
    font-size: 2.5em;
    line-height: 75px;
    color: var(--accent);
    margin-bottom: 10px;
}

@media (max-width: 849px) {
    .slide-heading {
        font-size: 2em;
        line-height: 1.2;
    }
}

@media (max-width: 549px) {
    .slide-heading {
        font-size: 1.5em;
        line-height: 1.2;
        margin-top: 65px;
    }
}

.slide-subtext {
    color: #fff;
    font-size: 150%;
    line-height: 1.8;
}

@media (max-width: 549px) {
    .slide-subtext {
        font-size: 120%;
    }
}

/* Slide Animation */
.hero-slide.active .slide-text-box {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Nav Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.3s, border-color 0.3s;
    padding: 12px;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

@media (max-width: 549px) {
    .slider-nav {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* =============================================
   BANNER FULLSCREEN (Info & Tech sections)
   ============================================= */
.banner-fullscreen {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-bg-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

.banner-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.657);
}

.banner-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.674);
}

.banner-text-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.banner-text-box {
    text-align: center;
    padding: 40px 0;
}

/* =============================================
   INFO / MISSION SECTION (#section-info)
   ============================================= */
#section-info {
    padding: 0;
}

#banner-info {
    min-height: 600px;
    background-color: rgb(98, 98, 98);
}

@media (min-width: 850px) {
    #banner-info {
        min-height: 700px;
    }
}

.info-text-box {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0;
}

.info-text-box,
.info-text-box * {
    color: #fff !important;
}

.info-text-box h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.info-text-box h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1em;
}

.info-text-box p {
    margin-bottom: 10px;
    font-size: 100%;
    line-height: 1.7;
}

.highlight-blue {
    color: #00adff !important;
    font-weight: bold;
}

@media (max-width: 849px) {
    .info-text-box {
        width: 80%;
        font-size: 90%;
    }
}

@media (max-width: 549px) {
    .info-text-box {
        width: 95%;
        font-size: 85%;
        padding: 40px 0;
    }

    #banner-info {
        min-height: auto;
    }
}

/* =============================================
   TECHNOLOGIES SECTION (#section-technologies)
   ============================================= */
#section-technologies {
    padding: 0;
}

#banner-tech {
    min-height: 500px;
}

@media (min-width: 850px) {
    #banner-tech {
        min-height: 100vh;
    }
}

.banner-text-container {
    min-height: inherit;
}

.tech-text-box {
    width: 100%;
    padding: 60px 0;
}

.tech-text-box h1 {
    color: #000 !important;
    margin-bottom: 25px;
    font-size: 2em;
}

.tech-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-pill {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 99px;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s, transform 0.2s;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
}

.btn-pill:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 549px) {
    #banner-tech {
        min-height: 400px;
    }

    .tech-text-box h1 {
        font-size: 1.5em;
    }
}

/* =============================================
   Footer
   ============================================= */
.footer-wrapper {
    margin-top: 0;
}

.absolute-footer {
    background-color: #fafafa;
    padding: 15px 0;
    text-align: center;
}

.copyright-footer {
    font-size: 13px;
    color: #555;
}

.copyright-footer strong {
    font-weight: 700;
}

/* =============================================
   Responsive Header
   ============================================= */
@media (max-width: 849px) {
    .header-main {
        height: 80px;
    }

    #logo {
        width: 150px;
    }

    #logo img {
        max-height: 80px;
    }

    .nav-main>.menu-item>.nav-top-link {
        line-height: 80px;
    }
}

@media (max-width: 549px) {
    .header-main {
        height: 70px;
    }

    #logo {
        width: 120px;
    }

    #logo img {
        max-height: 70px;
    }
}

/* =============================================
   Scroll-triggered Animations
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   Utility
   ============================================= */
button:focus {
    outline: none;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* =============================================
   Inner Pages (About, History, Mission, etc.)
   ============================================= */

/* Header override: inner pages - transparent, opaque on hover */
body.inner-page #header {
    background-color: transparent;
    position: sticky;
    top: 0;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.inner-page #header .header-bg-color,
body.inner-page #header.stuck .header-bg-color {
    background-color: rgba(255, 255, 255, 0.71) !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease;
}

body.inner-page #header:hover .header-bg-color {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

body.inner-page #header .header-logo {
    filter: none !important;
    /* Show original logo colors */
}

body.inner-page .nav-main>li>a,
body.inner-page .nav-main>li>a.nav-top-link {
    color: var(--text-color);
}

body.inner-page .mobile-menu-btn {
    color: var(--primary-color);
}

/* Inner Banner (full-width hero with title overlay) */
.banner.inner-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner.inner-banner .banner-inner {
    position: relative;
    width: 100%;
    padding-top: 40%;
    /* Aspect ratio: 800/2500 ≈ 32%, give some height */
}

@media (max-width: 549px) {
    .banner.inner-banner .banner-inner {
        padding-top: 66%;
    }
}

.banner.inner-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner.inner-banner .banner-bg img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 68%;
}

.banner.inner-banner .banner-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text-center {
    text-align: center;
    width: 100%;
}

.inner-page-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 2.5em;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    text-align: center;
    width: 100%;
}

/* Inner Content Row */
.inner-content-row {
    display: flex;
    justify-content: center;
    padding: 50px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-content-row .col-inner {
    padding: 0 10px;
    text-align: left;
    font-size: 1.15rem;
    /* ~120% like original body, paragraphs feel like 150% inline in source */
    color: var(--text-color);
    max-width: 900px;
}

.inner-content-row .col-inner p {
    margin-bottom: 1.5em;
    line-height: 1.9;
    font-size: 1.05em;
}

.inner-content-row .col-inner h2,
.inner-content-row .col-inner h3,
.inner-content-row .col-inner h4 {
    margin-bottom: 0.75em;
    margin-top: 1.5em;
}



#header .header-bg-color,
#header.stuck .header-bg-color {
    background-color: rgba(255, 255, 255, 0.71) !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease;
}

#header:hover .header-bg-color {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

/* Fix inner page header specifically */
body.inner-page #header {
    background-color: transparent !important;
    box-shadow: none !important;
}


/* =============================================
   Page Specific Extracted Styles
   ============================================= */

/* Used in: project-disk-ankraj-1.html, project-disk-ankraj-2.html, project-disk-ankraj-3.html, project-kamu-lojmani.html, project-kamu-ortaokulu-2.html, project-kamu-ortaokulu.html, project-kamu-universitesi.html, project-konutlar.html */
.portfolio-single-wrap {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px 80px;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.portfolio-sidebar {
    width: 25%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    border-right: 1px solid #e0e0e0;
    padding-right: 30px;
}

.portfolio-category-tag {
    display: inline-block;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-decoration: none;
}

.portfolio-sidebar h1 {
    font-size: 1.8em;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    line-height: 1.2;
}

.portfolio-content {
    flex: 1;
    min-width: 0;
}

.portfolio-content h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.portfolio-content p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.portfolio-content img {
    width: 100%;
    display: block;
    border-radius: 4px;
    margin-bottom: 16px;
}

.portfolio-section-label {
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin: 36px 0 12px;
    letter-spacing: 0.04em;
}

.portfolio-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.portfolio-grid-2 img {
    border-radius: 4px;
    margin-bottom: 0;
}

.portfolio-note {
    font-size: 0.82em;
    color: #999;
    font-style: italic;
    margin-bottom: 14px;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--primary);
    font-size: 0.9em;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .portfolio-single-wrap {
        flex-direction: column;
    }

    .portfolio-sidebar {
        width: 100%;
        position: static;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .portfolio-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Used in: awards.html */
.awards-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.2em;
    align-items: start;
    margin-bottom: 3.5em;
}

.awards-grid>div:first-child {
    display: flex;
    justify-content: flex-end;
}

.awards-grid img {
    max-width: 240px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.awards-grid img:hover {
    opacity: 0.85;
}

.award-year {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.6em;
    margin-bottom: 8px;
}

.award-title {
    font-size: 1.25em;
    font-weight: 700;
    color: #333;
}

.award-org {
    font-size: 1.05em;
    font-style: italic;
    color: #666;
}

/* Lightbox */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lb-overlay.active {
    display: flex;
}

.lb-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

@media(max-width:600px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid>div:first-child {
        justify-content: center;
    }
}

/* Used in: medya.html */
/* Banner */
.medya-banner {
    position: relative;
    width: 100%;
    padding-top: 28%;
    background: #111;
    overflow: hidden;
}

.medya-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.medya-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.8em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Content wrapper */
.medya-content {
    max-width: 1100px;
    margin: 60px auto 80px;
    padding: 0 30px;
}

/* Section titles */
.medya-section-title {
    text-align: center;
    font-size: 1.4em;
    font-weight: 900;
    color: var(--primary);
    margin: 50px 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}

.medya-section-title::before,
.medya-section-title::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #ccc;
    vertical-align: middle;
    margin: 0 14px;
}

/* SoundCloud */
.soundcloud-wrap {
    margin-bottom: 12px;
}

.soundcloud-credit {
    font-size: 10px;
    color: #ccc;
    font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Verdana, sans-serif;
    font-weight: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 30px;
}

.soundcloud-credit a {
    color: #ccc;
    text-decoration: none;
}

/* Röportaj images */
.reportaj-img {
    width: 100%;
    display: block;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.reportaj-img:hover {
    opacity: 0.88;
}

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.video-grid-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.video-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 650px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .medya-banner {
        padding-top: 56%;
    }

    .medya-banner-title {
        font-size: 1.8em;
    }
}

/* Used in: disk-ankraj.html */
#disk-ankraj-banner {
    padding-top: 66%;
}

@media (min-width: 550px) {
    #disk-ankraj-banner {
        padding-top: 40%;
    }
}

@media (min-width: 769px) {
    #disk-ankraj-banner {
        padding-top: 30%;
    }
}

/* Used in: linkler.html */
/* no extra styles needed — all layout uses inline styles matching original */

/* Used in: master-frame.html */
#master-frame-banner {
    padding-top: 66%;
}

@media (min-width: 550px) {
    #master-frame-banner {
        padding-top: 40%;
    }
}

@media (min-width: 769px) {
    #master-frame-banner {
        padding-top: 30%;
    }
}

/* Used in: blog.html */
.blog-wrapper {
    max-width: 860px;
    margin: 120px auto 80px;
    padding: 0 30px;
}

.blog-article {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}

.blog-article:last-child {
    border-bottom: none;
}

.entry-image-wrap {
    position: relative;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
}

.entry-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s;
}

a.entry-image-wrap:hover img {
    transform: scale(1.02);
}

.post-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1.2;
    min-width: 44px;
}

.post-date-day {
    display: block;
    font-size: 1.3em;
    font-weight: 900;
    color: #222;
}

.post-date-month {
    display: block;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.entry-category {
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.entry-category a {
    color: inherit;
    text-decoration: none;
}

.entry-title {
    font-size: 1.6em;
    font-weight: 900;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary);
}

.entry-divider {
    border: none;
    border-top: 2px solid var(--primary);
    width: 40px;
    margin: 12px 0;
}

.entry-meta {
    font-size: 0.78em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.entry-meta a {
    color: #666;
    text-decoration: none;
}

.entry-summary {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.more-link {
    display: inline-block;
    padding: 8px 22px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 0.85em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}

.more-link:hover {
    background: var(--primary);
    color: #fff;
}

.entry-footer-meta {
    margin-top: 20px;
    font-size: 0.8em;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entry-footer-meta a {
    color: #aaa;
    text-decoration: none;
}

.entry-footer-meta a:hover {
    color: var(--primary);
}

/* Used in: blog-post-disk-ankraj.html */
.single-post-wrap {
    max-width: 860px;
    margin: 50px auto 80px;
    padding: 0 30px;
}

.entry-title-main {
    font-size: 2em;
    font-weight: 900;
    color: #222;
    line-height: 1.25;
    margin: 10px 0 8px;
}

.entry-divider {
    border: none;
    border-top: 2px solid var(--primary);
    width: 40px;
    margin: 14px 0;
}

.entry-meta-bar {
    font-size: .78em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 30px;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 32px;
    display: block;
}

.entry-body {
    font-size: 1em;
    line-height: 1.85;
    color: #444;
}

.entry-body p {
    margin-bottom: 1.2em;
}

.entry-body strong {
    color: #333;
}

.entry-body .alignleft {
    float: left;
    margin: 0 24px 16px 0;
    border-radius: 4px;
}

.entry-body .alignright {
    float: right;
    margin: 0 0 16px 24px;
    border-radius: 4px;
}

.entry-body a {
    color: var(--primary);
}

.entry-body a:hover {
    text-decoration: underline;
}

.entry-body::after {
    content: "";
    display: table;
    clear: both;
}

.back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: .9em;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: .82em;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

.post-footer a {
    color: #aaa;
    text-decoration: none;
}

.post-footer a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {

    .entry-body .alignleft,
    .entry-body .alignright {
        float: none;
        margin: 0 0 16px;
        width: 100%;
    }
}

/* Used in: blog-post-japonya.html */
.single-post-wrap {
    max-width: 860px;
    margin: 50px auto 80px;
    padding: 0 30px;
}

.entry-category-tag {
    font-size: .78em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: .05em;
    text-decoration: none;
}

.entry-category-tag:hover {
    text-decoration: underline;
}

.entry-title-main {
    font-size: 2em;
    font-weight: 900;
    color: #222;
    line-height: 1.25;
    margin: 10px 0 8px;
}

.entry-divider {
    border: none;
    border-top: 2px solid var(--primary);
    width: 40px;
    margin: 14px 0;
}

.entry-meta-bar {
    font-size: .78em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 30px;
}

.entry-meta-bar a {
    color: #666;
    text-decoration: none;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 32px;
    display: block;
}

.entry-body {
    font-size: 1em;
    line-height: 1.85;
    color: #444;
}

.entry-body p {
    margin-bottom: 1.2em;
}

.entry-body h2,
.entry-body h3,
.entry-body h4 {
    color: #222;
    margin: 1.6em 0 .6em;
    font-weight: 700;
}

.entry-body ul,
.entry-body ol {
    margin: 0 0 1.2em 1.5em;
}

.entry-body li {
    margin-bottom: .4em;
}

.entry-body strong {
    color: #333;
}

.entry-body u {
    text-decoration: underline;
}

.entry-body .alignleft {
    float: left;
    margin: 0 24px 16px 0;
    border-radius: 4px;
}

.entry-body a {
    color: var(--primary);
}

.entry-body a:hover {
    text-decoration: underline;
}

.entry-body ol {
    margin-left: 1.5em;
}

.back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: .9em;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: .82em;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

.post-footer a {
    color: #aaa;
    text-decoration: none;
}

.post-footer a:hover {
    color: var(--primary);
}

@media (max-width:600px) {
    .entry-body .alignleft {
        float: none;
        margin: 0 0 16px;
        width: 100%;
    }
}

/* Used in: services.html */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5em;
    margin-top: 2em;
}

.service-item {
    display: flex;
    gap: 1em;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    flex-shrink: 0;
}

.service-icon img {
    width: 60px;
}

.service-title {
    color: var(--primary);
    font-weight: 900;
    font-size: 1em;
    margin-bottom: 6px;
}

@media(max-width:700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Used in: master-frame.html */
.photo-grid {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    margin: 2em 0;
}

.photo-grid figure {
    flex: 1 1 200px;
    margin: 0;
}

.photo-grid figure img {
    width: 100%;
    border-radius: 4px;
}

.photo-grid figcaption {
    font-size: 0.85em;
    color: var(--primary);
    font-weight: 700;
    margin-top: 6px;
}

/* Used in: iletisim.html */
.iletisim-wrap {
    max-width: 1100px;
    margin: 100px auto 80px;
    padding: 0 30px;
}

.iletisim-top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Left column: info + map */
.iletisim-info {
    flex: 0 0 40%;
    padding: 50px 0;
}

.iletisim-info h2 {
    font-size: 1.8em;
    font-weight: 900;
    color: #222;
    margin-bottom: 28px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
}

.contact-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.iletisim-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}

.iletisim-map {
    width: 100%;
    border-radius: 4px;
    margin-top: 16px;
    display: block;
}

/* Right column: portrait image */
.iletisim-portrait {
    flex: 0 0 55%;
    padding: 50px 0;
    text-align: center;
}

.iletisim-portrait img {
    width: 93%;
    border-radius: 4px;
}

/* Contact form */
.iletisim-form-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.iletisim-form-wrap h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.cf-field {
    margin-bottom: 18px;
}

.cf-field label {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.95em;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s;
}

.cf-field input:focus,
.cf-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.cf-field textarea {
    resize: vertical;
    min-height: 160px;
}

.cf-submit {
    display: inline-block;
    padding: 10px 32px;
    background: var(--primary);
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.cf-submit:hover {
    background: #007aaa;
}

.cf-success {
    display: none;
    color: #2a9d2a;
    font-size: 0.9em;
    margin-top: 12px;
    font-weight: 600;
}

@media (max-width: 700px) {
    .iletisim-top {
        flex-direction: column;
    }

    .iletisim-info,
    .iletisim-portrait {
        flex: 1 1 auto;
        width: 100%;
    }
}

/* Used in: certificates.html */
.cert-layout {
    display: flex;
    gap: 3em;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cert-layout .cert-img {
    flex: 0 0 250px;
}

.cert-layout .cert-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.cert-layout .cert-text {
    flex: 1;
    min-width: 280px;
}

.cert-text ul {
    list-style: none;
    padding: 0;
}

.cert-text ul li {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Lightbox */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lb-overlay.active {
    display: flex;
}

.lb-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

/* Used in: projects.html */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    margin-bottom: 3em;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.portfolio-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.portfolio-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card-body {
    padding: 12px 14px;
    text-align: center;
}

.portfolio-title {
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    color: #333;
}

.portfolio-cat {
    display: none;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 2.5em 0 1em;
}


/* =============================================
   Language Switcher Active State
   ============================================= */
.lang-active {
    color: var(--primary) !important;
    font-weight: 900 !important;
}

/* =============================================
   Language Switch Fade (whole-page)
   ============================================= */
#wrapper {
    transition: opacity 0.4s ease-in-out;
}