/* Google Fonts Import - MUST BE FIRST */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #8a8a8a;
    --lighter-gray: #c4c4c4;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-gray: #f0f0f0;
    --border: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --max-width: 1200px;
    --spacing: 2rem;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Fixed header için boşluk */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

html.menu-open {
    overflow: hidden !important;
}

/* Homepage'de padding-top olmasın (banner var) */
.homepage {
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    overflow: hidden; /* Scroll olmasın */
    position: fixed; /* Sayfa sabit, scroll yok */
    width: 100%;
    top: 0;
    left: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    letter-spacing: -0.03em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Diğer sayfalarda header scroll ile hareket eder */
.site-header.not-index {
    position: absolute;
}

/* Homepage: Hide regular header */
.homepage .site-header {
    display: none;
}

/* Main Banner Section - Full Screen */
.main-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Homepage'de banner footer için alan bırakır */
.homepage .main-banner-section {
    height: calc(100vh - 80px); /* Footer yüksekliği (80px) çıkarıldı */
}

/* Transparent Header for Banner */
.banner-header.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background:rgb(0 0 0 / 0%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: none;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-header.transparent-header .header-content {
    padding: 0rem 3rem;
    max-width: 100%;
    min-height: auto;
    height: auto;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
}

.banner-header.transparent-header .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: auto;
}

.banner-header.transparent-header .logo a {
    height: auto;
    display: flex;
    align-items: center;
}

.banner-header.transparent-header .logo h1,
.banner-header.transparent-header .logo a {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.banner-header.transparent-header .logo-image {
    height: 105px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.banner-header.transparent-header .main-nav {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    height: auto;
}

.banner-header.transparent-header .main-nav ul {
    gap: 2rem;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-header.transparent-header .main-nav a {
    color: var(--bg-white);
    font-weight: 300;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0.4rem 0.6rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    position: relative;
}

.banner-header.transparent-header .main-nav a:hover,
.banner-header.transparent-header .main-nav a.active {
    color: var(--bg-white);
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.banner-header.transparent-header .main-nav a::after {
    display: none;
}

.banner-header.transparent-header .mobile-menu-toggle span {
    background-color: var(--bg-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Banner Container */
.banner-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Homepage'de banner container footer için alan bırakır */
.homepage .banner-container {
    height: 100%;
}


/* Banner Center */
.banner-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Banner Image Wrapper */
.banner-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    image-rendering: auto;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
}

.banner-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4a4a4a;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Banner Text Overlay - Başlık ve Alt Başlık */
.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 90%;
    width: 100%;
    padding: 2rem;
}

.banner-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

/* Placeholder - Banner yoksa */
.banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
}

.placeholder-text {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.placeholder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.placeholder-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Banner Content - Removed (sadece görsel slider, içerik yok) */

/* Banner Controls - Removed (auto-slide only) */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3rem;
    max-width: 100%;
    margin: 0;
    min-height: var(--header-height);
    width: 100%;
    box-sizing: border-box;
}

/* Banner header content override */
.banner-header .header-content {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    margin-right: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 108px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

/* Banner header logo image */
.banner-header .logo-image {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: left;
    color: var(--bg-white);
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--bg-white);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--bg-white);
    color: var(--black);
    border-color: var(--bg-white);
}

.hero-actions .btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.hero-actions .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
    background: transparent;
}

.hero-actions .btn-outline:hover {
    background: var(--bg-white);
    color: var(--black);
    border-color: var(--bg-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--bg-white);
    color: var(--black);
}

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

.btn-primary:hover {
    background: var(--bg-white);
    color: var(--black);
}

.btn-outline {
    background: var(--bg-white);
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--bg-white);
}

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

.btn-white:hover {
    background: var(--black);
    color: var(--bg-white);
    border-color: var(--black);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Sections */
.section {
    padding: 6rem var(--spacing);
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    background-color: var(--black);
    color: var(--bg-white);
    padding: 5rem var(--spacing);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--lighter-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--black);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-gray);
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-btn {
    align-self: flex-start;
    margin-top: auto;
}

.service-item {
    padding: 3rem;
    border: 1px solid var(--border);
    background: var(--bg-white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-item:hover {
    border-color: var(--black);
    background: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.service-features li {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 600;
}

.service-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Projects Modern Cards - Hover Effect */
.projects-masonry-section {
    padding: 140px 0 3rem;
    background: #f8f8f8;
    min-height: 100vh;
}

.projects-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-modern-card {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    background: #000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.project-modern-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.project-modern-card:hover .project-modern-image img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.project-modern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    padding: 3rem;
    z-index: 2;
}

.project-modern-card:hover .project-modern-overlay {
    transform: translateX(0);
}

.project-modern-content {
    width: 100%;
}

.project-modern-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.project-modern-content p:not(.ck-content p) {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 2rem 0;
}

.project-modern-content .ck-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 2rem 0;
}

.project-modern-content .ck-content p {
    margin: 0.5rem 0;
}

.project-read-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.project-read-more:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive - Modern Cards */
@media (max-width: 1400px) {
    .projects-modern-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .project-modern-card {
        height: 450px;
    }
    
    .project-modern-overlay {
        padding: 2.5rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .projects-modern-grid {
        gap: 1.5rem;
    }
    
    .project-modern-card {
        height: 420px;
    }
    
    .project-modern-overlay {
        width: 55%;
        padding: 2rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .project-modern-content p:not(.ck-content p),
    .project-modern-content .ck-content {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .projects-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .project-modern-card {
        height: 400px;
    }
    
    .project-modern-overlay {
        width: 60%;
        padding: 2rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-masonry-section {
        padding: 100px 0 2.5rem;
    }
    
    .projects-modern-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .project-modern-card {
        height: 350px;
    }
    
    .project-modern-overlay {
        width: 100%;
        padding: 2rem;
        transform: translateY(100%);
        background: rgba(255, 255, 255, 0.97);
    }
    
    .project-modern-card:hover .project-modern-overlay {
        transform: translateY(0);
    }
    
    .project-modern-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .project-modern-content p:not(.ck-content p),
    .project-modern-content .ck-content {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }
    
    .project-read-more {
        padding: 0.65rem 1.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 425px) {
    .projects-masonry-section {
        padding: 80px 0 2rem;
    }
    
    .projects-modern-grid {
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .project-modern-card {
        height: 320px;
    }
    
    .project-modern-overlay {
        padding: 1.75rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.85rem;
    }
    
    .project-modern-content p:not(.ck-content p),
    .project-modern-content .ck-content {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .project-read-more {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 365px) {
    .projects-masonry-section {
        padding: 70px 0 1.75rem;
    }
    
    .projects-modern-grid {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .project-modern-card {
        height: 300px;
    }
    
    .project-modern-overlay {
        padding: 1.5rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .project-modern-content p:not(.ck-content p),
    .project-modern-content .ck-content {
        font-size: 0.82rem;
        margin-bottom: 0.85rem;
    }
    
    .project-read-more {
        padding: 0.55rem 1.25rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 320px) {
    .projects-masonry-section {
        padding: 60px 0 1.5rem;
    }
    
    .projects-modern-grid {
        gap: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .project-modern-card {
        height: 280px;
    }
    
    .project-modern-overlay {
        padding: 1.25rem;
    }
    
    .project-modern-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }
    
    .project-modern-content p:not(.ck-content p),
    .project-modern-content .ck-content {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .project-read-more {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

/* Projects Masonry - Harika tasarım (ESKİ - YEDEKLENDİ) */
.projects-masonry-section-old {
    padding: 140px 0 2rem;
    background: #f8f8f8;
    min-height: 100vh;
}

.projects-masonry-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.projects-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 15px;
    margin-bottom: 4rem;
}

.project-masonry-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.project-masonry-item.tall {
    grid-row: span 2;
}

.project-masonry-item.wide {
    grid-column: span 2;
}

.project-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-masonry-item:hover img {
    transform: scale(1.08);
}

.project-masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-masonry-item:hover .project-masonry-overlay {
    opacity: 1;
}

.project-masonry-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    color: #333;
    padding: 15px 20px;
    z-index: 2;
    min-width: 150px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-masonry-item:hover .project-masonry-info {
    opacity: 1;
    transform: translateY(0);
}

.project-masonry-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    color: #222;
    line-height: 1.2;
}

.project-masonry-info span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    display: block;
}

.project-masonry-item .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
    .projects-masonry-section {
        padding-top: 54px;
    }
    
    .projects-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .projects-masonry-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 320px;
        gap: 25px;
    }
}

/* Projects Grid - Eski tasarım (gerekirse) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    border-color: var(--black);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--bg-gray);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
}

.status-tamamlandi {
    background: var(--black);
    color: var(--bg-white);
    border-color: var(--black);
}

.status-devam {
    background: var(--bg-white);
    color: var(--black);
}

.status-planlama {
    background: var(--bg-gray);
    color: var(--black);
}

.project-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.project-location {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    flex: 1;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    min-height: 450px;
    overflow: hidden;
    margin-top: 34px;
    box-sizing: border-box;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* About Hero Slider */
.about-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 248, 0.03);   
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    min-height: 100px; /* İçerik yoksa bile minimum yükseklik */
}

.about-hero-content:empty {
    display: none; /* İçerik tamamen boşsa gizle */
}

.about-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
}

/* About Intro Grid */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-intro-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-gray);
}

.about-intro-text p {
    margin-bottom: 1.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-text .lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666666;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.about-intro-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.about-intro-image:hover img {
    transform: scale(1.1);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.vision-mission-item {
    display: flex;
    flex-direction: column;
}

.vision-mission-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid var(--black);
    position: relative;
}

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

.vision-mission-image:hover img {
    transform: scale(1.1);
}

.vision-mission-item h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.vision-mission-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Values Grid */
.section-dark {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.value-card {
    background-color: var(--bg-white);
    border: 2px solid var(--black);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: 50%;
    background-color: var(--bg-white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.why-choose-item {
    padding: 2.5rem;
    border-left: 4px solid var(--black);
    background-color: var(--bg-white);
    transition: var(--transition);
}

.why-choose-item:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.3;
}

.why-choose-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.why-choose-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-actions .btn-outline:hover {
    background: var(--bg-white);
    color: var(--black);
    border-color: var(--bg-white);
}

/* About Projects Grid */
.about-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.about-project-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--black);
    height: 400px;
    background: var(--bg-white);
}

.about-project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.about-project-item:hover .about-project-image img {
    transform: scale(1.1);
}

.about-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: var(--bg-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-project-item:hover .about-project-overlay {
    transform: translateY(0);
}

.about-project-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-project-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.process-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Team Section */
.team-hero-section {
    margin-bottom: 0;
}

.team-page {
    padding: 6rem 0 8rem;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 6rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
    align-items: start;
}

.team-card {
    background-color: transparent;
    border: none;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 3rem;
    overflow: hidden;
    flex-shrink: 0;
}

.team-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 600px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    border: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.team-card:hover .team-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.team-card:hover .team-image img {
    transform: scale(1.02);
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--text-gray);
}

.team-image-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.15;
}

.team-info {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: 120px;
    justify-content: flex-start;
}

.team-name-wrapper {
    width: 100%;
    min-height: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}

.team-name {
    font-size: 1.600rem;
    font-weight: 700;
    margin: 0;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.3s ease;
    padding-bottom: 1rem;
    position: relative;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.team-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--black);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-name::after {
    width: 100px;
}

.team-position {
    font-size: 0.8125rem;
    font-weight: 400;
    margin: 0;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    padding-top: 0;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--black);
    color: var(--bg-white);
    text-align: center;
    padding: 6rem var(--spacing);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-content .btn-primary {
    border-color: var(--bg-white);
    color: var(--bg-white);
    background: transparent;
}

.cta-content .btn-primary:hover {
    background: var(--bg-white);
    color: var(--black);
    border-color: var(--bg-white);
}

.cta-content .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
    background: transparent;
}

.cta-content .btn-outline:hover {
    background: var(--bg-white);
    color: var(--black);
}

/* Page Header */
.page-header {
    background-color: var(--bg-white);
    padding: 3rem var(--spacing) 2rem;
    border-bottom: 2px solid var(--black);
    margin-top: 0;
}

.page-header h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.filter-item {
    padding: 0.75rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-item:hover,
.filter-item.active {
    background: var(--black);
    color: var(--bg-white);
    border-color: var(--black);
}

/* Gelişmiş Filtreleme Sistemi */
.advanced-filters {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--black);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-option {
    padding: 0.6rem 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-option:hover {
    border-color: var(--black);
    background: var(--bg-light);
}

.filter-option.active {
    background: var(--black);
    color: var(--bg-white);
    border-color: var(--black);
}

.clear-filters {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-block;
}

.clear-filters:hover {
    background: var(--black);
    color: var(--bg-white);
    border-color: var(--black);
}

/* Project Gallery Section */
.project-gallery-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.project-gallery-grid .gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-gray);
    cursor: pointer;
    transition: var(--transition);
}

.project-gallery-grid .gallery-item:hover {
    border-color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

.project-gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--bg-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gallery-link {
    color: var(--bg-white);
    text-decoration: none;
    border: 1px solid var(--bg-white);
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--bg-white);
    color: var(--black);
}

/* Project Hero */
.project-hero {
    margin-top: 85px;
    padding: 0 0 4rem;
    background: #fff;
}

.project-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem var(--spacing) 0;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.project-hero-media {
    border-radius: 16px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.hero-controls {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 5;
    pointer-events: none;
}

.hero-controls .hero-nav {
    pointer-events: auto;
}

.hero-nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.hero-prev span {
    transform: rotate(-45deg);
}

.hero-next span {
    transform: rotate(135deg);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Hero counter kaldırıldı */

.hero-thumbs {
    display: flex;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.85);
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    border-radius: 0 0 16px 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.hero-thumbs::-webkit-scrollbar {
    height: 4px;
}

.hero-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.hero-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.hero-thumbs::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-thumb span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.4);
}

.hero-thumb.active {
    border-color: #ffffff;
}

.hero-thumb.active span {
    filter: grayscale(0);
}

.lightbox-trigger {
    cursor: zoom-in;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 6rem 2rem;
    z-index: 9998;
}

.project-lightbox.active {
    display: flex;
}

.project-lightbox img {
    max-width: 90vw;
    max-height: 70vh;
    object-fit: contain;
   
    border-radius: 0;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 2px solid #000;
    background: #000;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #333;
    transform: rotate(90deg);
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.prev span {
    transform: rotate(45deg);
    margin-left: 4px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox-nav.next span {
    transform: rotate(-135deg);
    margin-right: 4px;
}

.lightbox-nav:hover {
    background: #333;
}

/* Lightbox Thumbnails */
.lightbox-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #f8f8f8;
    border-top: 2px solid #000;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.75rem;
}

.lightbox-thumbs::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbs::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.lightbox-thumbs::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 3px;
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb:hover {
    border-color: #666;
}

.lightbox-thumb.active {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-hero-content {
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-gray);
}

.project-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.project-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin: 0;
    color: var(--black);
}

.project-hero-description:not(.ck-content) {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.project-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.project-hero-meta .meta-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
}

.project-hero-meta span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.project-hero-meta strong {
    font-size: 1.1rem;
    color: var(--black);
}

.project-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-placeholder {
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-gray);
    background: var(--bg-light);
}

.hero-placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-placeholder-content small {
    font-size: 0.85rem;
}

/* Project Detail */
.project-detail {
    padding: 5rem var(--spacing);
    background: #fff;
    color: var(--black);
}

.project-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.project-detail-header h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--black);
    flex: 1;
    min-width: 300px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.project-main-image {
    width: 100%;
    height: 600px;
    margin-bottom: 4rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-gray);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

/* Proje Bilgileri Tablosu */
.project-info-table {
    width: 100%;
    margin-bottom: 4rem;
    border-collapse: collapse;
    background: var(--bg-white);
    border: 1px solid var(--border);
}

.project-info-table th,
.project-info-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.project-info-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    width: 35%;
}

.project-info-table td {
    color: var(--text-dark);
    font-size: 1rem;
}

.project-info-table tr:last-child th,
.project-info-table tr:last-child td {
    border-bottom: none;
}

.project-info-table tr:hover {
    background: var(--bg-light);
}

.project-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.description-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-description h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.description-text {
    max-width: 800px;
    margin: 0 auto;
}

.description-text:not(.ck-content) p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.9;
    text-align: left;
}

.project-gallery {
    padding: 4rem var(--spacing);
    background: var(--bg-light);
}

.project-gallery-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.gallery-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.project-gallery-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0;
    color: var(--black);
}

.gallery-info-text {
    max-width: 420px;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.project-gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
}

.project-gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-gallery-card figcaption {
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    text-transform: uppercase;
    border-top: 1px solid var(--border);
}

.project-gallery-card:hover img {
    transform: scale(1.08);
}

/* ============================================
   PROJECT GALLERY DETAIL COMBINED LAYOUT
   SOL: BÜYÜK RESİMLER | SAĞ: PROJE DETAYLARI
   ============================================ */
.project-gallery-detail {
    padding: 5rem var(--spacing);
    background: #fff;
}

.gallery-detail-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 5rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

/* Left Side - GALLERY (BÜYÜK RESİMLER) */
.gallery-detail-left {
    width: 100%;
}

.gallery-detail-left .gallery-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 600;
    display: block;
}

.gallery-detail-left .project-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: none;
}

.gallery-detail-left .project-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.gallery-detail-left .project-gallery-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-detail-left .project-gallery-card:hover img {
    transform: scale(1.05);
}

/* Right Side - DETAILS (YAZILAR) */
.gallery-detail-right {
    position: sticky;
    top: 100px;
}

.gallery-detail-right .description-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-detail-right h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin: 0 0 2rem 0;
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

.gallery-detail-right .description-text:not(.ck-content) {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.gallery-detail-right .description-text:not(.ck-content) p {
    margin-bottom: 1.5rem;
}

/* Responsive for Gallery Detail Layout */
@media (max-width: 1400px) {
    .gallery-detail-grid {
        grid-template-columns: 1fr 420px;
        gap: 4rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 480px;
    }
}

@media (max-width: 1200px) {
    .gallery-detail-grid {
        grid-template-columns: 1fr 380px;
        gap: 3.5rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .project-gallery-detail {
        padding: 4rem var(--spacing);
    }
    
    .gallery-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-detail-right {
        position: static;
        max-width: 800px;
    }
    
    .gallery-detail-left .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .project-gallery-detail {
        padding: 3rem var(--spacing);
    }
    
    .gallery-detail-grid {
        gap: 2.5rem;
    }
    
    .gallery-detail-right h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-detail-left .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 350px;
    }
}

@media (max-width: 425px) {
    .project-gallery-detail {
        padding: 2.5rem var(--spacing);
    }
    
    .gallery-detail-grid {
        gap: 2rem;
    }
    
    .gallery-detail-right h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .gallery-detail-right .description-text:not(.ck-content) {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .gallery-detail-left .gallery-label {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 240px;
    }
}

@media (max-width: 365px) {
    .project-gallery-detail {
        padding: 2rem var(--spacing);
    }
    
    .gallery-detail-grid {
        gap: 1.75rem;
    }
    
    .gallery-detail-right h2 {
        font-size: 1.35rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 220px;
    }
}

@media (max-width: 320px) {
    .project-gallery-detail {
        padding: 1.75rem var(--spacing);
    }
    
    .gallery-detail-grid {
        gap: 1.5rem;
    }
    
    .gallery-detail-right h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .gallery-detail-right .description-text:not(.ck-content) {
        font-size: 0.9rem;
    }
    
    .gallery-detail-left .gallery-label {
        font-size: 0.68rem;
        margin-bottom: 1.25rem;
    }
    
    .gallery-detail-left .project-gallery-grid {
        gap: 1rem;
    }
    
    .gallery-detail-left .project-gallery-card img {
        height: 200px;
    }
}

.project-cta {
    padding: 4rem var(--spacing) 5rem;
    background: #0f0f0f;
    color: #ffffff;
}

.project-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.project-cta-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.project-cta-inner h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0;
    color: #ffffff;
}

.project-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .project-hero-inner {
        grid-template-columns: 1fr;
    }
    
    .project-hero-media {
        order: 1;
    }
    
    .project-hero-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .project-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .project-gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-cta-actions,
    .project-hero-actions {
        width: 100%;
    }
    
    .project-hero-actions .btn,
    .project-cta-actions .btn {
        flex: 1;
        justify-content: center;
    }
}
/* Service Detail */
.service-detail-hero {
    padding: 6rem var(--spacing) 3rem;
    margin-top: 70px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 2px solid var(--black);
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.service-detail-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-breadcrumb a:hover {
    color: var(--black);
}

.service-detail-breadcrumb span:last-child {
    color: var(--black);
    font-weight: 600;
}

.service-detail-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1.2;
    margin: 0;
}

.service-detail-section {
    padding: 5rem var(--spacing);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 2px solid var(--black);
    background: var(--bg-gray);
}

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

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    white-space: pre-line;
}

.service-detail-description p {
    margin-bottom: 1.5rem;
}

.service-detail-description p:last-child {
    margin-bottom: 0;
}

.service-detail-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.section-gray {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item strong {
    font-weight: 600;
    color: var(--black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.project-description h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.project-gallery {
    margin-bottom: 4rem;
}

.project-gallery h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 3rem;
}

.gallery-item {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-gray);
}

.gallery-item:hover {
    border-color: var(--black);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.contact-item a,
.contact-item span {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--black);
}

/* Contact Appointment CTA */
.contact-appointment-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid var(--black);
    margin-top: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-appointment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-appointment-cta:hover::before {
    left: 0;
}

.contact-appointment-cta:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.appointment-cta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-appointment-cta:hover .appointment-cta-icon {
    background: var(--bg-white);
}

.appointment-cta-icon svg {
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.contact-appointment-cta:hover .appointment-cta-icon svg {
    color: var(--black);
}

.appointment-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.appointment-cta-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.contact-appointment-cta:hover .appointment-cta-content h4 {
    color: var(--bg-white);
}

.appointment-cta-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.contact-appointment-cta:hover .appointment-cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

.appointment-cta-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-appointment-cta:hover .appointment-cta-btn {
    background: var(--bg-white);
    transform: translateX(4px);
}

.appointment-cta-btn svg {
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.contact-appointment-cta:hover .appointment-cta-btn svg {
    color: var(--black);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Benefits Boxes */
.contact-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-benefit-box {
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    background: var(--bg-white);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-benefit-box:hover {
    border-color: var(--black);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 2px solid var(--black);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.contact-benefit-box:hover .benefit-icon {
    background: var(--black);
    color: var(--bg-white);
    transform: scale(1.1);
}

.contact-benefit-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-benefit-box p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Alert */
.alert {
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background-color: var(--bg-light);
    color: var(--black);
    border-color: var(--black);
}

.alert-error {
    background-color: var(--bg-light);
    color: var(--black);
    border-color: var(--black);
}

/* Footer */
/* Footer - Fixed for homepage only (index.php) */
.homepage .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--bg-white);
    padding: 1.5rem var(--spacing);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-sizing: border-box;
    min-height: 70px; /* Minimum yükseklik */
    display: flex;
    align-items: center;
}

/* Homepage Footer - Minimalist Style */
.homepage .site-footer .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 var(--spacing);
}

.homepage .site-footer .homepage-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.homepage .site-footer .footer-copyright {
    flex: 0 0 auto;
}

.homepage .site-footer .footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.homepage .site-footer .footer-bottom {
    display: none;
}

/* Social media icons for homepage footer */
.homepage .site-footer .footer-social-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.homepage .site-footer .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
}

.homepage .site-footer .social-icon:hover {
    border-color: var(--bg-white);
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.homepage .site-footer .social-icon svg {
    width: 18px;
    height: 18px;
}

.site-footer {
    background-color: var(--black);
    color: var(--bg-white);
    padding: 0;
    border-top: 2px solid var(--bg-white);
}

/* Professional Footer Wrapper */
.footer-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Top Section: Links and Contact */
.footer-top {
    padding: 4rem var(--spacing) 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links-col,
.footer-contact-col,
.footer-social-col {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    width: fit-content;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links-list li,
.footer-contact-list li {
    margin: 0;
    padding: 0;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--bg-white);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-list a:hover {
    color: var(--bg-white);
    padding-left: 1rem;
}

.footer-links-list a:hover::before {
    width: 0.5rem;
}

.footer-contact-list li {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--bg-white);
    display: inline;
    margin-right: 0.5rem;
}

.contact-value {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    display: inline;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-contact-list a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

/* Social Media Section */
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-social-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-list li:last-child {
    border-bottom: none;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-social-link:hover {
    color: var(--bg-white);
    padding-left: 0.5rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.footer-social-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    flex: 1;
}

/* Middle Section: Logo */
.footer-logo-section {
    padding: 4rem var(--spacing);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.footer-logo-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.footer-main-logo {
    max-height: 140px;
    width: auto;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-main-logo:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.footer-logo-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-brand-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* Bottom Section: Tagline and Copyright */
.footer-bottom-section {
    padding: 3rem var(--spacing) 2.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.no-content {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    width: 100%;
    margin-bottom: 2rem;
}

.map-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 2rem;
    text-align: center;
}

.map-embed {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.map-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

#map {
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 80px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(15, 15, 15, 0.95) 50%, 
            rgba(0, 0, 0, 0.98) 100%);
        padding: 0;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: calc(100vh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        align-items: center;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: flex !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 500px;
        padding: 2rem 0;
        margin: 0;
        list-style: none;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .banner-header.transparent-header .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: rgba(255, 255, 255, 0.85);
        position: relative;
        overflow: hidden;
    }
    
    .banner-header.transparent-header .main-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, transparent, var(--bg-white), transparent);
        transition: height 0.4s ease;
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        color: var(--bg-white);
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        transform: scale(1.05);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover::before,
    .banner-header.transparent-header .main-nav ul li a.active::before {
        height: 100%;
    }
    
    .banner-header.transparent-header .mobile-menu-toggle {
        display: flex;
    }
    
    .banner-header.transparent-header {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .banner-header.transparent-header .header-content {
        padding: 1rem 2.5rem;
        flex-wrap: nowrap;
        min-height: auto;
        align-items: center;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 75px;
        width: auto;
        max-width: none;
    }
    
    /* Banner yüksekliğini azalt */
    .banner-slider {
        height: 60vh;
        min-height: 450px;
        max-height: 550px;
    }
    
    .main-banner-section {
        min-height: 60vh;
        max-height: 550px;
        height: auto;
        margin-top: 80px;
    }
    
    .banner-image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .banner-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
    
    /* Homepage için özel ayarlar */
    .homepage {
        height: 100vh;
        overflow: hidden;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    .homepage .main-banner-section {
        height: calc(100vh - 85px) !important;
        min-height: unset !important;
        max-height: unset !important;
        margin-top: 0;
    }
    
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-container {
        height: 100%;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .homepage .site-footer {
        padding: 1rem 2.5rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 85px;
        display: flex;
        align-items: center;
    }
    
    .homepage .site-footer .homepage-footer-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }
    
    .homepage .site-footer .footer-info {
        flex: 1;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        margin: 0;
        line-height: 1.4;
    }
    
    .homepage .site-footer .footer-social-nav {
        display: flex;
        align-items: center;
        gap: 0.9rem;
    }
    
    .homepage .site-footer .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 17px;
        height: 17px;
    }
    
    /* Diğer sayfalarda padding düzeltmesi */
    body {
        padding-top: 0;
    }
    
    .hero-banner {
        height: 55vh;
        min-height: 450px;
        max-height: 600px;
    }
    
    /* Hero banner'ı diğer sayfalarda düzelt */
    .about-hero-section,
    .page-hero-section {
        height: 53vh;
        min-height: 450px;
        max-height: 600px;
        margin-top: 80px;
    }
    
    .hero-banner-image img,
    .about-hero-image img {
        object-fit: cover;
        object-position: center;
    }
    
    /* Section padding'leri düzelt */
    .section {
        padding: 3rem 2rem;
    }
    
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    /* Header sonrası boşluk */
    body:not(.homepage) .section:first-of-type {
        margin-top: 80px;
    }
    
    /* Hero content düzeltmeleri */
    .hero-content h1,
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p,
    .about-hero-content p {
        font-size: 1rem;
    }
    
    /* Text boyutlarını düzelt */
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Grid düzeltmeleri */
    .about-intro-grid,
    .services-grid,
    .team-grid {
        gap: 2rem;
    }
    
    /* Card padding'leri */
    .service-card,
    .team-card {
        padding: 1rem;
    }
    
    /* Contact benefits grid - tablet */
    .contact-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Project card'ları düzelt */
    .project-card {
        margin-bottom: 2rem;
    }
    
    .project-image {
        height: 300px;
    }
    
    .project-info {
        padding: 2rem;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    /* Masonry grid düzeltmeleri */
    .projects-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About intro düzeltmeleri */
    .about-intro-content {
        padding: 2rem;
    }
    
    .about-intro-content h2 {
        font-size: 1.75rem;
    }
    
    .about-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Contact page düzeltmeleri */
    .contact-section {
        padding: 3rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    /* Contact Appointment CTA - 1024px */
    .contact-appointment-cta {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .appointment-cta-icon {
        width: 42px;
        height: 42px;
    }
    
    .appointment-cta-content h4 {
        font-size: 0.95rem;
    }
    
    .appointment-cta-content p {
        font-size: 0.8rem;
    }
    
    .appointment-cta-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    /* Banner Header - 768px */
    .banner-header.transparent-header .header-content {
        padding: 0.9rem 2rem;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 65px;
        width: auto;
        max-width: none;
    }
    
    /* Banner Text - Responsive */
    .banner-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .banner-text-overlay {
        padding: 1rem;
    }
    
    .placeholder-text h2 {
        font-size: 1.5rem;
    }
    
    .placeholder-text p {
        font-size: 0.9rem;
    }
    
    .main-nav {
        display: none;
        position: fixed !important;
        top: 125px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        border-bottom: 2px solid var(--black);
        padding: 2rem 0;
        height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9990 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--spacing);
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid var(--border);
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background-color: var(--black);
        color: var(--bg-white);
        padding-left: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Banner Header Mobile Menu - 768px */
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 70px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(15, 15, 15, 0.95) 50%, 
            rgba(0, 0, 0, 0.98) 100%);
        padding: 0;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        align-items: center;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: block !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 500px;
        padding: 2rem 0;
        margin: 0;
        list-style: none;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .banner-header.transparent-header .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: rgba(255, 255, 255, 0.85);
        position: relative;
        overflow: hidden;
    }
    
    .banner-header.transparent-header .main-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, transparent, var(--bg-white), transparent);
        transition: height 0.4s ease;
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        color: var(--bg-white);
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        transform: scale(1.05);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover::before,
    .banner-header.transparent-header .main-nav ul li a.active::before {
        height: 100%;
    }
    
    .banner-header.transparent-header .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    /* Main Banner Section - Mobile */
    .main-banner-section {
        min-height: 100vh;
    }
    
    .banner-container {
        height: 100%;
    }
    
    .homepage {
        height: 100vh;
        overflow: hidden;
        padding-bottom: 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    .homepage .main-banner-section {
        height: calc(100vh - 75px) !important; /* Mobilde footer yüksekliği (75px) */
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-container {
        height: 100%;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .homepage .site-footer {
        padding: 1rem 2rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 75px; /* Mobilde footer yüksekliği */
        display: flex;
        align-items: center;
    }
    
    .homepage .site-footer .container {
        padding: 0 2rem;
    }
    
    .homepage .site-footer .homepage-footer-content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .homepage .site-footer .footer-copyright {
        flex: 0 0 auto;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        margin: 0;
        line-height: 1.4;
    }
    
    .homepage .site-footer .footer-social-nav {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        flex: 0 0 auto;
    }
    
    .homepage .site-footer .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-top {
        padding: 3rem var(--spacing) 2.5rem;
    }
    
    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-social-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .footer-section-title {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links-list,
    .footer-contact-list {
        gap: 1rem;
    }
    
    .footer-logo-section {
        padding: 3rem var(--spacing);
    }
    
    .footer-main-logo {
        max-height: 100px;
        max-width: 350px;
    }
    
    .footer-brand-name {
        font-size: 2.5rem;
    }
    
    .footer-brand-subtitle {
        font-size: 1.25rem;
    }
    
    .footer-bottom-section {
        padding: 2.5rem var(--spacing) 2rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .banner-header.transparent-header {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .banner-header.transparent-header .header-content {
        padding: 0.8rem 1.5rem;
        flex-wrap: wrap;
        min-height: auto;
        align-items: center;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 55px;
        width: auto;
        max-width: none;
    }
    
    .logo-image {
        height: 100px;
        width: auto;
        max-width: none;
    }
    
    body {
        padding-top: 50px;
    }
    
    .homepage {
        padding-top: 0;
    }
    
    :root {
        --header-height: 70px;
    }
    
    .header-content {
        padding: 0.75rem 2rem;
        min-height: var(--header-height);
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.75rem;
    }
    
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 70px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(15, 15, 15, 0.95) 50%, 
            rgba(0, 0, 0, 0.98) 100%);
        padding: 0;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        align-items: center;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: flex !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 400px;
        padding: 2rem 0;
        margin: 0;
        list-style: none;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .banner-header.transparent-header .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    .banner-header.transparent-header .main-nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.3rem 1.5rem;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: rgba(255, 255, 255, 0.85);
        position: relative;
        overflow: hidden;
    }
    
    .banner-header.transparent-header .main-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, transparent, var(--bg-white), transparent);
        transition: height 0.4s ease;
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        color: var(--bg-white);
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        transform: scale(1.03);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover::before,
    .banner-header.transparent-header .main-nav ul li a.active::before {
        height: 100%;
    }
    
    .banner-slider {
        height: 100vh;
    }
    
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-banner-overlay {
        padding: 2rem 0;
    }
    
    .section {
        padding: 4rem var(--spacing);
    }
    
    .about-hero-section {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    .about-hero-content h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-intro-image {
        height: 300px;
        order: -1;
    }
    
    .about-intro-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .about-intro-content h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .about-intro-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-intro-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-intro-text .lead {
        font-size: 1.05rem;
        line-height: 1.85;
        color: #666666;
        margin-bottom: 1.75rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vision-mission-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .vision-mission-item h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .vision-mission-item p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-number {
        font-size: 2.5rem;
    }
    
    .why-choose-item h3 {
        font-size: 1.2rem;
    }
    
    .about-projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-project-item {
        height: 300px;
    }
    
    .about-project-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .about-project-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 1.5rem;
    }
    
    .about-project-overlay h4 {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-hero {
        padding: 4rem var(--spacing) 2rem;
        margin-top: 60px;
    }
    
    .service-detail-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .service-detail-section {
        padding: 3rem var(--spacing);
    }
    
    .service-detail-image {
        height: 350px;
    }
    
    .service-detail-actions {
        flex-direction: column;
    }
    
    .service-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 3rem var(--spacing);
    }
    
    .stats-section {
        padding: 3rem var(--spacing);
    }
    
    .cta-section {
        padding: 4rem var(--spacing);
    }
    
    .cta-content h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .projects-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .project-masonry-item.wide {
        grid-column: span 1;
    }
    
    .project-masonry-info {
        padding: 12px 15px;
        min-width: 120px;
    }
    
    .project-masonry-info h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .project-masonry-info span {
        font-size: 0.8rem;
    }
    
    .team-page {
        padding: 4rem 0 6rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(257px, 1fr));
        gap: 2.5rem 3rem;
        padding: 3rem 1.5rem 0;
        align-items: start;
    }
    
    .team-image {
        max-height: 500px;
    }
    
    .team-info {
        min-height: 110px;
    }
    
    .team-name-wrapper {
        min-height: 4rem;
        margin-bottom: 0.875rem;
    }
    
    .team-name {
        font-size: 1.625rem;
        letter-spacing: 0.05em;
        padding-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .team-name::after {
        width: 50px;
    }
    
    .team-card:hover .team-name::after {
        width: 85px;
    }
    
    .team-position {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
        padding-top: 0;
    }
    
    .services-grid,
    .process-grid,
    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Contact Appointment CTA - 768px */
    .contact-appointment-cta {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .appointment-cta-icon {
        width: 40px;
        height: 40px;
    }
    
    .appointment-cta-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .appointment-cta-content h4 {
        font-size: 0.9rem;
    }
    
    .appointment-cta-content p {
        font-size: 0.75rem;
    }
    
    .appointment-cta-btn {
        width: 34px;
        height: 34px;
    }
    
    .appointment-cta-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Contact benefits grid - mobile */
    .contact-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-benefit-box {
        padding: 2.5rem 2rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .contact-benefit-box h3 {
        font-size: 1.25rem;
    }
    
    .contact-benefit-box p {
        font-size: 0.95rem;
    }
    
    .project-info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item {
        height: 400px;
    }
    
    .project-info-table {
        font-size: 0.9rem;
    }
    
    .project-info-table th,
    .project-info-table td {
        padding: 1rem;
    }
    
    .project-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-main-image {
        height: 400px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    :root {
        --spacing: 1rem;
    }
    
    body {
        padding-top: 10px;
    }
    
    :root {
        --header-height: 60px;
    }
    
    .header-content {
        padding: 0.75rem 1.5rem;
        min-height: var(--header-height);
        flex-wrap: wrap;
    }
    
    .logo-image {
        height: 45px;
        max-width: 120px;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .main-nav {
        display: none;
        position: fixed !important;
        top: 70px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        padding: 1.5rem 0;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9990 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        font-size: 0.85rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .about-hero-section {
        height: 35vh;
        min-height: 250px;
        margin-top: 60px;
    }
    
    .about-hero-content h1 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        padding: 0 0.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .about-hero-content .container {
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .banner-header.transparent-header {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        min-height: auto;
    }
    
    .banner-header.transparent-header .header-content {
        padding: 0.7rem 1rem;
        min-height: auto;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 45px;
        max-width: 140px;
    }
    
    .banner-header.transparent-header .logo h1,
    .banner-header.transparent-header .logo a {
        font-size: 0.85rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .banner-header.transparent-header .logo {
        flex-shrink: 0;
    }
    
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1.5rem;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(10px);
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: flex !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-size: 0.8rem;
        transition: all 0.3s ease;
        color: var(--bg-white);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 2rem;
    }
    
    .banner-header.transparent-header .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    /* Homepage Banner & Footer - 320px */
    .homepage .main-banner-section {
        height: calc(100vh - 60px);
    }
    
    .homepage .site-footer {
        padding: 0.8rem 1rem;
        height: 60px;
    }
    
    .homepage .site-footer .container {
        padding: 0 1rem;
    }
    
    .homepage .site-footer .homepage-footer-content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
        margin: 0;
        line-height: 1.3;
    }
    
    .homepage .site-footer .footer-social-nav {
        gap: 0.6rem;
    }
    
    .homepage .site-footer .social-icon {
        width: 29px;
        height: 29px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 13px;
        height: 13px;
    }
    
    /* Homepage Banner - 320px */
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .stats-section {
        padding: 2rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .about-intro-grid {
        gap: 1.5rem;
    }
    
    .about-intro-image {
        height: 250px;
    }
    
    .about-intro-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .about-intro-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-intro-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .about-intro-text p {
        margin-bottom: 1.25rem;
    }
    
    .about-intro-text .lead {
        font-size: 1rem;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 1.5rem;
    }
    
    .vision-mission-grid {
        gap: 2rem;
    }
    
    .vision-mission-image {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .vision-mission-item h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .vision-mission-item p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .why-choose-item {
        padding: 1.5rem 1rem;
    }
    
    .why-choose-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-item p {
        font-size: 0.9rem;
    }
    
    .about-projects-grid {
        gap: 1rem;
    }
    
    .about-project-item {
        height: 250px;
    }
    
    .advanced-filters {
        padding: 1.5rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-group {
        margin-bottom: 1.5rem;
    }
    
    .filter-options {
        gap: 0.5rem;
    }
    
    .filter-option {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item {
        height: 350px;
    }
    
    .projects-masonry-section {
        padding-top: 18px;
    }
    
    .projects-masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 10px;
    }
    
    .project-masonry-item.tall,
    .project-masonry-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .project-masonry-info {
        padding: 10px 12px;
        min-width: 100px;
    }
    
    .project-masonry-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }
    
    .project-masonry-info span {
        font-size: 0.75rem;
    }
    
    .project-info-table {
        font-size: 0.85rem;
    }
    
    .project-info-table th,
    .project-info-table td {
        padding: 0.75rem;
    }
    
    .about-project-overlay {
        padding: 1rem;
    }
    
    .about-project-overlay h4 {
        font-size: 1rem;
    }
    
    .about-project-overlay p {
        font-size: 0.8rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem 1rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-actions {
        gap: 0.75rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
    
    .homepage .site-footer {
        padding: 1rem;
        height: auto;
        min-height: 60px;
    }
    
    .homepage .site-footer .container {
        padding: 0 1rem;
    }
    
    .homepage .site-footer .homepage-footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.65rem;
    }
    
    .homepage .site-footer .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-top {
        padding: 2.5rem var(--spacing) 2rem;
    }
    
    .footer-top-content {
        gap: 2.5rem;
    }
    
    .footer-social-link {
        padding: 0.875rem 0;
    }
    
    .footer-social-icon {
        width: 20px;
        height: 20px;
    }
    
    .footer-social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-social-text {
        font-size: 0.9rem;
    }
    
    .footer-section-title {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
    }
    
    .footer-links-list,
    .footer-contact-list {
        gap: 0.875rem;
    }
    
    .footer-links-list a,
    .footer-contact-list li {
        font-size: 0.9rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .footer-logo-section {
        padding: 2.5rem var(--spacing);
    }
    
    .footer-main-logo {
        max-height: 80px;
        max-width: 280px;
    }
    
    .footer-brand-name {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .footer-brand-subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }
    
    .footer-bottom-section {
        padding: 2rem var(--spacing) 1.75rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
    }
    
    .team-page {
        padding: 3rem 0 4rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 1rem 0;
        align-items: start;
    }
    
    .team-image-wrapper {
        margin-bottom: 2.5rem;
    }
    
    .team-image {
        max-height: 450px;
    }
    
    .team-info {
        min-height: 100px;
        align-items: center;
    }
    
    .team-name-wrapper {
        min-height: 3.5rem;
        margin-bottom: 0.75rem;
    }
    
    .team-name {
        font-size: 1.5rem;
        letter-spacing: 0.04em;
        padding-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .team-name::after {
        width: 40px;
        height: 1px;
    }
    
    .team-card:hover .team-name::after {
        width: 70px;
    }
    
    .team-position {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        padding-top: 0;
    }
    
    .homepage {
        padding-bottom: 60px;
    }
    
    .homepage .main-banner-section {
        height: calc(100vh - 60px);
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
    
    .map-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .map-embed iframe,
    #map {
        height: 350px;
    }
}

/* ============================================
   PROFESSIONAL RESPONSIVE BREAKPOINTS
   ============================================ */

/* 2560px - Extra Large Desktop */
@media (min-width: 2560px) {
    .container {
        max-width: 1440px;
    }
}

/* 1920px - Large Desktop */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container {
        max-width: 1440px;
    }
}

/* 1440px - Desktop */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .section {
        padding: 4rem 3rem;
    }
}

/* 1024px - Tablet Landscape */
@media (min-width: 1025px) and (max-width: 1439px) {
    .container {
        padding: 0 2.5rem;
    }
    
    .section {
        padding: 3.5rem 2.5rem;
    }
    
    body:not(.homepage) .section:first-of-type {
        margin-top: 80px;
    }
    
    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    /* Why Choose Grid - Desktop */
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* 768px - Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 3rem 2rem;
    }
    
    body:not(.homepage) .section:first-of-type {
        margin-top: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.75rem;
    }
    
    /* Why Choose Grid - Tablet */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Contact Appointment CTA - 1024px */
    .contact-appointment-cta {
        padding: 0.75rem;
        gap: 0.65rem;
    }
    
    .appointment-cta-icon {
        width: 36px;
        height: 36px;
    }
    
    .appointment-cta-content h4 {
        font-size: 0.85rem;
    }
    
    .appointment-cta-content p {
        font-size: 0.7rem;
    }
    
    .appointment-cta-btn {
        width: 32px;
        height: 32px;
    }
}

/* 425px - Mobile Large */
@media (min-width: 426px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 2.5rem 1.5rem;
    }
    
    body:not(.homepage) .section:first-of-type {
        margin-top: 70px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content h1,
    .about-hero-content h1 {
        font-size: 1.75rem;
    }
    
    /* Homepage Banner - 425px-768px */
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* 375px - Mobile Medium */
@media (min-width: 366px) and (max-width: 425px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .section {
        padding: 2rem 1.25rem;
    }
    
    body:not(.homepage) .section:first-of-type {
        margin-top: 65px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content h1,
    .about-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Menu - 425px */
    .main-nav {
        display: none;
        position: fixed !important;
        top: 125px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        padding: 1.75rem 0;
        height: calc(100vh - 65px) !important;
        max-height: calc(100vh - 65px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9990 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1.25rem;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        font-size: 0.9rem;
        padding: 1.1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Homepage Banner & Footer - 425px */
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 65px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1.75rem;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(10px);
        height: calc(100vh - 65px) !important;
        max-height: calc(100vh - 65px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: flex !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: block;
        padding: 1.1rem 1.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        color: var(--bg-white);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 2.25rem;
    }
    
    .banner-header.transparent-header .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .banner-header.transparent-header .header-content {
        padding: 0.8rem 1.25rem;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 55px;
    }
    
    .homepage .main-banner-section {
        height: calc(100vh - 70px) !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .site-footer {
        padding: 1rem 1.25rem;
        height: 70px;
    }
    
    .homepage .site-footer .container {
        padding: 0 1.25rem;
    }
    
    .homepage .site-footer .homepage-footer-content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.63rem;
        letter-spacing: 0.08em;
        margin: 0;
        line-height: 1.4;
    }
    
    .homepage .site-footer .footer-social-nav {
        gap: 0.75rem;
    }
    
    .homepage .site-footer .social-icon {
        width: 33px;
        height: 33px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 15px;
        height: 15px;
    }
    
    /* Homepage Banner - 366px-425px */
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* 320px - Mobile Small */
@media (max-width: 365px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 1.5rem 1rem;
    }
    
    body:not(.homepage) .section:first-of-type {
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .hero-content h1,
    .about-hero-content h1 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .hero-content p,
    .about-hero-content p {
        font-size: 0.9rem;
    }
    
    /* Mobile Menu - 365px */
    .main-nav {
        display: none;
        position: fixed !important;
        top: 70px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        padding: 1.5rem 0;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9990 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        font-size: 0.85rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Homepage Banner & Footer - 365px */
    .banner-header.transparent-header .main-nav {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1.5rem;
        flex-direction: column;
        z-index: 9990 !important;
        backdrop-filter: blur(10px);
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        width: 100% !important;
        margin: 0;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .banner-header.transparent-header .main-nav.active {
        display: flex !important;
    }
    
    .banner-header.transparent-header .main-nav ul {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li {
        width: 100%;
    }
    
    .banner-header.transparent-header .main-nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-size: 0.85rem;
        transition: all 0.3s ease;
        color: var(--bg-white);
    }
    
    .banner-header.transparent-header .main-nav ul li a:hover,
    .banner-header.transparent-header .main-nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 2rem;
    }
    
    .banner-header.transparent-header .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .banner-header.transparent-header .header-content {
        padding: 0.75rem 1rem;
    }
    
    .banner-header.transparent-header .logo-image {
        height: 50px;
    }
    
    .homepage .main-banner-section {
        height: calc(100vh - 65px) !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .site-footer {
        padding: 0.85rem 1rem;
        height: 65px;
    }
    
    .homepage .site-footer .container {
        padding: 0 1rem;
    }
    
    .homepage .site-footer .homepage-footer-content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .homepage .site-footer .footer-copyright p {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
        margin: 0;
        line-height: 1.3;
    }
    
    .homepage .site-footer .footer-social-nav {
        gap: 0.65rem;
    }
    
    .homepage .site-footer .social-icon {
        width: 31px;
        height: 31px;
    }
    
    .homepage .site-footer .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    /* Homepage Banner - 365px and below */
    .homepage .banner-slider {
        height: 100% !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    
    .homepage .banner-center {
        height: 100%;
    }
    
    .homepage .banner-slide {
        height: 100%;
    }
    
    .homepage .banner-image-wrapper {
        height: 100%;
    }
    
    .homepage .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

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

/* Selection */
::selection {
    background: var(--black);
    color: var(--bg-white);
}

::-moz-selection {
    background: var(--black);
    color: var(--bg-white);
}

/* ============================================
   APPOINTMENT PAGE STYLES - KURUMSAL TASARIM
   ============================================ */
.appointment-section {
    padding: 140px var(--spacing) 5rem;
    background: #f8f8f8;
    min-height: 100vh;
}

.appointment-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.appointment-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1rem;
    background: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--black);
}

.appointment-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem 0;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.appointment-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Info Cards */
.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--black);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    border-color: var(--black);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.05);
}

.info-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    color: var(--black);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Appointment Form */
.appointment-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid #e5e5e5;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group .required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: white;
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--black);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-block:hover {
    background: white;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-block svg {
    flex-shrink: 0;
}

/* Alerts */
.alert {
    padding: 1.5rem 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideDown 0.3s ease;
    border-left: 4px solid;
}

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

.alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: #f0f9f4;
    color: #1a472a;
    border-left-color: #2d7a4f;
}

.alert-success svg {
    color: #2d7a4f;
}

.alert-error {
    background: #fef2f2;
    color: #7f1d1d;
    border-left-color: #dc2626;
}

.alert-error svg {
    color: #dc2626;
}

.alert strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.alert p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive - Appointment */
@media (max-width: 1024px) {
    .appointment-section {
        padding: 100px var(--spacing) 4rem;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .appointment-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .appointment-section {
        padding: 90px var(--spacing) 3rem;
    }
    
    .appointment-header {
        margin-bottom: 3rem;
    }
    
    .appointment-header h1 {
        font-size: 2rem;
    }
    
    .appointment-header p {
        font-size: 1rem;
    }
    
    .appointment-info {
        grid-template-columns: 1fr;
    }
    
    .appointment-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 425px) {
    .appointment-section {
        padding: 80px var(--spacing) 2.5rem;
    }
    
    .appointment-header {
        margin-bottom: 2.5rem;
    }
    
    .appointment-header h1 {
        font-size: 1.75rem;
    }
    
    .appointment-header p {
        font-size: 0.95rem;
    }
    
    .appointment-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 365px) {
    .appointment-section {
        padding: 70px var(--spacing) 2rem;
    }
    
    .appointment-header h1 {
        font-size: 1.5rem;
    }
    
    .appointment-form-wrapper {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-block {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .appointment-section {
        padding: 60px var(--spacing) 1.75rem;
    }
    
    .appointment-header {
        margin-bottom: 2rem;
    }
    
    .appointment-header h1 {
        font-size: 1.35rem;
    }
    
    .appointment-header p {
        font-size: 0.9rem;
    }
    
    .appointment-form-wrapper {
        padding: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   CKEditor Content Styles
   ============================================ */

/* CKEditor içerik alanı için genel stiller */
.ck-content {
    font-family: var(--font-primary) !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: var(--text-dark) !important;
}

/* CKEditor inline stilleri için önemli kurallar */
.ck-content * {
    font-family: inherit;
}

.ck-content span[style*="color"],
.ck-content span[style*="font-family"],
.ck-content span[style*="font-size"],
.ck-content span[style*="background-color"] {
    display: inline !important;
}

/* Başlıklar */
.ck-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
    color: var(--black);
}

.ck-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
    color: var(--black);
}

.ck-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    line-height: 1.4;
    color: var(--black);
}

.ck-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem;
    line-height: 1.4;
    color: var(--dark-gray);
}

/* Paragraflar */
.ck-content p {
    margin: 0.75rem 0 !important;
    line-height: 1.8 !important;
}

.ck-content p span {
    display: inline;
}

/* Listeler */
.ck-content ul,
.ck-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.ck-content ul li,
.ck-content ol li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.ck-content ul {
    list-style-type: disc;
}

.ck-content ul ul {
    list-style-type: circle;
    margin: 0.25rem 0;
}

.ck-content ol {
    list-style-type: decimal;
}

.ck-content ol ol {
    list-style-type: lower-alpha;
    margin: 0.25rem 0;
}

/* Todo List */
.ck-content .todo-list {
    list-style: none;
    padding-left: 0;
}

.ck-content .todo-list li {
    position: relative;
    padding-left: 2rem;
}

.ck-content .todo-list li::before {
    content: '☐';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: var(--gray);
}

.ck-content .todo-list li.todo-list__item--completed::before {
    content: '☑';
    color: var(--black);
}

/* Linkler */
.ck-content a {
    color: var(--black);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.ck-content a:hover {
    color: var(--gray);
    text-decoration: none;
}

/* Kalın, İtalik, Altı Çizili */
.ck-content strong,
.ck-content b {
    font-weight: 700;
}

.ck-content em,
.ck-content i {
    font-style: italic;
}

.ck-content u {
    text-decoration: underline;
}

.ck-content s {
    text-decoration: line-through;
}

/* Kod */
.ck-content code {
    background-color: var(--bg-gray);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    color: var(--black);
}

.ck-content pre {
    background-color: var(--bg-gray);
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

.ck-content pre code {
    background-color: transparent;
    padding: 0;
    font-size: 0.9rem;
}

/* Alıntı (Blockquote) */
.ck-content blockquote {
    border-left: 4px solid var(--black);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--gray);
}

/* Tablolar */
.ck-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.ck-content table thead {
    background-color: var(--black);
    color: var(--bg-white);
}

.ck-content table th,
.ck-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.ck-content table th {
    font-weight: 600;
}

.ck-content table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.ck-content table tbody tr:hover {
    background-color: var(--bg-gray);
}

/* Resimler */
.ck-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 5px;
}

.ck-content figure {
    margin: 1.5rem 0;
    text-align: center;
}

.ck-content figure img {
    margin: 0 auto;
}

.ck-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Yatay Çizgi */
.ck-content hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 2rem 0;
}

/* Alt ve Üst Simge */
.ck-content sub {
    font-size: 0.75em;
    vertical-align: sub;
}

.ck-content sup {
    font-size: 0.75em;
    vertical-align: super;
}

/* Hizalama */
.ck-content .text-align-left {
    text-align: left;
}

.ck-content .text-align-center {
    text-align: center;
}

.ck-content .text-align-right {
    text-align: right;
}

.ck-content .text-align-justify {
    text-align: justify;
}

/* Vurgulama (Highlight) */
.ck-content mark {
    background-color: #ffff00;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

/* Özel Karakterler */
.ck-content .special-character {
    font-size: 1.2em;
}

/* Media Embed (Video vb.) */
.ck-content .media {
    margin: 1.5rem 0;
    text-align: center;
}

.ck-content .media iframe {
    max-width: 100%;
    border-radius: 5px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .ck-content h1 {
        font-size: 2rem;
    }
    
    .ck-content h2 {
        font-size: 1.75rem;
    }
    
    .ck-content h3 {
        font-size: 1.35rem;
    }
    
    .ck-content h4 {
        font-size: 1.15rem;
    }
    
    .ck-content {
        font-size: 0.95rem;
    }
    
    .ck-content table {
        font-size: 0.85rem;
    }
    
    .ck-content table th,
    .ck-content table td {
        padding: 0.5rem 0.75rem;
    }
    
    .ck-content ul,
    .ck-content ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 425px) {
    .ck-content h1 {
        font-size: 1.75rem;
    }
    
    .ck-content h2 {
        font-size: 1.5rem;
    }
    
    .ck-content h3 {
        font-size: 1.25rem;
    }
    
    .ck-content h4 {
        font-size: 1.1rem;
    }
    
    .ck-content {
        font-size: 0.9rem;
    }
    
    .ck-content table {
        font-size: 0.8rem;
    }
    
    .ck-content table th,
    .ck-content table td {
        padding: 0.4rem 0.5rem;
    }
}
