/**
 * Hacıoğlu Gold Mine - Main Stylesheet
 * Base styles that work with dynamic theme.css
 */

/* =============================================
   RESET & BASE
============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto; /* PERF: globe kopru instant-scroll + JS smooth ile cakismayi onler */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FDFCFA;
    overflow-x: hidden;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section.timeline-section {
    display: none;
}


a {
    text-decoration: none;
    transition: all 0.3s ease;
}


.sticky .header-inner {
    margin-top: 0px !important;
}

.site-header .container {
    padding-top: 20px !important;
}



ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   LAYOUT
============================================= */

.container {
    width: 100%;
    max-width: var(--container-width, 1300px);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* =============================================
   TYPOGRAPHY
============================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.5;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--gold-primary); }
.text-dark { color: var(--dark-primary); }
.text-white { color: #fff; }
.text-muted { color: #666; }

/* =============================================
   BUTTONS
============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background: #0d0d0d;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25); color: var(--gold-primary);
}

.btn-secondary {
    background: var(--dark-primary, #0D0D0D);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--dark-secondary, #1A1A1A);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary, #755d35);
    color: var(--gold-primary, #755d35);
}

.btn-outline:hover {
    background: var(--gold-primary, #755d35);
    color: #ffffff;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #ffffff;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

/* =============================================
   HEADER
============================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: var(--header-height, 80px);
}

.site-header.sticky {
    position: fixed;
}

.site-header.scrolled {
    position: fixed;
    background: var(--header-scrolled-bg, rgba(13,13,13,0.95)) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    height: 100%;
    gap: 40px;
    justify-content: center !important;
    margin-top:20px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: var(--logo-height, 70px);
    width: auto;
    max-width: 550px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--header-text, #fff);
    font-family: 'Coranto Headline', 'Playfair Display', serif;
    white-space: nowrap;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.main-nav > a,
.main-nav .nav-dropdown > a {
    color: var(--header-text, #fff);
    padding: 10px 12px;
    font-family: var(--menu-font, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: var(--menu-weight, 500);
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav > a::after,
.main-nav .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--header-hover, #ebc991);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.main-nav .nav-dropdown:hover > a::after,
.main-nav .nav-dropdown > a.active::after {
    transform: scaleX(1);
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav .nav-dropdown:hover > a {
    color: var(--header-hover, #ebc991);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #FDFCFA;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown .dropdown-menu a:hover {
    background: var(--gold-cream, #FDF8E8);
    color: var(--gold-primary, #755d35);
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--header-text, #fff);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-dropdown-toggle:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.lang-dropdown-toggle i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #FDFCFA;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 100;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-menu a:hover {
    background: var(--gold-cream, #FDF8E8);
}

.lang-dropdown-menu a.active {
    background: var(--gold-primary, #755d35);
    color: #fff;
}

.lang-dropdown-menu .flag {
    font-size: 18px;
}

/* Language Pills */
.lang-pills {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 4px;
}

.lang-pills a {
    padding: 8px 16px;
    color: var(--header-text, #fff);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-pills a.active {
    background: var(--gold-primary, #755d35);
    color: #fff;
}

.lang-pills a:not(.active):hover {
    background: rgba(255,255,255,0.1);
}

/* Language Buttons */
.lang-buttons {
    display: flex;
    gap: 8px;
}

.lang-buttons a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--header-text, #fff);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-buttons a:hover {
    background: rgba(255,255,255,0.2);
}

.lang-buttons a.active {
    background: var(--gold-primary, #755d35);
    border-color: var(--gold-primary, #755d35);
    color: #fff;
}

/* Language Minimal */
.lang-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-minimal a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-minimal a:hover,
.lang-minimal a.active {
    color: var(--header-hover, #ebc991);
}

.lang-minimal .divider {
    color: rgba(255,255,255,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--header-text, #fff);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #0D0D0D 0%, #1a1a1a 100%);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 100px 30px 30px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold-primary, #755d35);
    padding-left: 10px;
}

.mobile-nav-group .mobile-nav-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-group .mobile-nav-parent i {
    transition: transform 0.3s ease;
}

.mobile-nav-group.open .mobile-nav-parent i {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    display: none;
    padding-left: 20px;
    background: rgba(255,255,255,0.05);
    margin: 0 -30px;
    padding: 10px 30px 10px 50px;
}

.mobile-nav-group.open .mobile-nav-sub {
    display: block;
}

.mobile-nav-sub a {
    font-size: 15px;
    padding: 12px 0;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang {
    display: flex;
    gap: 15px;
}

.mobile-lang a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-lang a.active {
    background: var(--gold-primary, #755d35);
}

.mobile-lang a:hover:not(.active) {
    background: rgba(255,255,255,0.2);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1280px) {
    .main-nav > a,
    .main-nav .nav-dropdown > a {
        padding: 10px 8px;
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .lang-dropdown,
    .lang-pills,
    .lang-buttons,
    .lang-minimal {
        display: none;
    }
}

/* =============================================
   HERO SECTION
============================================= */

.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    aspect-ratio: 1920 / 800;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: translate3d(0, 0, 0);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slide iframe.hero-video-embed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background inline style ile belirlenir */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    color: var(--gold-primary, #755d35);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--gold-primary, #755d35);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    border-radius: 0 !important;
}

/* Slider Navigation - Progress Bars */
.hero-slider-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    gap: 6px;
    width: 100%;
    padding: 0 0;
}

.hero-bar {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.hero-bar:hover {
    background: rgba(255,255,255,0.35);
}

.hero-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-primary, #755d35), var(--gold-secondary, #ebc991));
    transition: none;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.hero-bar.passed .hero-bar-fill {
    width: 100%;
    background: var(--gold-primary, #755d35);
    box-shadow: none;
}

.hero-bar.passed {
    background: rgba(255,255,255,0.1);
}

.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 20;
}

.hero-nav-arrow.hero-nav-prev {
    left: 30px;
}

.hero-nav-arrow.hero-nav-next {
    right: 30px;
}

.hero-nav-arrow:hover {
    background: var(--gold-primary, #755d35);
    border-color: var(--gold-primary, #755d35);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-nav-arrow {
        width: 45px;
        height: 45px;
    }
    
    .hero-nav-arrow.hero-nav-prev {
        left: 20px;
    }
    
    .hero-nav-arrow.hero-nav-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 45vh;
        min-height: 280px;
    }

    .hero-nav-arrow {
        display: none;
    }

    .hero-slider-bars {
        bottom: 0;
        gap: 4px;
    }

    .hero-bar {
        height: 8px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }

    .hero-slider-bars {
        bottom: 0;
        gap: 3px;
    }

    .hero-bar {
        height: 6px;
    }
}

/* =============================================
   SECTIONS
============================================= */

section {
    padding: 100px 0;
}

section:last-of-type {
    padding-bottom: 60px;
}

.section-dark {
    background: var(--dark-primary, #0D0D0D);
    color: #fff;
}

.section-cream {
    background: #F9F8F6;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--gold-primary, #755d35);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
}

.section-dark .section-text {
    color: rgba(255,255,255,0.7);
}

/* =============================================
   CARDS
============================================= */

.card {
    background: #FDFCFA;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    margin-bottom: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary, #755d35);
    font-weight: 600;
}

.card-link:hover {
    gap: 12px;
}

/* =============================================
   FOOTER
============================================= */

.site-footer {
    background: var(--footer-bg, #0D0D0D);
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Desktop / Mobile Toggle */
.footer-desktop { display: block; }
.footer-mobile { display: none; }

/* Footer Logo */
.footer-logo { display: inline-block; }
.footer-logo img { max-width: 280px; height: auto; padding-bottom: 20px; }
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary, #755d35);
}
.footer-slogan {
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Contact */
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: var(--gold-primary, #755d35);
}

/* Footer Mobile Styles */
.footer-mobile-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-mobile-header .footer-logo img { max-width: 200px; }
.footer-mobile-header .footer-slogan {
    max-width: 300px;
    margin: 0 auto 20px;
    font-size: 0.9rem;
}
.footer-mobile-header .footer-social { justify-content: center; }

/* Footer Accordion */
.footer-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}
.footer-accordion-toggle:hover { color: var(--gold-primary, #755d35); }
.footer-accordion-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.5);
}
.footer-accordion.open .footer-accordion-toggle i {
    transform: rotate(180deg);
}
.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}
.footer-accordion.open .footer-accordion-content {
    max-height: 400px;
    padding-bottom: 20px;
}
.footer-accordion-content a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 10px 0;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.footer-accordion-content a:hover {
    color: var(--gold-primary, #755d35);
    padding-left: 8px;
}
.footer-accordion-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
    font-size: 0.9rem;
}
.footer-accordion-contact i {
    color: var(--gold-primary, #755d35);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
.footer-accordion-contact a {
    display: inline;
    padding: 0;
    color: rgba(255,255,255,0.6);
}
.footer-accordion-contact a:hover {
    color: var(--gold-primary, #755d35);
    padding-left: 0;
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold-primary, #755d35);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--gold-primary, #755d35);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold-primary, #755d35);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold-primary, #755d35);
    color: #ffffff;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* =============================================
   PAGE BANNER
============================================= */

.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-primary, #0D0D0D);
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.page-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.breadcrumb {
    display: initial;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--gold-primary, #755d35);
}

.breadcrumb span {
    color: var(--gold-primary, #755d35);
}

/* =============================================
   UTILITIES
============================================= */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }
.py-10 { padding-top: 100px; padding-bottom: 100px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-logo img { max-width: 220px; }
}

@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .header-inner {
        height: 80px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 45vh;
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-nav {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .hero-nav-dots {
        gap: 8px;
    }
    
    .hero-nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-nav-dot.active,
    .hero-nav-dot:hover {
        width: 10px;
        height: 10px;
    }
    
    .hero-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .footer-desktop { display: none; }
    .footer-mobile { display: block; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-banner {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }

    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* =============================================
   HOME PAGE SPECIFIC STYLES
============================================= */

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    cursor: pointer;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

.hero-scroll i {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 0;
    transition: border-color 0.3s ease;
}

.hero-scroll i::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--gold-primary, #755d35);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll:hover span {
    color: var(--gold-primary, #755d35);
}

.hero-scroll:hover i {
    border-color: var(--gold-primary, #755d35);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(14px);
        opacity: 0.3;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero Scroll Responsive */
@media (max-width: 992px) {
    .hero-scroll {
        bottom: 35px;
    }
    
    .hero-scroll span {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-scroll i {
        width: 26px;
        height: 44px;
    }
    
    .hero-scroll i::before {
        height: 8px;
        top: 7px;
    }
}

@media (max-width: 768px) {
    .hero-scroll {
        bottom: 30px;
        gap: 10px;
    }
    
    .hero-scroll span {
        font-size: 9px;
    }
    
    .hero-scroll i {
        width: 24px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-scroll {
        bottom: 25px;
        gap: 8px;
    }
    
    .hero-scroll i {
        width: 22px;
        height: 36px;
    }
    
    .hero-scroll i::before {
        height: 7px;
        top: 6px;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-primary, #0D0D0D);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #0d0d0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-primary, #755d35);
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--gold-primary, #755d35);
    display: inline;
    margin-left: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--dark-secondary, #1A1A1A);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features .feature i {
    color: var(--gold-primary, #755d35);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-card, 18px);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gold-gradient);
    padding: 25px 35px;
    border-radius: var(--border-radius-card, 18px);
    text-align: center;
    box-shadow: 0 15px 40px rgba(var(--gold-primary-rgb, 201, 162, 39), 0.3);
}

.about-badge .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
}

.about-badge .badge-text {
    font-size: 0.85rem;
    color: #ffffff;
}

/* Operations Section */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.operation-card {
    background: var(--dark-secondary, #1A1A1A);
    border-radius: var(--border-radius-card, 18px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.operation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.operation-card .card-image {
    position: relative;
    aspect-ratio: 16/10;
}

.operation-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.operation-card .card-status {
    background: var(--gold-primary, #755d35);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.operation-card .card-body {
    padding: 25px;
}

.operation-card .card-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.operation-card .card-location {
    color: var(--gold-primary, #755d35);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.operation-card .card-location i {
    margin-right: 5px;
}

.operation-card .card-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.operation-card .card-link {
    color: var(--gold-primary, #755d35);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.operation-card .card-link:hover {
    gap: 12px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #F9F8F6;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gold-primary, #755d35);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--dark-primary, #0D0D0D);
    border: 4px solid var(--gold-primary, #755d35);
    border-radius: 50%;
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    background: var(--gold-cream, #FDF8E8);
    padding: 25px;
    border-radius: var(--border-radius-card, 18px);
}

.timeline-year {
    display: inline-block;
    background: var(--gold-primary, #755d35);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    border-radius: 0 !important;
    background: #f3f1ec !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.news-card:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.13);
}

.news-meta {
    margin-bottom: 12px;
}

.news-date {
    font-size: 0.85rem;
}

.news-date i {
    margin-right: 5px;
}

.news-card .card-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.7) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   HEADER DROPDOWN
============================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-secondary, #1A1A1A);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.nav-dropdown .dropdown-menu a:hover {
    background: var(--dark-tertiary, #2D2D2D);
    color: var(--gold-primary, #755d35);
}

.nav-dropdown .dropdown-menu a::after {
    display: none;
}

/* =============================================
   MOBILE MENU
============================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-primary, #0D0D0D);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 100px 30px 30px;
}

.mobile-nav a {
    display: block;
    color: #fff;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
    color: var(--gold-primary, #755d35);
}

.mobile-nav-group .mobile-nav-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-sub {
    padding-left: 20px;
    display: none;
}

.mobile-nav-group.active .mobile-nav-sub {
    display: block;
}

.mobile-nav-sub a {
    font-size: 0.95rem;
    padding: 12px 0;
    color: rgba(255,255,255,0.7);
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-footer .lang-switch {
    display: flex;
    gap: 15px;
}

.mobile-menu-footer .lang-switch a {
    border: none;
    padding: 0;
}

/* Mobile Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Body overlay */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

/* =============================================
   BACK TO TOP
============================================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary, #755d35);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 20px rgba(var(--gold-primary-rgb, 201, 162, 39), 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =============================================
   RESPONSIVE - HOME PAGE
============================================= */

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-badge {
        bottom: -20px;
        left: 20px;
    }
    
    .operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }
    
    .timeline-item::after {
        left: 20px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .operations-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-scroll {
        display: none;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }
}
/* =============================================
   MOBILE-FIRST RESPONSIVE UTILITIES
============================================= */

/* iOS Safari uyumlu vh */
@supports (-webkit-touch-callout: none) {
    .hero { height: -webkit-fill-available; }
}

/* Touch optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .card:hover { transform: none; }
    .operation-card:hover { transform: none; }
    .btn:hover { transform: none; }
    a, button { -webkit-tap-highlight-color: transparent; }
}

/* Mobil görünüm utility class'ları */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* Responsive typography */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .lead { font-size: 1.1rem; }
    .section-label { font-size: 0.78rem; letter-spacing: 2px; }
    .section-text { font-size: 1rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
    .hero-text { font-size: 1rem; margin-bottom: 25px; }
    .hero-content { max-width: 90%; }
}

@media (max-width: 576px) {
    body { font-size: 15px; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 1.5px; }
    .hero-title { font-size: 1.65rem !important; line-height: 1.15; }
    .hero-text { font-size: 0.92rem; margin-bottom: 20px; max-width: 100%; }
    .hero-content { max-width: 95%; padding: 0 5px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.85rem; }
    .section-header { margin-bottom: 30px; }
}

/* Responsive footer */
@media (max-width: 576px) {
    .site-footer { padding: 40px 0 0; }
    .footer-mobile-header { padding-bottom: 20px; margin-bottom: 15px; }
    .footer-mobile-header .footer-logo img { max-width: 160px; }
    .footer-mobile-header .footer-slogan { font-size: 0.85rem; margin-bottom: 15px; }
    .footer-accordion-toggle { padding: 15px 0; font-size: 0.95rem; }
    .footer-accordion-content a { font-size: 0.9rem; padding: 8px 0; }
    .footer-bottom { padding: 15px 0; font-size: 0.78rem; }
}

/* Responsive stats */
@media (max-width: 576px) {
    .stats-section { padding: 50px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-value { font-size: 1.75rem; }
    .stat-suffix { font-size: 1.1rem; }
    .stat-label { font-size: 0.85rem; }
    .stat-icon { width: 45px; height: 45px; font-size: 1.1rem; margin-bottom: 12px; }
}

/* Responsive about */
@media (max-width: 576px) {
    .about-grid { gap: 30px; }
    .about-content .lead { font-size: 1rem; }
    .about-features { gap: 10px; }
    .about-features .feature { font-size: 0.9rem; }
}

/* Responsive operations */
@media (max-width: 576px) {
    .operations-grid { gap: 20px; }
    .operation-card .card-body { padding: 18px; }
    .operation-card .card-title { font-size: 1.1rem; }
    .operation-card .card-text { font-size: 0.88rem; }
}

/* Responsive news cards */
@media (max-width: 768px) {
    .news-grid { gap: 20px; }
    .news-card .card-body { padding: 18px; }
    .news-card .card-title { font-size: 1.05rem; }
}

/* Responsive CTA */
@media (max-width: 576px) {
    .cta-section { padding: 70px 0; }
    .cta-content p { font-size: 0.95rem; margin-bottom: 25px; }
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline-section { padding: 60px 0; }
    .timeline-item { padding: 15px 15px 15px 60px; }
    .timeline-content { padding: 18px; }
    .timeline-year { font-size: 0.82rem; padding: 4px 12px; }
    .timeline-title { font-size: 1rem; }
    .timeline-content p { font-size: 0.88rem; }
}

@media (max-width: 576px) {
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 50px; }
    .timeline-item::after { left: 10px !important; width: 16px; height: 16px; }
}

/* Page banner mobil */
@media (max-width: 576px) {
    .page-banner { height: 250px; }
    .breadcrumb { font-size: 0.82rem; }
}

/* Back to top mobil */
@media (max-width: 576px) {
    .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 15px; font-size: 0.85rem; }
}

/* Lightbox mobil */
@media (max-width: 768px) {
    .lightbox-content { max-width: 95vw; }
    .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 0.9rem; }
    .lightbox-close { font-size: 28px; top: 10px; right: 10px; }
}

/* Word break & overflow güvenliği */
.card-title, .card-text, .hero-title, .hero-text,
.footer-contact p, .cta-content p, .section-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive table wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Scroll indicator mobil gizleme */
@media (max-width: 768px) {
    .hero-scroll { display: none; }
}

/* ===========================
   ACTIVITIES PAGE STYLES
   =========================== */

.activities-section { 
    padding: 60px 0; 
    background: #F5F4F2; 
}

.activities-section .container .activities-container { 
    display: grid; 
    grid-template-columns: 350px 1fr; 
    gap: 40px;
}

.activities-section .activities-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.activities-section .activity-item { 
    padding: 20px; 
    background: #FDFCFA; 
    border-left: 4px solid #ddd; 
    cursor: pointer; 
    border-radius: 4px;
    transition: all 0.3s ease;
}

.activities-section .activity-item:hover { 
    background: #F5F4F2; 
    border-left-color: var(--gold-primary, #755d35); 
}

.activities-section .activity-item.active { 
    background: #FDFCFA; 
    border-left-color: var(--gold-primary, #755d35); 
    box-shadow: 0 2px 8px rgba(var(--gold-primary-rgb, 201, 162, 39), 0.15); 
}

.activities-section .activity-item-icon { 
    font-size: 24px; 
    margin-bottom: 8px; 
    display: block; 
}

.activities-section .activity-item-title { 
    font-size: 14px; 
    font-weight: 700; 
    color: #333; 
    margin: 0; 
}

.activities-section .activity-detail { 
    background: #FDFCFA; 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.activities-section .activity-header { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
    padding-bottom: 30px; 
    border-bottom: 2px solid #f0f0f0; 
}

.activities-section .activity-icon-box { 
    width: 70px; 
    height: 70px; 
    background: #0d0d0d; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    color: white; 
    flex-shrink: 0;
}

.activities-section .activity-header-content h2 { 
    font-size: 28px; 
    font-weight: 700; 
    color: #222; 
    margin: 0 0 10px 0; 
}

.activities-section .activity-header-content p { 
    font-size: 15px; 
    color: #666; 
    margin: 0; 
    line-height: 1.6;
}

.activities-section .activity-content { 
    font-size: 15px; 
    color: #555; 
    line-height: 1.8; 
}

.activities-section .activity-content p { 
    margin-bottom: 15px; 
}

@media (max-width: 1024px) {
    .activities-section .container .activities-container { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .activities-section { 
        padding: 40px 0; 
    }
    
    .activities-section .container .activities-container { 
        gap: 20px; 
    }
    
    .activities-section .activity-detail { 
        padding: 20px; 
    }
    
    .activities-section .activity-header-content h2 { 
        font-size: 22px; 
    }
}