/* =========================================================
   Immo Partner Emlak ve Mimarlık - Ana Stil Dosyası
   Marka rengi: #8A6233
   ========================================================= */

:root {
    --brand: #8A6233;
    --brand-dark: #5d4122;
    --brand-light: #A37F55;
    --text: #2a2a2a;
    --text-light: #666;
    --muted: #999;
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --bg-dark: #1a1a1a;
    --border: #e5e5e5;
    --max-width: 1280px;
    --radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow: 0 6px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(138,98,51,.18);
    --transition: .3s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 0 0 .5em;
    line-height: 1.2;
}
p { margin: 0 0 1em; }
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
button { font-family: inherit; cursor: pointer; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}
.brand { display: flex; align-items: center; }
.brand-logo { max-height: 56px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-item > a:hover,
.nav-item.active > a {
    color: var(--brand);
    background: rgba(138,98,51,.08);
}
.nav-item > a i { font-size: 10px; opacity: .7; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    list-style: none;
    margin: 8px 0 0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}
.nav-item.has-children:hover .dropdown,
.nav-item.has-children:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    border-radius: 6px;
    font-size: 14px;
}
.dropdown a:hover {
    background: var(--bg-soft);
    color: var(--brand);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--brand);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}
.header-cta:hover { background: var(--brand-dark); color: #fff; }
.header-cta i { font-size: 12px; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

/* ---------- Page Header (alt sayfalar için) ---------- */
.page-header {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--brand);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0 0 .3em;
}
.page-header p { color: rgba(255,255,255,.85); font-size: 18px; margin: 0; }
.breadcrumb {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Hero Slider (Ana sayfa) ---------- */
.hero-slider {
    position: relative;
    height: clamp(520px, 80vh, 760px);
    overflow: hidden;
    background: #000;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
    padding: 0 24px;
    margin-left: clamp(24px, 8vw, 120px);
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138,98,51,.85);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    margin: 0 0 .3em;
    line-height: 1.1;
    text-shadow: 2px 2px 12px rgba(0,0,0,.4);
}
.hero-content p {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255,255,255,.9);
    margin: 0 0 32px;
    max-width: 580px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: #fff; color: var(--text); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--brand); color: #fff; }

.hero-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-controls button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.hero-controls button:hover { background: var(--brand); border-color: var(--brand); }

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    transition: var(--transition);
}
.hero-dots button.active { background: var(--brand); width: 32px; border-radius: 6px; }

/* ---------- Section base ---------- */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 0 0 12px;
}
.section-head p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- Hizmetler (Services) ---------- */
.services-section { background: var(--bg-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--brand);
    border-color: var(--brand);
}
.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p { color: #fff; }
.service-icon {
    font-size: 48px;
    color: var(--brand);
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-card h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text);
    transition: var(--transition);
}
.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    transition: var(--transition);
}

/* ---------- Süreç (Process grid) ---------- */
.process-section { background: #fff; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px 24px;
    background: linear-gradient(165deg, #fff 0%, var(--bg-soft) 100%);
    border: 1px solid rgba(138, 98, 51, 0.12);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(138, 98, 51, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 98, 51, 0.28);
    box-shadow: 0 12px 32px rgba(138, 98, 51, 0.12);
}
.process-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand);
    opacity: 0.55;
}
.process-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dark, #5d4122) 100%);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(138, 98, 51, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
}
.process-card:hover .process-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(138, 98, 51, 0.35);
}
.process-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px;
    color: var(--text);
}
.process-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

/* ---------- Portfolio Grid ---------- */
.portfolio-section { background: var(--bg-soft); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.portfolio-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.portfolio-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.portfolio-card:hover .portfolio-image img { transform: scale(1.05); }
.portfolio-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.portfolio-body h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 10px;
}
.portfolio-body p {
    font-size: 14.5px;
    color: var(--text-light);
    margin: 0 0 18px;
    flex: 1;
}
.portfolio-body .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    align-self: flex-start;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--brand);
    transition: var(--transition);
}
.portfolio-body .card-link:hover { color: var(--brand); gap: 14px; }

/* ---------- Hakkımızda Bölüm ---------- */
.about-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-cta .about-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: var(--shadow);
}
.about-cta .about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-cta h2 {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    margin: 0 0 20px;
}
.about-cta p { font-size: 16.5px; color: var(--text-light); }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.stat-item .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ---------- Project Showcase (Bitmiş Projeler sayfası) ---------- */
.project-showcase { margin-bottom: 80px; }
.project-hero-image {
    width: 100%;
    height: 540px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 50px;
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.project-title-hero {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    text-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.project-title-hero span {
    display: block;
    font-size: .55em;
    font-weight: 300;
    color: rgba(255,255,255,.85);
    margin-top: 12px;
    font-family: var(--font-body);
}

.project-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}
.project-overview.reverse-order { direction: rtl; }
.project-overview.reverse-order > * { direction: ltr; }
.overview-text h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0 0 18px;
}
.overview-text p {
    font-size: 16.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}
.project-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-highlights li {
    padding: 8px 0;
    color: var(--text);
    font-size: 15.5px;
}
.project-highlights li i {
    color: var(--brand);
    margin-right: 12px;
}
.overview-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.project-gallery-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.project-gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ---------- Hizmetler Sayfası ---------- */
.services-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-large-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.service-large-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.service-large-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
}
.service-large-content { padding: 28px; flex: 1; }
.service-large-content h2 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 12px;
}
.service-large-content p {
    color: var(--text-light);
    margin: 0 0 18px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 600;
    font-size: 14px;
}
.service-large-card:hover .read-more { gap: 14px; }

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.consulting-item {
    text-align: center;
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}
.consulting-item:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}
.consulting-item .icon-consulting {
    font-size: 42px;
    color: var(--brand);
    margin-bottom: 18px;
}
.consulting-item h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 12px;
}
.consulting-item p { color: var(--text-light); font-size: 15px; margin: 0; }

.commitment-section { background: var(--text); }
.commitment-section .section-head h2 { color: #fff; }
.commitment-section .section-head p { color: rgba(255,255,255,.7); }
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.commitment-box {
    text-align: center;
    padding: 32px 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
}
.commitment-box .icon-commitment {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 16px;
}
.commitment-box h4 {
    font-family: var(--font-body);
    color: #fff;
    font-size: 19px;
    margin: 0 0 10px;
}
.commitment-box p { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; }
.center-cta { text-align: center; margin-top: 20px; }

/* ---------- SSS / Accordion ---------- */
.faq-section { background: #fff; }
.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-category {
    margin-bottom: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-category .category-title {
    background: var(--brand);
    color: #fff;
    padding: 18px 26px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:first-child { border-top: none; }
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 26px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.accordion-header:hover { background: var(--bg-soft); color: var(--brand); }
.accordion-header .toggle-icon {
    color: var(--brand);
    transition: var(--transition);
    font-size: 14px;
    flex-shrink: 0;
}
.accordion-header.active .toggle-icon { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #fafafa;
}
.accordion-content > div {
    padding: 18px 26px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Görsel Galeri ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(138,98,51,0);
    color: rgba(255,255,255,0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition);
}
.gallery-item:hover::after {
    background: rgba(138,98,51,.55);
    color: #fff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 20px;
}
.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }
.lightbox-nav:hover { background: var(--brand); border-color: var(--brand); }

/* ---------- Ekibimiz ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo { aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 24px 16px; }
.team-body h4 { font-family: var(--font-body); font-size: 19px; margin: 0 0 4px; }
.team-body .role { color: var(--brand); font-size: 14px; font-weight: 500; margin: 0 0 12px; }

/* ---------- İletişim ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info { padding: 0; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 24px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 32px; }
.contact-list li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(138,98,51,.1);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-list h4 { font-family: var(--font-body); font-size: 15px; margin: 0 0 4px; color: var(--muted); font-weight: 500; }
.contact-list p { margin: 0; color: var(--text); font-weight: 500; }

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0 0 24px; font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(138,98,51,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; }
.form-alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14.5px;
}
.form-alert.success { background: #e9f7ef; color: #1b6b3a; border: 1px solid #b9e5c8; }
.form-alert.error { background: #fdecec; color: #8a2828; border: 1px solid #f3c2c2; }

.map-wrap {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 6;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; }
.cta-strip p { color: rgba(255,255,255,.9); margin: 0 0 24px; font-size: 17px; }
.cta-strip .btn {
    background: #fff;
    color: var(--brand);
}
.cta-strip .btn:hover { background: var(--text); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #111; color: #c7c7c7; padding: 70px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 {
    font-family: var(--font-body);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 20px;
}
.footer-logo { max-height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-company-line {
    color: var(--brand-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.footer-company-parent {
    color: #aaa;
    font-size: 12.5px;
    margin: 0 0 14px;
}
.footer-about p { color: #999; font-size: 14.5px; margin-bottom: 20px; }
.footer-links, .footer-contact, .social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #c7c7c7; font-size: 14.5px; }
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact li {
    color: #c7c7c7;
    font-size: 14.5px;
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer-contact a { color: #c7c7c7; }
.footer-contact a:hover { color: var(--brand); }
.footer-contact i { color: var(--brand); margin-top: 4px; }
.social-list { display: flex; gap: 10px; }
.social-list a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-list a:hover { background: var(--brand); transform: translateY(-3px); }
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    color: #777;
    font-size: 13.5px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 50;
    box-shadow: var(--shadow);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--brand-dark); color: #fff; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .services-large-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .process-card--last {
        grid-column: 1 / -1;
        max-width: calc(50% - 7px);
        justify-self: center;
    }
}
@media (max-width: 900px) {
    /* Menü açıkken header + panel tüm sayfanın üstünde (backdrop dahil) */
    body.nav-open .site-header {
        z-index: 300;
    }

    .nav-toggle { display: block; position: relative; z-index: 2; }
    .main-nav {
        position: fixed;
        top: 80px;
        right: 0;
        bottom: 0;
        width: 80%;
        max-width: 360px;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px 24px 80px;
        box-shadow: -10px 0 30px rgba(0,0,0,.18);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 1;
        pointer-events: auto;
        isolation: isolate;
    }
    .main-nav.open { transform: translateX(0); }

    /* Sadece sol taraftaki içeriği karartır; menü panelinin üstüne binmez */
    .nav-backdrop {
        position: fixed;
        top: 80px;
        left: 0;
        right: min(360px, 80vw);
        bottom: 0;
        background: rgba(0,0,0,.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 200;
    }
    .nav-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    body.nav-open { overflow: hidden; }

    .nav-list { flex-direction: column; gap: 4px; width: 100%; position: relative; z-index: 2; }
    .nav-item { width: 100%; position: relative; z-index: 2; }
    .nav-item > a { width: 100%; justify-content: space-between; padding: 14px 12px; position: relative; z-index: 2; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0 0 0 16px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }
    .nav-item.has-children.open .dropdown { max-height: 500px; }
    .header-cta { display: none; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .process-card {
        padding: 22px 14px 20px;
        border-radius: 14px;
    }
    .process-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    .process-card h3 { font-size: 14px; }
    .process-card p { font-size: 12.5px; line-height: 1.5; }
    .process-num { top: 10px; right: 10px; font-size: 10px; }

    .about-cta { grid-template-columns: 1fr; gap: 40px; }
    .project-overview, .project-overview.reverse-order { grid-template-columns: 1fr; direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .project-hero-image { height: 360px; }
    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero-controls { display: none; }
}
