:root {
    --altin-acik: rgb(176, 151, 70);
    --altin-orta: rgb(188, 145, 60);
    --altin-koyu: rgb(158, 120, 45);
    --beyaz: rgba(255, 255, 255, 0.96);
    --golge: rgba(0, 0, 0, 0.15);
    --text-koyu: #333;
    --text-acik: #555;
    --footer-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --sofk-renk: rgba(30, 30, 50, 0.7);
}

@keyframes altinKoyuAnim {
    0%, 100% { background: linear-gradient(135deg, var(--altin-koyu), var(--altin-orta)); }
    50% { background: linear-gradient(135deg, var(--altin-orta), var(--altin-koyu)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes button-shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

@keyframes fall {
    0% { transform: translateY(-10px) rotate(0deg); }
    100% { transform: translateY(calc(100vh + 10px)) rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tugva-flow {
    0% {
        opacity: 0.8;
        background-position: 0% 50%;
    }
    100% {
        opacity: 0.95;
        background-position: 100% 50%;
    }
}

/* === GLOBAL STYLES === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available; /* Bu satırı ekleyin */
    position: relative;
    font-family: 'Poppins', sans-serif;
}

@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

body {
    background: linear-gradient(180deg, var(--altin-acik) 0%, var(--altin-orta) 50%, var(--altin-koyu) 100%);
    color: #222;
    font-family: 'Poppins', sans-serif !important;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy;
}

/* === LAYOUT STYLES === */
.container,
.main-content,
.dashboard-container,
.news-container,
.zstack-container,
.what-we-do-section,
.video-section,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1600px) {
    .container, .main-content, .dashboard-container,
    .news-container, .zstack-container,
    .what-we-do-section, .video-section,
    .footer-container {
        max-width: 1400px;
    }
}

/* === COMPONENT STYLES === */
/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar {
    margin-top: 1rem;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    display: flex;
	 gap: 5px; /* Varsa bu değeri azaltabiliriz veya */
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.navbar:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.25);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
	 padding-left: 10px; /* 15px'den 10px'e düşürdüm */
    margin-right: auto; /* Logoyu sola yapıştırır */

}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.mobile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Navigation Links */
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 0 0 24px 24px;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    gap: 5px;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.nav-links.show {
    display: flex !important;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 15px; /* 12px olanı 16px yapıyoruz */
    transition: all 0.2s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    will-change: transform, opacity;
	 margin: 0 2px; 
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 8px;
        background: rgba(255, 255, 255, 0.15);
    }

    .navbar {
        padding: 0.5rem;
    }
}

/* Buttons */
.cta-button,
.view-all-btn,
.video-button,
.haber-card-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    will-change: transform, opacity;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    animation: button-shine 3s infinite;
}

.cta-button:hover,
.view-all-btn:hover,
.video-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-image {
    width: 100%;
    height: 100vh;
    max-height: 1000px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(158, 120, 45, 0.2) 0%, rgba(158, 120, 45, 0.5) 100%);
    mix-blend-mode: multiply;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column; /* İçeriği dikey sırala */
    align-items: center; /* Yatayda ortala */
    justify-content: flex-start; /* İçeriği üstten başlat */
    gap: 0; /* Elemanlar arası boşluğu kaldır */
    padding-top: 0; /* Üst padding'i sıfırla (gerekiyorsa) */
    margin-top: 0; /* Üst margin'i sıfırla (gerekiyorsa) */
}

.profile-circle {
    margin-top: 0; /* Üst margin'i sıfırla */
    margin-bottom: 2rem; /* Alt boşluğu koru (isteğe bağlı) */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .profile-section {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .profile-circle {
        margin-left: 0; /* Mobilde soldan boşluk kaldırılır */
    }


}
.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Resim div’i tamamen kaplar, oran bozulmaz */
    display: block;
}
.profile-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.profile-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: rotate 3s linear infinite;
}

.profile-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.name-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.name-text {
   color: white;
    font-size: 2rem;
    font-weight: 300;
}

.surname {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Dashboard */
.tugva-dashboard {
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dashboard-container {
    display: flex;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    flex-direction: row;
}

.dashboard-sidebar {
    width: 220px;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard-sidebar {
        width: 180px;
    }
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

.dashboard-sidebar .nav-item {
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dashboard-sidebar .nav-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-sidebar .nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.dashboard-main-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 0.9rem;
}

/* Cards */
.cards-slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

@media (pointer: coarse) {
    .cards-slider {
        scroll-snap-type: x mandatory;
    }
}

.cards-slider::-webkit-scrollbar {
    height: 6px;
}

.cards-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.cards-slider::-webkit-scrollbar-thumb {
    background: #9e782d;
    border-radius: 3px;
}

.card {
    background: linear-gradient(135deg, var(--altin-acik, #f0c988), var(--altin-koyu, #9e782d));
    border-radius: 16px;
    min-width: 250px;
    max-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    color: white;
    will-change: transform, opacity;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.6;
    z-index: 1;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    position: relative;
}

.news-title {
    font-size: 2.2rem;
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--altin-orta);
    border-radius: 2px;
}

.news-slider-wrapper {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.news-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 calc(100% - 2rem);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    scroll-snap-align: start;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.news-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-headline {
    font-size: 1.2rem;
    color: var(--altin-koyu);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
    flex-grow: 1;
}

.news-excerpt {
    color: var(--text-acik);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--altin-orta);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.news-read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover {
    color: var(--altin-koyu);
}

.news-read-more:hover::after {
    transform: translateX(5px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--altin-koyu);
}

.slider-btn:hover {
    background: var(--altin-orta);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Z-Stack Section */
.zstack-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    height: 500px;
    padding: 0 2%;
    box-sizing: border-box;
    overflow: hidden;
}

.zstack-box {
    position: absolute;
    width: 96%;
    left: 2%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-style: preserve-3d;
}

.zstack-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.zstack-box[data-layer="1"] img {
    filter: blur(1px) brightness(0.95);
}

.zstack-box[data-layer="2"] img {
    filter: blur(1px) brightness(0.95);
}

.zstack-box[data-layer="3"] img {
    filter: blur(2px) brightness(0.9);
}

.zstack-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(184, 134, 11, 0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.box-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-size: 2rem;
    font-weight: bold;
}

.zstack-box:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.zstack-box:hover img {
    transform: scale(1.05);
    filter: blur(0) brightness(1.1);
}

/* What We Do Section */
.what-we-do-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, rgba(158, 120, 45, 0.3) 0%, rgba(188, 145, 60, 0.4) 50%, rgba(176, 151, 70, 0.5) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: white;
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
    width: 6px;
    height: 6px;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gold-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--altin-acik, #f0c988), var(--altin-koyu, #9e782d));
    margin: 0.8rem auto;
    border-radius: 3px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.intro-text {
    font-size: 1 rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 600;
    padding-left: 40px;
    padding-right: 20px;
}

.intro-text strong {
    font-size: 1rem;

}

.main-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    padding-left: 40px;
    padding-right: 20px;
    text-align: left;
}

.stats-content {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    min-width: 90px;
    background: rgba(0, 0, 0, 0.25);
    padding: 1.3rem 0.9rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.35);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--altin-acik, #f0c988);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    margin-top: 0.4rem;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: var(--altin-acik) !important;
}

.video-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(158, 120, 45, 0.7) 0%, rgba(158, 120, 45, 0.5) 20%, transparent 40%, transparent 60%, rgba(158, 120, 45, 0.5) 80%, rgba(188, 145, 60, 0.7) 100%);
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    box-sizing: border-box;
    z-index: 3;
    padding: 0;
    margin: 0;
}

.video-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 800px;
}

.video-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: 80%;
}

.video-button {
    background: linear-gradient(145deg, var(--altin-acik), var(--altin-koyu));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.video-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, var(--altin-orta), var(--altin-koyu));
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(158, 120, 45, 0.8), rgba(158, 120, 45, 0));
    backdrop-filter: blur(10px);
    z-index: 4;
    border-radius: 24px 24px 0 0;
}

/* Footer */
.footer {
    position: relative;
    background-color: var(--footer-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom); /* Bu satırı ekleyin */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 1 1 300px;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--altin-acik);
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--altin-acik);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--altin-acik);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--altin-acik);
    color: var(--footer-bg);
    transform: translateY(-3px);
}

.footer-links {
    flex: 1 1 200px;
}

.links-title, .contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--altin-acik);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.links-title::after, .contact-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--altin-acik), var(--altin-koyu));
}

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

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--altin-acik);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--altin-acik);
}

.footer-links a:hover::before {
    width: 100%;
}

/* === FOOTER CONTINUED === */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.contact-item {
    display: inline-block !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    margin: 5px !important;
}

.contact-item i {
    font-size: 24px;
    margin-right: 6px;
}

.contact-item span {
    font-size: 18px;
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.footer-bottom .footer-container {
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--altin-acik);
}

/* Footer Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.footer-decoration::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url("../libs/w.png") no-repeat center/contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(188,145,60,0.1) 0%, rgba(188,145,60,0) 70%);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 0;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 0;
}

/* === PROJECTS SECTION === */
.proje-bg {
    background: linear-gradient(135deg, var(--altin-acik), var(--altin-koyu));
    min-height: 100vh;
    width: 100%;
}

.proje-title {
    color: var(--altin-acik);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.proje-kategori-select {
    background: var(--altin-orta);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    margin-left: 1rem;
}

.proje-search {
    float: right;
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-right: 2rem;
}

.proje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.proje-card {
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: 2px solid var(--altin-orta);
}

.proje-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(158,120,45,0.18);
    border-color: var(--altin-acik);
}

.proje-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--altin-orta);
}

.proje-card-title {
    color: var(--altin-acik);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Project Detail Page */
.proje-detail-container {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.proje-detail-img {
    width: 320px;
    height: 420px;
    object-fit: contain;
    background: #fff;
    border-radius: 24px;
    border: 3px solid var(--altin-orta);
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.proje-detail-content {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    color: #fff;
    border: 2px solid var(--altin-orta);
}

.proje-detail-title {
    color: var(--altin-acik);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.proje-akordeon {
    margin-bottom: 1.2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--altin-orta);
}

.proje-akordeon summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: var(--altin-orta);
    outline: none;
}

.proje-akordeon[open] summary {
    background: var(--altin-koyu);
}

.proje-akordeon-content {
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1rem;
}

/* === NEWS SECTION === */
.haberler-title {
    color: var(--altin-acik);
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
}

.haberler-search {
    background: var(--altin-orta);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    margin-left: 1rem;
    outline: none;
}

.haberler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.haber-card {
    background: rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    border: 2px solid var(--altin-orta);
    transition: transform 0.2s, box-shadow 0.2s;
}

.haber-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(158,120,45,0.18);
    border-color: var(--altin-acik);
}

.haber-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.haber-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.05) 100%);
    color: #fff;
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.haber-card-date {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: var(--altin-acik);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.3rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.haber-card-category {
    background: var(--altin-orta);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 7px;
    padding: 0.2rem 0.9rem;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.haber-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
}

.haber-card-btn {
    background: transparent;
    border: 1.5px solid var(--altin-acik);
    color: var(--altin-acik);
    border-radius: 7px;
    padding: 0.3rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.haber-card-btn:hover {
    background: var(--altin-acik);
    color: #fff;
}

/* === MARQUEE === */
.marquee {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 0;
    position: relative;
    z-index: 10;
}

.marquee span {
    display: inline-block;
    padding-right: 2rem;
}


/* === SERVICES SECTION === */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--altin-acik, #f0c988);
}

.service-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--altin-acik, #f0c988), var(--altin-koyu, #9e782d));
    border-radius: 3px;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* === ABOUT SECTION === */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.about-box {
    width: calc(50% - 20px);
    border-radius: 20px;
    box-shadow: 0 4px 12px var(--golge);
    overflow: hidden;
    color: var(--beyaz);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(188, 145, 60, 0.7); /* Altın rengi şeffaf arkaplan */
    backdrop-filter: blur(10px); /* Bulanık arkaplan efekti */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Hafif beyaz border */
    transition: all 0.3s ease;
}
.about-image-box {
    background: transparent !important;
    backdrop-filter: none !important;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.about-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--beyaz);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4); /* Yarı şeffaf koyu arkaplan */
    padding: 10px 20px;
    border-radius: 10px;
}

.about-message-box {
    padding: 30px;
    background: rgba(158, 120, 45, 0.6); /* Daha koyu altın rengi */
    animation: altinKoyuAnim 8s ease-in-out infinite;
}
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(188, 145, 60, 0.8);
}

.about-message-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--beyaz);
}

.about-message-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--beyaz);
}

/* === VALUES SECTION === */
.values-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.value-box {
    background: var(--altin-orta);
    border-radius: 20px;
    box-shadow: 0 6px 16px var(--golge);
    padding: 25px;
    text-align: center;
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--beyaz);
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    background: var(--altin-koyu);
}

.value-box-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    background: var(--beyaz);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.value-box-svg svg {
    width: 80%;
    height: 80%;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.value-box h2 {
    font-size: 28px;
    color: var(--beyaz);
    margin: 0 0 16px 0;
    font-weight: 600;
}

.value-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--beyaz);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.value-card {
    border-radius: 20px;
    box-shadow: 0 6px 16px var(--golge);
    padding: 25px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card h2 {
    font-size: 32px;
    margin: 12px 0 16px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: var(--beyaz);
}

.value-card.card-type-birlik {
    background: var(--altin-orta);
}
.value-card.card-type-iyilik {
    background: var(--altin-orta);
}
.value-card.card-type-adalet {
    background: var(--altin-acik);
}
.value-card.card-type-ahlak {
    background: var(--altin-acik);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px var(--golge);
}

/* === SCROLL AREA === */
#scroll-area {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y mandatory;
    border: 2px solid #ccc;
}

.full-box {
    min-height: 100vh;
    max-height: 600px;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.6s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    text-align: center;
}

.full-box.show {
    opacity: 1;
}

.scroll-padding {
    height: 0.1px;
}

#box1 { background-image: url('https://images.pexels.com/photos/18336739/pexels-photo-18336739.jpeg'); }
#box2 { background-image: url('https://images.pexels.com/photos/18336739/pexels-photo-18336739.jpeg'); }
#box3 { background-image: url('https://images.pexels.com/photos/18336739/pexels-photo-18336739.jpeg'); }

/* === EXPANDABLE CARDS === */
.general-container {
    display: flex;
    height: 24rem;
    max-width: 90vw;
    width: 90vw;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    gap: 0.5rem;
}

.radio {
    display: none;
}

.content {
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2.5rem;
    cursor: pointer;
    flex: 1;
    min-width: 8rem;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.05, 0.6, 0.39, 0.94);
    height: 100%;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(0.75) contrast(1.1);
    z-index: 0;
}

.content > * {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.8rem 1.5rem;
    color: white;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.card-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 2.1rem;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.radio:checked + .content .card-label {
    display: none;
}

.title-card {
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    width: 100%;
}

.main-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.card-title {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

.radio:checked + .content .title-card {
    opacity: 1;
    transform: translateY(0);
}

.radio:checked + .content {
    flex: 5;
    border-radius: 2.5rem;
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.3);
    z-index: 10;
    height: 100%;
}

.radio:not(:checked) + .content {
    flex: 0.8;
    border-radius: 1.5rem;
    height: 20rem;
}

.radio:not(:checked) + .content .title-card,
.radio:not(:checked) + .content .card-title {
    display: none;
}

/* === NEWS GALLERY === */
.haber-galeri-ust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.haber-baslik-konteyner {
    position: relative;
}

.haber-ana-baslik {
    font-size: 1.8rem;
    color: #d4af37;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.haber-alt-cizgi {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #f9d423);
    margin-top: 10px;
    border-radius: 3px;
}

.tum-haberler-buton {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4af37, #f9d423);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.tum-haberler-buton svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tum-haberler-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.tum-haberler-buton:hover svg {
    transform: translateX(3px);
}

.haber-baslik-container {
    text-align: center;
    margin: 30px 0;
}

.haber-baslik-cizgi {
    height: 1px;
    width: 100px;
    background: #fff;
    margin: 0 auto 10px;
}

.haber-ana-baslik {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Galeri Konteyner */
.haber-galeri-konteyner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 16px;
    overflow: hidden;
}

.haber-galeri {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.haber-galeri::-webkit-scrollbar {
    display: none;
}

/* Kartlar - Geniş Yatay */
.haber-kart {
    flex: 0 0 600px;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    scroll-snap-align: start;
    min-height: 400px;
    position: relative;
    max-width: 600px;
}

.haber-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Resim */
.haber-resim-konteyner {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.haber-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

.haber-kart:hover .haber-resim {
    transform: scale(1.05);
    filter: brightness(1);
}

.haber-etiket {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #f9d423);
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* İçerik Bölümü */
.haber-icerik {
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.haber-baslik {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    color: #d4af37;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.haber-aciklama {
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    flex-grow: 1;
}

/* Buton - "Detaylar" */
.haber-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.haber-link:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Sol/Sağ Oklar */
.galeri-ok {
    background: rgba(212, 175, 55, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.galeri-ok:hover {
    background: #d4af37;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.sol-ok {
    left: 10px;
}

.sag-ok {
    right: 10px;
}

/* Tüm Haberler Butonu */
.tum-haberler-buton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.8);
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.tum-haberler-buton:hover {
    background: #d4af37;
    transform: translateY(-2px);
}
/* === HERO SECTION === */
.tugva-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    border-radius: 25px;
}

.tugva-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
@keyframes tugva-flow-simple {
  0%   { opacity: 0.85; }
  50%  { opacity: 0.95; }
  100% { opacity: 0.85; }
}

.tugva-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(188, 145, 60, 0.6),
        rgba(176, 151, 70, 0.5),
        rgba(158, 120, 45, 0.4),
        var(--sofk-renk) 80%
      ),
      linear-gradient(
        135deg,
        var(--altin-acik) 0%,
        var(--altin-orta) 40%,
        var(--altin-koyu) 70%,
        var(--sofk-renk) 100%
      );
    filter: blur(15px); /* blur azaltıldı */
    mix-blend-mode: screen;
    opacity: 0.9;
    z-index: 2;
    pointer-events: none;
    animation: tugva-flow-simple 6s ease-in-out infinite alternate; /* sadeleştirildi */
}

.tugva-edge-blur {
    position: absolute;
    pointer-events: none;
    filter: blur(15px); /* blur azaltıldı */
    opacity: 0.7;       /* performans için hafifletildi */
    mix-blend-mode: overlay;
    z-index: 3;
}

.tugva-edge-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, var(--altin-koyu), transparent);
}

.tugva-edge-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--altin-koyu), transparent);
}

.tugva-edge-left {
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--altin-orta), transparent);
}

.tugva-edge-right {
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, var(--altin-orta), transparent);
}

.tugva-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.tugva-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.tugva-divider {
    width: clamp(100px, 20vw, 140px);
    height: 5px;
    background: linear-gradient(90deg, var(--altin-acik), var(--altin-koyu));
    margin: 1.8rem auto;
    box-shadow: 0 0 20px rgba(180, 140, 50, 0.6);
}

.tugva-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    max-width: 650px;
    margin: 1rem auto;
    padding: 0 1rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.tugva-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--altin-orta), var(--altin-koyu));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 2rem;
    box-shadow: 0 6px 25px rgba(120, 90, 30, 0.6);
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.tugva-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(120, 90, 30, 0.8);
}

/* === HEADER TITLE === */
.haber-baslik-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.haber-ana-baslik {
    font-size: 1.8rem;
    color: #d4af37;
    margin: 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.haber-baslik-cizgi {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(212,175,55,0.3), rgba(212,175,55,0.8));
    max-width: 150px;
}

/* === WELCOME ANIMATION === */
.welcome-title {
    filter: blur(4px);
    opacity: 0;
    transition: filter 0.5s ease, opacity 0.5s ease;
}
.welcome-title.visible {
    filter: blur(0);
    opacity: 1;
}

.description {

    color: white !important;
    line-height: 2rem !important;
    /* margin-bottom: 1.2rem !important;

    padding-left: 40px !important;
    padding-right: 20px !important;
    text-align: left !important; */
}

.description strong {
    font-size: 1.3rem !important;
}

/* === RESPONSIVE STYLES === */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
        width: auto;
        padding: 0;
        margin: 0;
    }

    .content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .news-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (min-width: 992px) {
    .news-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .profile-content {
        flex: 1 1 420px;
        max-width: 520px;
        min-width: 280px;
        text-align: left;
    }
}

@media (max-width: 1200px) {
    .video-title {
        font-size: 2.5rem;
    }

    .news-slider-wrapper {
        padding: 0 24px;
    }

    .slider-btn.prev {
        left: -8px;
    }

    .slider-btn.next {
        right: -8px;
    }
}

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

    .proje-detail-container {
        flex-direction: column;
        align-items: center;
    }

    .proje-detail-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .video-section {
        height: 60vh;
        min-height: 400px;
    }

    .video-title {
        font-size: 2rem;
    }

    .video-description {
        font-size: 1rem;
    }

    .video-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo-text {
        font-size: 1.3rem;
    }

    .news-slider-wrapper {
        padding: 0 2px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .slider-btn.prev {
        left: 0;
    }

    .slider-btn.next {
        right: 0;
    }

    .haberler-grid {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .about-box {
        width: 100%;
    }

    .about-image-box {
        height: 400px;
    }

    .about-message-box h1 {
        font-size: 28px;
    }

    .about-message-box p {
        font-size: 16px;
    }

    .haber-ana-baslik {
        font-size: 1.5rem;
        white-space: normal;
        margin: 0 10px;
    }

    .haber-baslik-cizgi {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .video-section {
        height: 50vh;
        min-height: 350px;
    }

    .video-title {
        font-size: 1.8rem;
    }

    .video-content {
        padding: 0 1.5rem;
    }

    .marquee span {
        animation: marquee 10s linear infinite !important;
        font-size: 1rem;
        padding-left: 100vw;
    }

    .marquee {
        font-size: 1rem;
        padding: 6px 0;
    }

    .container,
    .news-container,
    .dashboard-container,
    .zstack-container,
    .what-we-do-section,
    .video-section,
    .footer-container {
        padding-left: 4px;
        padding-right: 4px;
    }

    .main-title,
    .news-title,
    .welcome-title,
    .video-title {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    .subtitle,
    .description,
    .video-description {
        font-size: 0.95rem !important;
        text-align: center !important;
    }

    .profile-section,
    .profile-content {
        flex-direction: column !important;
        align-items: center !important;
    }

    .profile-image-container {
        margin-bottom: 12px;
         align-items: center !important;
    }

    .news-card,
    .card {
        min-width: 180px;
        max-width: 96vw;
    }

    .haber-ana-baslik {
        font-size: 1.3rem;
    }

    .haber-baslik-cizgi {
        max-width: 50px;
    }
}

@media (max-width: 480px) {
    .tugva-hero {
        border-radius: 2px;
    }

    .tugva-overlay {
        filter: blur(12px);
    }

    .tugva-edge-top,
    .tugva-edge-bottom {
        height: 60px;
    }

    .tugva-edge-left,
    .tugva-edge-right {
        width: 50px;
    }

    .tugva-divider {
        margin: 1.2rem auto;
    }

    .tugva-button {
        padding: 12px 24px;
        margin-top: 1.5rem;
    }

    .haber-kart {
        flex: 0 0 90%;
        min-height: 380px;
    }

    .haber-resim-konteyner {
        height: 180px;
    }

    .haber-baslik {
        font-size: 1.1rem;
    }

    .haber-aciklama {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

/* Tablet ve büyük ekranlar için ince ayar */
@media (min-width: 1200px) {
    .general-container {
        width: 80vw;
        max-width: 1400px;
    }

    .main-title {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

@viewport {
    width: device-width;
    zoom: 1.0;
}


/* Ortak circle stili */
:root {
  --altin-acik: rgb(176, 151, 70);
  --altin-orta: rgb(188, 145, 60);
  --altin-koyu: rgb(158, 120, 45);
  --mavi-tek: rgb(0, 69, 143);
}

.ripple-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  /* Arka plan altın tonlarından degrade yapabiliriz */
  background: linear-gradient(135deg, var(--altin-acik), var(--altin-orta), var(--altin-koyu));
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: var(--mavi-tek); /* Daireler mavi olacak */
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.small { width: 200px; height: 200px; left: -100px; bottom: -100px; }
.medium { width: 400px; height: 400px; left: -200px; bottom: -200px; }
.large { width: 600px; height: 600px; left: -300px; bottom: -300px; }
.xlarge { width: 800px; height: 800px; left: -400px; bottom: -400px; }
.xxlarge { width: 1000px; height: 1000px; left: -500px; bottom: -500px; }

.shade1 { opacity: 0.2; }
.shade2 { opacity: 0.5; }
.shade3 { opacity: 0.7; }
.shade4 { opacity: 0.8; }
.shade5 { opacity: 0.9; }

@keyframes ripple {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.2); }
  100% { transform: scale(0.8); }
}

@media (max-width: 768px) {
    .footer-decoration::after {
        background: none !important;
    }
}
@media (max-width: 768px) {
    .video-hero {
        position: relative;
        width: 100%;
        height: 100vh; /* tam ekran yüksekliği */
        overflow: hidden;
    }
	 .video-hero .fullscreen-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* videoyu ekranı dolduracak şekilde kırp */
    }
/* ===== SADECE Aktif Başvurular kısmını mobilde ortala ===== */
@media (max-width: 768px) {
  .footer-cta {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;   /* tüm içeriği ortalar */
    margin-top: 24px;      /* üstten biraz boşluk */
  }

  .footer-cta h3 {
    text-align: center;
    margin-bottom: 16px;
  }

  .cta-buttons {
    width: 100%;
    max-width: 360px;       /* buton genişliği */
    margin: 0 auto;         /* ortala */
  }

  .cta-buttons a {
    display: block;
    width: 100%;
  }

  .footer-logo {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }
}/* Başvuru formu – navbar ofseti ve ortalama */
.apply-form-page {
  padding-top: 120px;  /* gerekirse 100–160px arası ayarlayabilirsiniz */
}

.apply-form-page .vakif-row-center {
  display: flex;
  justify-content: center;
}

.apply-form-page .vakif-col-md {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;  /* ortalama garantisi */
}

@media (max-width: 992px) {
  .apply-form-page { padding-top: 140px; }
}
@media (max-width: 576px) {
  .apply-form-page { padding-top: 160px; }
}
