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

/* Horizontal Separator */
.horizontal-separator {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #666666 20%, #666666 80%, transparent 100%);
    margin: 2rem 0;
}

/* Magazine Style Typography */
.magazine-style {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    text-align: justify;
    hyphens: auto;
}

.magazine-style p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-indent: 2rem;
    color: #34495e;
    text-align: justify;
    hyphens: auto;
}

.magazine-style p.intro-paragraph {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-indent: 2rem;
    color: #34495e;
    text-align: justify;
    hyphens: auto;
}

.magazine-style p:first-of-type {
    text-indent: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.magazine-style h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin: 1.5rem 0 0.5rem 0;
    position: relative;
}

.magazine-style ul {
    margin: 0.5rem 0;
    padding-left: 0;
}

.magazine-style ul li {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    padding-left: 2rem;
    position: relative;
    color: #34495e;
    text-align: justify;
    list-style: none;
    text-indent: 0;
    letter-spacing: normal;
    word-spacing: normal;
}

.magazine-style ul li::before {
    content: '▪';
    color: #000000;
    font-size: 1.2rem;
    position: absolute;
    left: 0.5rem;
    top: 0;
}

.magazine-style strong {
    color: #34495e;
    font-weight: normal;
}

/* Magazine Article Layout */
.magazine-article {
    max-width: 1260px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.magazine-article .article-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a252f;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Drop Cap for First Paragraph */
.magazine-style .drop-cap {
    font-size: 1rem;
    line-height: 1.6;
}

.magazine-style .drop-cap::first-letter {
    float: left;
    font-family: 'Georgia', serif;
    font-size: 4rem;
    line-height: 3rem;
    padding-right: 8px;
    padding-top: 4px;
    color: #000000;
    font-weight: 700;
}

/* Responsive Design for Magazine Style */
@media (max-width: 768px) {
    .magazine-article {
        padding: 1rem;
        margin: 1rem;
    }
    
    .magazine-article .article-title {
        font-size: 2rem;
    }
    
    .magazine-style h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .magazine-style p {
        font-size: 1rem;
        text-indent: 1rem;
    }
    
    .magazine-style .drop-cap::first-letter {
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

/* Manual Two-Column Layout */
.manual-two-column {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.manual-two-column .column-left,
.manual-two-column .column-right {
    flex: 1;
    padding-right: 0.75rem;
}

.manual-two-column .column-left {
    border-right: none;
    position: relative;
}

.manual-two-column .column-left::after {
    display: none;
}

.manual-two-column .column-right {
    padding-right: 0;
    padding-left: 0.75rem;
}

/* Responsive adjustments for manual two-column layout */
@media (max-width: 768px) {
    .manual-two-column {
        flex-direction: column;
        gap: 2rem;
    }
    
    .manual-two-column .column-left {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 2rem;
        padding-right: 0;
    }
    
    .manual-two-column .column-right {
        padding-left: 0;
    }
}

/* Two-Column Magazine Layout */
.magazine-two-column {
    column-count: 2;
    column-gap: 3rem;
    column-rule: 1px solid #e0e0e0;
    text-align: justify;
    hyphens: auto;
    margin-top: 2rem;
}

.magazine-two-column h2 {
    column-span: all;
    margin-top: 2rem;
    margin-bottom: 1rem;
    break-after: avoid;
}

.magazine-two-column h2:first-child {
    margin-top: 0;
}

.magazine-two-column p {
    break-inside: avoid;
    orphans: 3;
    widows: 3;
}

.magazine-two-column ul {
    break-inside: avoid;
    margin: 1rem 0;
}

.magazine-two-column li {
    break-inside: avoid;
}

/* Responsive adjustments for two-column layout */
@media (max-width: 768px) {
    .magazine-two-column {
        column-count: 1;
        column-gap: 0;
        column-rule: none;
    }
}

/* Additional Magazine Elements */
.magazine-style blockquote {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

/* Hero Description Style for Article Content */
.hero-description-style {
    font-family: serif;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 8px;
    line-height: 1.4;
}

.hero-description-style p {
    font-family: serif;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 8px;
    line-height: 1.4;
}

.hero-description-style h2 {
    font-family: serif;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 4px;
}

.hero-description-style ul li {
    font-family: serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    word-spacing: 4px;
    line-height: 1.4;
}

:root {
    /* OH Architecture Color Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #8b8b8b;
    --light-accent: #f5f5f5;
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #8b8b8b;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    
    /* Minimal Borders */
    --border-light: #e8e8e8;
    --border-medium: #d0d0d0;
    --border-color: #e8e8e8;
    
    /* Subtle Shadows */
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Clean Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

html {
    margin: 0;
    padding: 0;
    background: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: white;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

/* Removed loading spinner - no loader needed */

/* 6 Different Page Animations - Each Page Has Unique Animation */

/* Hakkımızda ve Hizmetlerimiz Arası Flip Animasyonu */
.flip-in-from-services {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transform-origin: center center; /* Kartın tam merkezinden dönmesini sağlar */
    animation: flipInContent 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes flipInContent {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* 1. Ana Sayfa - Hero Entrance Effect */
.hero-entrance {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    animation: heroEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 2. Hakkımızda - Slide In From Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 3. Hizmetlerimiz - Slide In From Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 4. Projelerimiz - Zoom In Scale */
.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 5. Partnerlerimiz - Bounce In Effect */
.bounce-in {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
    animation: bounceIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* 6. İletişim - 3D Flip */
.flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(-180deg);
    animation: flipIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframes for 6 Different Page Animations */

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    30% {
        opacity: 0.3;
        transform: translateY(40px) scale(0.95);
    }
    60% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.6) translateY(-50px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) translateY(10px);
    }
    75% {
        opacity: 0.9;
        transform: scale(0.95) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-180deg);
    }
    50% {
        opacity: 0.8;
        transform: perspective(1000px) rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* Stagger Animation for Multiple Elements */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Smooth Link Transitions */
.nav-link, .btn, a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Homepage için nav-link hover animasyonu devre dışı */
.homepage .nav-link:hover {
    transform: none;
}

/* Diğer sayfalar için nav-link hover animasyonu */
body:not(.homepage) .nav-link:hover {
    transform: translateY(-2px);
}

/* Page Load Animation - Disabled for homepage */
.page-loaded {
    animation: none;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Navigation - Shape Studio Minimal Style */
/* Header container - ensure it doesn't interfere with navbar */
.header {
    position: relative;
    z-index: 99998;
    width: 100%;
    height: auto;
}



.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999 !important;
    padding: 0;
    transition: all 0.3s ease;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) 0 0.5rem;
    position: relative;
    z-index: 99999 !important;
}

.logo {
    position: static;
    transform: none;
    z-index: 99999;
    flex-shrink: 0;
}

/* Ana sayfa dışındaki sayfalarda logo aynı konumda */
body:not(.homepage) .logo {
    position: static;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.7;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    left: 20px;
    top: -10px;
    z-index: 99999 !important;
    flex-shrink: 0;
}

.logo-img {
    height: 140px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    cursor: pointer;
    background-color: transparent;
}

.navbar.scrolled .logo-img {
    height: 100px;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.logo-text {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo-text-black {
    color: #000000 !important;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1200px) {
    .logo-text {
        font-size: 3.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.45rem 0.7rem;
        min-width: 85px;
    }
}

@media (max-width: 992px) {
    .logo-text {
        font-size: 3rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.65rem;
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 65px;
        width: auto;
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.7rem;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 99999 !important;
    position: relative;
}

/* Tüm sayfalarda navbar başlıkları için temel stiller */
.nav-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.4rem;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    color: #000000;
    min-width: 70px;
}

/* Anasayfa dışındaki sayfalarda navbar stilleri */
body:not(.homepage) .nav-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

body:not(.homepage) .nav-link {
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

body:not(.homepage) .nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

body:not(.homepage) .nav-link.active {
    color: #ffffff;
    background-color: transparent;
    font-weight: 700;
}

/* Anasayfa navbar stilleri */
.homepage .nav-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.homepage .nav-link {
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.homepage .nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.homepage .nav-link.active {
    color: #ffffff;
    background-color: transparent;
    font-weight: 700;
}

/* About page specific styles */
.about-page {
    background: #ffffff !important;
    color: #000000;
}

/* Anasayfa dışındaki tüm sayfalar için navbar boşluğu */
body:not(.homepage) {
    padding-top: 175px;
}

@media (max-width: 768px) {
    body:not(.homepage) {
        padding-top: 120px;
    }
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6,
.about-page p,
.about-page span:not(.language-toggle span):not(.site-footer span),
.about-page div:not(.language-toggle):not(.site-footer div):not(.site-footer) {
    color: #000000 !important;
}

.about-page .language-toggle,
.about-page .language-toggle span,
.about-page .language-toggle div {
    color: #ffffff !important;
}

.about-page .about-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    color: #000000 !important;
}

.about-page .about-card h3 {
    color: #000000 !important;
}

.about-page .about-card p {
    color: #333333 !important;
}

.about-page .about-features li {
    color: #333333 !important;
}

.about-page .about {
    background: #ffffff !important;
    padding-bottom: 5rem;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 0.2rem;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff !important;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 550;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    position: relative;
    background: transparent;
    backdrop-filter: none;
}

.language-toggle:hover {
    color: #ffffff !important;
    background: transparent;
    transform: translateY(-1px);
}

.language-toggle i {
    color: #ffffff !important;
}

.language-toggle:hover i {
    color: #ffffff !important;
}

/* Sadece anasayfa için language-toggle arka planı */
.homepage .language-toggle {
    background: rgba(0, 0, 0, 1) !important;
    backdrop-filter: blur(3px) !important;
    color: #ffffff !important;
}

.homepage .language-toggle:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Anasayfa dışındaki sayfalar için language-toggle stilleri */
body:not(.homepage) .language-toggle {
    background: rgba(0, 0, 0, 1) !important;
    color: #ffffff !important;
    backdrop-filter: none !important;
}

body:not(.homepage) .language-toggle:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}



/* About-page sınıfı için navbar stillerini ana sayfa ile aynı yap */
.about-page .navbar {
    background: rgba(0, 0, 0, 0.8) !important;
}

.about-page .nav-link {
    color: #ffffff !important;
}

.about-page .nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about-page .nav-link.active {
    color: #ffffff !important;
}

.about-page .language-toggle {
    color: #ffffff !important;
}

.about-page .language-toggle:hover {
    color: #ffffff !important;
}

.about-page .language-toggle i {
    color: #ffffff !important;
}

.about-page .language-toggle:hover i {
    color: #ffffff !important;
}

/* News-page sınıfı için navbar stillerini diğer sayfalar ile aynı yap */
.news-page .navbar,
.haberler-page .navbar {
    background: rgba(0, 0, 0, 0.6) !important;
}

.news-page .nav-link,
.haberler-page .nav-link {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.news-page .nav-link:hover,
.haberler-page .nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.2);
}

.news-page .nav-link.active,
.haberler-page .nav-link.active {
    color: #ffffff !important;
    font-weight: 700;
}

.news-page .language-toggle,
.haberler-page .language-toggle {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 1) !important;
}

.news-page .language-toggle:hover,
.haberler-page .language-toggle:hover {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.news-page .language-toggle i,
.haberler-page .language-toggle i {
    color: #ffffff !important;
}

.news-page .language-toggle:hover i,
.haberler-page .language-toggle:hover i {
    color: #ffffff !important;
}

/* News-detail-page sınıfı için navbar stillerini news-page ile aynı yap */
.news-detail-page .navbar {
    background: rgba(0, 0, 0, 0.6) !important;
}

.news-detail-page .nav-link {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.news-detail-page .nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.2);
}

.news-detail-page .nav-link.active {
    color: #ffffff !important;
    font-weight: 700;
}

.news-detail-page .language-toggle {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 1) !important;
}

.news-detail-page .language-toggle:hover {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.news-detail-page .language-toggle i {
    color: #ffffff !important;
}

.news-detail-page .language-toggle:hover i {
    color: #ffffff !important;
}



.current-lang {
    font-weight: 400;
}

/* Blog sayfasında current-lang görünürlüğünü artır */
.haberler-page .current-lang {
    font-weight: 600;
    color: #ffffff !important;
}

/* Blog detay sayfalarında current-lang görünürlüğünü artır */
.news-detail-page .current-lang {
    font-weight: 600;
    color: #ffffff !important;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.flag-icon {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.flag-icon svg {
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.lang-option.active {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

/* News page specific language selector styles */
body.news-page .language-selector .language-dropdown .lang-option {
    color: #ffffff !important;
}

body.news-page .language-selector .language-dropdown .lang-option:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

body.news-page .language-selector .language-dropdown .lang-option.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

body.news-page .language-selector .language-dropdown {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Mobile Menu Toggle - Hamburger Button */
.nav-toggle,
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: 300;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 99999 !important;
}

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

/* Hamburger Menu Lines */
.nav-toggle .bar,
.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Anasayfa dışındaki sayfalarda hamburger menü rengi */
body:not(.homepage) .nav-toggle,
body:not(.homepage) .mobile-menu-toggle {
    color: #000000;
}

body:not(.homepage) .nav-toggle .bar,
body:not(.homepage) .mobile-menu-toggle .bar {
    background-color: #000000;
}

body:not(.homepage) .nav-toggle:hover,
body:not(.homepage) .mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Active state - X shape */
.nav-toggle.active .bar:nth-child(1),
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2),
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3),
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Shape Studio Minimal Style with Background */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    background: transparent;
    overflow: hidden;
    margin: 0;
}

body.homepage {
    overflow: hidden; /* Ana sayfada kaydırmayı tamamen kapatır */
}

.partners-hero {
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 5%;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: none;
    filter: brightness(0.75);
}

.slide.active {
    opacity: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
}

.hero-content {
    max-width: 50%;
    margin: 0;
    padding: 0;
    margin-top: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-align: justify;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    margin-top: auto;
    margin-left: 0;
    line-height: 1.1;
    font-weight: 500;
    font-family: serif;
    max-width: clamp(300px, 80vw, 600px);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 700px), calc(-50% + 400px));
    letter-spacing: 1px;
    word-spacing: 8px;
    z-index: 10;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero .btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    backdrop-filter: blur(10px);
    text-shadow: none;
}

.hero .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero .btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-description {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        max-width: clamp(400px, 70vw, 500px);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-description {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        max-width: 90vw;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero .btn {
        width: 250px;
        padding: 1rem 2rem;
    }
}

/* Button Styles - OH Architecture */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid var(--text-primary);
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
}

/* Section Styles - OH Architecture */
.section {
    background: #666666;
    padding: 5rem 5%;
    margin: 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: none;
    padding-top: 2rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    margin-top: 0rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    margin: 0;
    white-space: nowrap;
}

.section-accent {
    background: rgba(245, 245, 245, 0.8);
}

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

.section-dark .section-title {
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        text-align: center;
        padding: 0 var(--spacing-sm);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #666666;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.about-card {
    background: #666666;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #888888;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: auto;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.about-card .about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-color);
    font-weight: 600;
}

.about-card p {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-top: auto;
}

.about-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.82rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
}

/* Services Section - OH Architecture Style */
.services {
    background: white;
    padding: 5rem 5%;
    margin: 0;
    position: relative;
}

.services .container,
.services-grid {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    background: transparent;
    padding: var(--spacing-lg) 0;
    text-align: left;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: visible;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.service-icon i {
    font-size: 18px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--bg-primary);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a252f;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.service-description {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }
}

/* Business Partners Section - OH Architecture Style */
.partners {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.partners::before {
    display: none;
}

.partners .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: var(--spacing-sm);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.partners-hero .partners-grid {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.partner-card {
    background: white;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: left;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 1.25rem;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.partner-card .partner-category {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.partner-card .partner-description {
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    min-height: auto;
}

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    height: 60px;
    align-content: flex-start;
    overflow: hidden;
}

.specialty {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    color: #ffffff;
    padding: 0.15rem 0.35rem;
    font-size: 0.55rem;
    border-radius: 10px;
    font-weight: 400;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    animation: gradientShift 4s ease infinite;
    cursor: pointer;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.specialty:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 1s;
}

.specialty::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff6b6b);
    background-size: 400% 400%;
    border-radius: 50px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.specialty:hover::before {
    opacity: 1;
}

.specialty::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.45rem;
}

.specialty:hover::after {
    opacity: 1;
    right: 4px;
}

/* Partner Website Links */
.partner-website {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    text-align: left;
    background: #f8f9fa;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #ddd;
}

.website-link:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #ccc;
}

.website-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.website-link:hover::after {
    transform: translateX(3px);
}

/* Partnership Benefits */
.partnership-benefits {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-light);
}

.partnership-benefits h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-accent);
    border-radius: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .partnership-benefits h3 {
        font-size: 1.5rem;
    }
}

/* Projects Section - OH Architecture Style */
.projects {
    background: white;
    padding: 5rem 5%;
    margin: 0;
    position: relative;
}

.projects .container {
    position: relative;
    z-index: 2;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.hotel-projects-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    grid-column: 1 / -1;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .hotel-projects-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hotel-projects-row {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    height: 480px;
    display: flex;
    flex-direction: column;
}

/* Larger project card for featured projects */
.project-card.large {
    height: 580px;
    grid-column: span 2;
}

.project-card.large .project-image {
    height: 380px;
}

@media (max-width: 1024px) {
    .project-card.large {
        grid-column: span 1;
        height: 530px;
    }
    
    .project-card.large .project-image {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .project-card.large {
        height: 480px;
    }
    
    .project-card.large .project-image {
        height: 270px;
    }
}

.project-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #f8f8f8;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    filter: none;
}

/* Hover kararma efekti kaldırıldı */
.project-card:hover .project-image img {
    opacity: 1;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider img.active {
    opacity: 1;
    filter: brightness(1.1) contrast(1.05);
}

/* Slider içinde yüklenemeyen görsellerin (kırık ikon ve alt yazı) görünmesini engelle */
.image-slider img.broken {
    display: none !important;
}

.slider-controls {
    display: none !important;
}

.slider-btn {
    display: none !important;
}

/* .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
} */

/* .project-card:hover .project-overlay {
    opacity: 1;
} */

.view-gallery {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.view-gallery:hover {
    background: white;
    color: #333;
}

.project-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a252f;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-location {
    font-size: 0.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.tag {
    background: transparent;
    color: var(--text-light);
    padding: 0.3rem 0;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .project-image {
        height: 270px;
    }
}

/* Project Filters - OH Architecture Style */
.project-filters {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.5rem 0;
    font-weight: 300;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Project Card Animation States */
.project-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .project-filters {
        justify-content: center;
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-md);
    }
}

/* Contact Section - OH Architecture Style */
.contact {
    background: rgba(255, 255, 255, 0.9);
    padding: 5rem 5%;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
body .site-footer {
    background-color: #404040 !important; /* Arka plan rengi çok az daha açıldı (#333333 -> #404040) */
    padding: 3rem 0 1rem 0 !important;
    margin-top: 5rem !important;
    border-top: 1px solid #555555 !important; /* Üst kenarlık da uyumlu şekilde hafif açıldı */
    font-family: 'Inter', sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
}

body .site-footer *,
body .site-footer p,
body .site-footer span,
body .site-footer div,
body .site-footer a,
body .site-footer i,
body .site-footer h4,
.about-page .site-footer *,
.services-page .site-footer *,
.projects-page .site-footer *,
.partners-page .site-footer * {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Telif hakkı kısmının yatay durması için */
.copyright {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-direction: row !important;
}

.copyright span {
    display: inline !important;
}

/* Flex yapılarını korumak için display düzeltmeleri */
.footer-container, .footer-contact, .contact-item, .footer-bottom, .footer-social {
    display: flex !important;
}

.contact-item span, .contact-item a, .contact-item i {
    display: inline-block !important;
}

.footer-brand p, .footer-contact h4, .copyright {
    display: block !important;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    margin-top: -30px; /* Logoyu ve altındaki yazıyı bir bütün olarak yukarı taşır */
}

.footer-logo {
    height: 130px; /* Logonun boyutu belirgin şekilde büyütüldü */
    width: auto;
    margin-bottom: -15px; /* Logoyu yazıya daha da yaklaştırmak için negatif margin kullanıldı */
    object-fit: contain;
    filter: brightness(0) invert(1); /* Siyah logoyu beyaza çevirir */
}

.footer-desc {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #cccccc !important;
}

.contact-item i {
    margin-top: 4px;
    color: #ffffff;
    width: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 6rem auto 0; /* Çizgiyi çok daha aşağı itmek için 4rem'den 6rem'e çıkarıldı */
    padding: 1.5rem var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #cccccc !important; /* Üzerine gelince çok hafif gri olsun ki tıklandığı belli olsun */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-details h4 {
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
}

/* Contact Forms and Tabs */
.contact-forms {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: #e9ecef;
    color: #1e3c72;
}

.tab-button.active {
    background: #1e3c72;
    color: white;
    border-bottom-color: #1e3c72;
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Contact Form - OH Architecture Style */
.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    border: none;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    font-weight: 300;
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.form-group select {
    cursor: pointer;
    border: 1px solid var(--border-light);
    padding: var(--spacing-md);
}

.form-group select option {
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--text-primary);
    background: var(--bg-light);
}

.form-group select:focus {
    border-color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid var(--border-light);
    padding: var(--spacing-md);
}

.form-group textarea:focus {
    border-color: var(--text-primary);
}

.submit-btn {
    background: transparent;
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    border: 1px solid var(--text-primary);
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--spacing-md);
}

.submit-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

/* Footer - OH Architecture Style */
.footer {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }
    
    .footer-bottom {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-toggle,
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-logo {
        position: relative;
        left: 0;
        top: 0;
        order: 1;
        flex-shrink: 0;
    }
    
    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100%;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 48px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 16px;
        z-index: 99999 !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 12px 24px;
        min-width: 200px;
        text-align: center;
    }
    
    .language-toggle {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    section {
        padding: 60px 0;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for form submission */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

/* Partner Styles */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-medium);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    height: 55px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

/* Belirtilen firmaların logolarını büyüt */
.partner-logo img[alt="BONGARD Logo"] {
    max-width: 120%;
    max-height: 120%;
    transform: scale(1.1);
}

.partner-logo img[alt="POLARIS Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

.partner-logo img[alt="COMENDA Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

.partner-logo img[alt="BURLODGE Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

.partner-logo img[alt="HOSHIZAKI Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

.partner-logo img[alt="ROBOT-COUPE Logo"] {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
}

.partner-logo img[alt="SIRMAN Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

.partner-logo img[alt="SCHOLL Logo"] {
    max-width: 150%;
    max-height: 150%;
    transform: scale(1.3);
}

/* Foster, Hobart, Ciam, Bravilor ve Scotsman logolarını büyüt/* Foster Logo */
.partner-logo img[alt="FOSTER Logo"] {
    max-width: 120%;
    max-height: 120%;
    transform: scale(1.1);
}

.partner-logo img[alt="Hobart Logo"] {
    max-width: 220%;
    max-height: 220%;
    transform: scale(1.3);
}

.partner-logo img[alt="CIAM Logo"] {
    max-width: 130%;
    max-height: 130%;
    transform: scale(1.2);
}

.partner-logo img[alt="Bravilor Bonamat Logo"] {
    max-width: 130%;
    max-height: 130%;
    transform: scale(1.2);
}

.partner-logo img[alt="Scotsman Logo"] {
    max-width: 130%;
    max-height: 130%;
    transform: scale(1.2);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.partner-category {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.specialty {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid var(--border-light);
}

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

.website-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.website-link:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #ccc;
}

.partnership-benefits {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.partnership-benefits h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .partner-card {
        padding: var(--spacing-md);
    }
}

/* --- BÜYÜK EKRANLAR İÇİN ORANTISAL ÖLÇEKLENDİRME --- */
/* Bu kod bloğu, sitenin 1920x1080 çözünürlükteki görünümünü 
   matematiksel olarak (vw/vh) yüzdelere çevirir. 
   Böylece 1920x1080 ekranda BİREBİR AYNI (milimetresine kadar) görünürken,
   2560x1600 gibi ekranlarda veya Windows ölçeklendirmesi açıkken 
   taşmaları ve kesilmeleri engeller. */
@media (min-width: 1025px) {
    .nav-container {
        max-width: 72.916vw !important; /* 1920px'de tam 1400px yapar */
        margin-right: 5.208vw !important; /* 1920px'de tam 100px yapar */
    }
    
    .logo {
        left: -21.354vw !important; /* 1920px'de tam -410px yapar */
    }
    
    body:not(.homepage) .logo {
        left: -20.312vw !important; /* 1920px'de tam -390px yapar */
    }
    
    .hero-description {
        transform: translate(calc(-50% + 36.458vw), calc(-50% + 37.037vh)) !important; /* 1920x1080'de tam 700px ve 400px yapar */
        font-size: clamp(1.5rem, 2.5vw, 3rem) !important;
    }
}
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .partnership-benefits {
        padding: var(--spacing-md);
    }
}

/* Anasayfa dışındaki tüm sayfalar için siyah metin */
body:not(.homepage) {
    color: #000000 !important;
}

body:not(.homepage) * {
    color: #000000 !important;
}

body:not(.homepage) h1,
body:not(.homepage) h2,
body:not(.homepage) h3,
body:not(.homepage) h4,
body:not(.homepage) h5,
body:not(.homepage) h6,
body:not(.homepage) p,
body:not(.homepage) span,
body:not(.homepage) div,
body:not(.homepage) li,
body:not(.homepage) a {
    color: #000000 !important;
}

/* Anasayfa dışındaki sayfalarda kartların arka planını beyaz yap */
body:not(.homepage) .about-card,
body:not(.homepage) .service-card,
body:not(.homepage) .partner-card,
body:not(.homepage) .project-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

/* Kart içindeki metinlerin rengini ayarla */
body:not(.homepage) .about-card h3,
body:not(.homepage) .service-card h3,
body:not(.homepage) .partner-card h3,
body:not(.homepage) .project-card h3 {
    color: #333333 !important;
}

body:not(.homepage) .about-card p,
body:not(.homepage) .service-card p,
body:not(.homepage) .partner-card p,
body:not(.homepage) .project-card p {
    color: #333333 !important;
}

/* Anasayfa dışındaki sayfalarda navbar'ın arka planını daha koyu yap */
body:not(.homepage) .navbar {
    background: rgba(0, 0, 0, 0.85) !important;
}

/* Anasayfa dışındaki sayfalarda kart simgelerinin rengini eski haline getir */
body:not(.homepage) .about-icon {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border: 2px solid #dee2e6 !important;
}

body:not(.homepage) .about-icon i {
    color: #6c757d !important;
}

/* Hakkımızda sayfasındaki başlığı biraz daha aşağıya al */
body:not(.homepage) .section-header {
    margin-top: 0rem;
    margin-bottom: 4rem;
    margin-left: 8px;
}

/* About-page class'ı için beyaz arka plan */
.about-page {
    background: #ffffff !important;
}

/* Hakkımızda sayfasındaki logo arka planını şeffaf yap */
.about-page .logo-img {
    background-color: transparent !important;
    padding: 5px;
    border-radius: 5px;
}

/* Project Detail Page Styles */
.project-detail {
    padding: 2rem 0;
}

.project-detail-content {
    margin-top: 3rem;
}

.project-description {
    margin-bottom: 3rem;
}

.project-description h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 7rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--secondary-color);
}

/* Gallery Styles */
.project-gallery h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close:hover {
    color: #ccc;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

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

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

/* JW Marriott Baku Gallery - Side by Side Half Width */
.jw-marriott-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: auto;
    justify-self: start;
    position: relative;
}

/* Borsa İstanbul için 4 resim yan yana */
@media (max-width: 1024px) {
    .jw-marriott-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .jw-marriott-gallery {
        grid-template-columns: 1fr;
    }
}



/* JW Marriott için özel project-gallery container */
body .project-gallery .jw-marriott-gallery {
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-self: start !important;
    float: left;
}

/* CVK Park Hotel Gallery - Side by Side Half Width */
.cvk-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 50%;
    margin-left: 0 !important;
    margin-right: auto;
    justify-self: start;
    position: relative;
}

/* CVK için özel project-gallery container */
body .project-gallery .cvk-gallery {
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-self: start !important;
    float: left;
}

.cvk-gallery .gallery-item {
    width: 100%;
}

@media (max-width: 768px) {
    .cvk-gallery {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}



/* Private Villa Bodrum Gallery - Side by Side Half Width */
.private-villa-bodrum-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 50%;
    margin-left: 0 !important;
    margin-right: auto;
    justify-self: start;
    position: relative;
}

/* Private Villa Bodrum kartındaki overlay'i gizle */
.project-overlay {
    display: none !important;
}

.project-card[data-category="villa"] .project-overlay {
    display: none !important;
}

/* Nusr-Et Etiler kartındaki overlay'i gizle */
.project-card[data-category="restaurant"] .project-overlay {
    display: none !important;
}

/* Mandarin Oriental kartındaki overlay'i gizle */
.project-card[data-category="hotel international"] .project-overlay {
    display: none !important;
}

/* Private Villa Bodrum için özel project-gallery container */
body .project-gallery .private-villa-bodrum-gallery {
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-self: start !important;
    float: left;
}

.private-villa-bodrum-gallery .gallery-item {
    width: 100%;
}

.jw-marriott-gallery .gallery-item {
    width: 100%;
}

/* Responsive Design for Project Detail */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .jw-marriott-gallery .gallery-item {
        width: 100%;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-nav-btn {
        font-size: 18px;
        padding: 10px 15px;
    }
}

/* Nusr-Et Etiler Gallery Styles */
.nusr-et-etiler-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    justify-self: center;
    position: relative;
}

body .project-gallery .nusr-et-etiler-gallery {
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-self: start !important;
    float: left;
}

.nusr-et-etiler-gallery .gallery-item {
    width: 100%;
}

/* News Page Styles */
.news-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.haberler-page .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 1300px;
    margin: 0 auto;
}

.news-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: var(--spacing-md);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

.news-date {
    color: var(--text-secondary);
}

.news-category {
    background: var(--light-accent);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
}

.news-content .news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    margin-left: -2px;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    transform: translateY(-5px);
}

.news-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.news-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design for News Page */
@media (max-width: 1400px) {
    .haberler-page .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .haberler-page .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .news-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .haberler-page .news-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .news-item {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .news-image,
    .news-content {
        width: 100%;
    }
    
    .news-image {
        height: 250px;
    }
    
    .news-section {
        padding: var(--spacing-lg) 0;
    }
    
    .news-page .hero-section {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
}

/* SÜRDÜRÜLEBİLİRLİK SAYFASI ÖZEL KART DÜZENİ - TAMAMEN YENİ YAKLAŞIM */
/* Sadece sürdürülebilirlik sayfası için geçerli - diğer sayfaları etkilemez */

/* Sürdürülebilirlik Sayfası - Temiz Grid Düzeni */
.related-news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 520px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Kartlar için boyut ayarları */
.related-news-section .news-grid .news-item {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .related-news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 520px);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .related-news-section .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 450px);
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .related-news-section .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 400px);
    }
}

/* Haberler sayfası için özel kart düzeni - her satırda bir kart */
.haberler-page .news-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 1300px;
    margin: 0 auto;
}

.haberler-page .news-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 200px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.haberler-page .news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.haberler-page .news-image {
    width: 33.33%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    padding: 75px 10px 5px 35px;
    margin-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haberler-page .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.haberler-page .news-item:hover .news-image img {
    transform: scale(1.05);
}

.haberler-page .news-content {
    padding: var(--spacing-xl);
    padding-left: calc(var(--spacing-xl) - 10px);
    padding-top: 75px;
    padding-bottom: calc(var(--spacing-xl) - 1rem);
    flex: 1;
    width: 66.67%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-image {
    flex: 1;
    max-width: 33.333%;
    margin-top: 5px;
}

.hero-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-image svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 2;
    max-width: 66.666%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content .article-title {
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero-content .content-text {
    margin-bottom: 0;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image,
    .hero-content {
        max-width: 100%;
        flex: none;
    }
}

/* Digital Menu Paragraph Specific Styling */
.digital-menu-paragraph {
    font-size: 0.99rem !important;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Partner Cards Mobile Styles */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .partner-card {
        padding: var(--spacing-md);
    }
    
    .partnership-benefits {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* News/Blog Mobile Styles */
    .haberler-page .news-item {
        flex-direction: column;
        margin-bottom: var(--spacing-lg);
    }
    
    .haberler-page .news-image,
    .haberler-page .news-content {
        width: 100%;
        max-width: 100%;
    }
    
    .haberler-page .news-content {
        padding: var(--spacing-md);
        padding-top: var(--spacing-md);
    }
    
    /* Service Detail Pages Mobile Styles */
    .service-detail-content {
        padding: var(--spacing-md);
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Project Detail Pages Mobile Styles */
    .project-gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .project-info {
        padding: var(--spacing-md);
    }
    
    /* General Mobile Improvements */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .partners-grid {
        padding: 0 var(--spacing-xs);
    }
    
    .partner-card {
        padding: var(--spacing-sm);
    }
    
    .partnership-benefits {
        padding: var(--spacing-md);
    }
    
    .partnership-benefits h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 20px;
        min-width: 180px;
    }
}



/* --- BÜYÜK EKRANLAR İÇİN ORANTISAL ÖLÇEKLENDİRME --- */
/* hero-description konumunu büyük ekranlarda sabitle */
@media (min-width: 1025px) {
    .hero-description {
        transform: translate(calc(-50% + 36.458vw), calc(-50% + 37.037vh)) !important;
        font-size: clamp(1.5rem, 2.5vw, 3rem) !important;
    }
}
