/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c9a961;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --bg-dark: #0d0d0d;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Force English uppercase rules (i to I, not İ) */
html {
    -webkit-locale: "en-US";
    text-transform: none;
}

html,
body,
* {
    font-language-override: normal;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-y: scroll;
    /* Scrollbar her zaman görünür */
    overflow-x: clip;
    /* Yatay taşmayı kes ama scrollbar sorununa neden olma */
    scrollbar-gutter: stable;
    /* Scrollbar için yer ayır */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
    /* Scrollbar sorununu önlemek için */
}

.section {
    padding: 6rem 0;
    overflow-x: clip;
    /* Taşmayı kes ama scrollbar sorununa neden olma */
    max-width: 100%;
}

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

.text-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

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

.btn:hover::before {
    left: 0;
}

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

.btn-primary::before {
    background: var(--text-light);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
    /* Use Turkish uppercase rules for artist name (i → İ) */
    -webkit-locale: "tr-TR";
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

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

.main-nav a:hover::after,
.main-nav .current-menu-item>a::after,
.main-nav .current_page_item>a::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-40%);
    transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

.slide-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.slide-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-light);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-arrows {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    min-height: 500px;
    max-height: 650px;
    height: auto;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(30%);
    transition: var(--transition);
    display: block;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::before {
    top: 1rem;
    left: 1rem;
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===== STATEMENT SECTION ===== */
.statement-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    text-align: center;
    overflow-x: clip;
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.statement-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.9;
    color: var(--text-light);
    position: relative;
    padding: 2.5rem 1.5rem;
    border: none;
    background: transparent;
}

.statement-quote::before,
.statement-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    font-family: 'Playfair Display', serif;
    line-height: 0.8;
}

.statement-quote::before {
    top: 0.5rem;
    left: 0.5rem;
}

.statement-quote::after {
    bottom: 0.5rem;
    right: 0.5rem;
}

.statement-author {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--accent-color);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--bg-dark);
}

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

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-title {
    transform: translateY(0);
}

.portfolio-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-link {
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-link svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

/* ===== WORKS SECTION ===== */
.works-section {
    background: var(--primary-color);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

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

.work-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.work-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* ===== STUDIO SECTION ===== */
.studio-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
}

.studio-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.studio-location {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-color);
}

.contact-text h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-text p {
    margin: 0;
    font-size: 0.875rem;
}

.contact-text a:hover {
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    transition: var(--transition);
}

.social-link:hover svg {
    fill: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-widget-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget ul li a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--accent-color);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

.lightbox-close:hover svg {
    stroke: var(--primary-color);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WORDPRESS SPECIFIC ===== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 0.75rem;
    background: var(--secondary-color);
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Pagination Arrow Alignment Fix */
.page-numbers svg {
    display: block;
    width: 20px;
    height: 20px;
}

.page-numbers.prev,
.page-numbers.next {
    padding: 0;
    width: 45px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image::before {
        display: none;
    }

    /* About image tablet optimizasyonu */
    .about-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        min-height: 350px;
        max-height: 500px;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: center center;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-color);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.25rem;
    }

    /* About image mobil optimizasyonu */
    .about-image {
        width: 100%;
        max-width: 100%;
        margin: 0 0 2rem 0;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 400px;
        aspect-ratio: 1/1;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .works-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .slider-arrows {
        display: none;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Statement section mobil optimizasyonu */
    .statement-section {
        overflow-x: clip;
    }

    .statement-content {
        padding: 0 1rem;
    }

    .statement-quote {
        padding: 2rem 1rem;
    }

    .statement-quote::before,
    .statement-quote::after {
        font-size: 2.5rem;
        opacity: 0.25;
    }

    .statement-quote::before {
        top: 0.25rem;
        left: 0.25rem;
    }

    .statement-quote::after {
        bottom: 0.25rem;
        right: 0.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    /* About image küçük mobil optimizasyonu */
    .about-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0 0 1.5rem 0;
    }

    .about-image img {
        width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 350px;
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 0;
        display: block;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
        margin-top: 2rem;
    }

    /* Statement section küçük mobil optimizasyonu */
    .statement-content {
        padding: 0 0.75rem;
    }

    .statement-quote {
        padding: 1.75rem 0.75rem;
        font-size: 1.125rem;
    }

    .statement-quote::before,
    .statement-quote::after {
        font-size: 2rem;
        opacity: 0.2;
    }

    .statement-quote::before {
        top: 0.15rem;
        left: 0.15rem;
    }

    .statement-quote::after {
        bottom: 0.15rem;
        right: 0.15rem;
    }

    .statement-author {
        font-size: 1rem;
    }
}