/*
Theme Name: YAVA Theme
Theme URI: https://yavastudio.com
Description: YAVA Studio custom theme
Version: 2.0.0
Author: YAVA Studio
Text Domain: yava-theme
*/

/* ─── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; margin-top: 0 !important; scrollbar-gutter: stable; }
html:has(body.home), html:has(body.front-page) { scrollbar-gutter: auto; overflow: hidden; }
#wpadminbar { display: none !important; }
body { font-family: 'Roboto', sans-serif; background: #fff; color: #333; -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: 'Raleway', sans-serif; }

/* ─── Container ──────────────────────────────────────────── */
.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 clamp(20px, 8.5vw, 130px);
}

/* ─── Header ─────────────────────────────────────────────── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    height: 100px;
    display: flex;
    align-items: center;
}
.header-inner {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.yava-logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.site-logo img.custom-logo {
    height: 52px;
    width: auto;
}

/* Nav */
.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: flex-end;
    padding-bottom: 14px;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-nav a, .site-nav li a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #333;
    padding: 4px 14px;
    transition: color 0.2s;
    white-space: nowrap;
}
.site-nav a:hover { color: #000; }
.site-nav a.current-menu-item { color: #000; }

/* Search + Lang */
.header-extras {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 20px;
}
.header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    color: #333;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1;
}
.header-search-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}
.header-search-btn:hover { color: #000; }

/* Search modal */
.yava-search-modal {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 0 24px;
}
.yava-search-modal.open {
    display: flex;
}
.yava-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 720px;
    border-bottom: 2px solid #111;
    padding: 6px 0;
}
.yava-search-field {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    color: #111;
    padding: 8px 4px;
    outline: none;
    letter-spacing: 0.02em;
}
.yava-search-submit {
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.yava-search-submit svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}
.yava-search-close {
    position: absolute;
    top: 22px;
    right: 28px;
    background: transparent;
    border: 0;
    font-size: 36px;
    color: #111;
    cursor: pointer;
    line-height: 1;
}
.lang-switcher a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #333;
    padding: 4px 14px;
    transition: color 0.2s;
    white-space: nowrap;
}
.lang-switcher a:hover, .lang-switcher a.active { color: #000; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: 12px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Homepage: no scroll ────────────────────────────────── */
body.home, body.front-page {
    overflow: hidden;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
body.home #site-header,
body.front-page #site-header {
    grid-row: 1;
}
body.home .home-slider-wrap,
body.front-page .home-slider-wrap {
    grid-row: 2;
    align-self: start;
    justify-self: center;
    height: 720px;
    min-height: 0;
}
body.home #site-footer,
body.front-page #site-footer {
    grid-row: 3;
    padding: 6px 0;
}

/* ─── Homepage Slider ────────────────────────────────────── */
.home-slider-wrap {
    width: 100%;
    max-width: 1180px;
    height: 720px;
    margin: 22px auto 0;
    background: #fff;
}
.home-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}
.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.slider-slide { pointer-events: none; }
.slider-slide.active { opacity: 1; pointer-events: auto; }
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slider-link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}
.slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.slider-slide.active .slider-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 36px;
    line-height: 1;
    width: 44px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.slider-arrow:hover { opacity: 0.7; }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

/* ─── Footer (only visible on home, hidden on inner pages) ─── */
#site-footer {
    padding: 10px 0;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
}
body:not(.home):not(.front-page) #site-footer { display: none; }
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #222;
    transition: color 0.2s, opacity 0.2s;
}
.footer-social-link:hover { opacity: 0.6; }
.footer-social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
    padding: 70px 0 40px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ─── Projects Grid ──────────────────────────────────────── */
body.post-type-archive-proje > .container,
body.post-type-archive-proje .container {
    padding-left: 0;
    padding-right: 0;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}
.project-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: #eee;
}
.project-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}
.project-card-no-img {
    width: 100%;
    height: 100%;
    background: #d8d8d8;
}
.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    font-family: 'Raleway', sans-serif;
    font-size: clamp(8px, 0.62vw, 11px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

/* ─── Filter ─────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.filter-btn {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border: 1px solid #ccc;
    color: #666;
    background: transparent;
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ─── Single Project ─────────────────────────────────────── */
body.single-proje > .container,
body.single-proje .container {
    padding-left: 0;
    padding-right: 0;
}
.project-hero-full {
    width: 100%;
    background: #fff;
    margin-bottom: 0;
    line-height: 0;
}
.project-hero-frame {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
}
.project-hero-frame > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease;
}

.project-hero-trigger { cursor: crosshair; }
.project-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 3;
}
.project-hero-arrow:hover { background: rgba(0,0,0,0.6); }
.project-hero-arrow.prev { left: 18px; }
.project-hero-arrow.next { right: 18px; }

/* Lightbox thumbnail strip */
.lightbox-thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    padding: 0 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.lightbox-thumb {
    flex: 0 0 auto;
    width: 84px;
    aspect-ratio: 16/9;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.55;
    outline: 2px solid transparent;
    outline-offset: -2px;
    transition: opacity 0.2s ease, outline-color 0.2s ease;
}
.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb.active { opacity: 1; outline-color: #fff; }
.project-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(40px, 5vw, 80px);
    padding: 40px 0 50px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
    align-items: start;
}
.project-meta-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 4px;
}
.project-meta-item .label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.project-meta-item .value {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    line-height: 1.5;
}
.project-content-col {
    min-width: 0;
}
.project-content {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
}
.project-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}
.project-content h2, .project-content h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2.5rem 0 0.75rem;
    color: #111;
}

/* Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.project-gallery-grid img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
}
.project-gallery-grid img:hover { opacity: 0.9; }

/* Project nav */
.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
}
.project-nav-link { color: #333; transition: color 0.2s; }
.project-nav-link:hover { color: #000; }
.project-nav-all { color: #999; transition: color 0.2s; }
.project-nav-all:hover { color: #333; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox .lightbox-img { max-width: 95vw; max-height: calc(100vh - 160px); width: auto; height: auto; object-fit: contain; display: block; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    line-height: 1;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ─── Generic Page ───────────────────────────────────────── */
.page-content {
    max-width: 860px;
    padding: 50px 0 80px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.page-content p { margin-bottom: 1.4rem; }
.page-content h2 { font-size: 22px; font-weight: 600; margin: 2rem 0 1rem; }

/* ─── Expertise Page ─────────────────────────────────────── */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    gap: clamp(8px, 1vw, 16px);
    align-items: stretch;
    padding-top: 43px;
    padding-bottom: 13px;
}
.expertise-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: clamp(8px, 1vw, 16px);
}
.expertise-card-head {
    background: #fafafa;
    padding: clamp(20px, 2.5vw, 40px) 12px clamp(16px, 2vw, 28px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px);
}
.expertise-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    line-height: 1;
    font-size: clamp(24px, 3vw, 40px);
}
.expertise-card-icon i {
    font-size: inherit;
    line-height: 1;
}
.expertise-card-icon svg {
    width: clamp(28px, 3vw, 44px);
    height: clamp(28px, 3vw, 44px);
    display: block;
}
.expertise-card-title {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(10px, 1.1vw, 15px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.3;
    text-align: center;
}
.expertise-card-panel {
    background: #f5f5f5;
    padding: clamp(14px, 1.6vw, 24px) clamp(10px, 1.2vw, 18px);
    text-align: center;
}
.expertise-card-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.expertise-card-panel li {
    font-size: clamp(10px, 0.75vw, 13px);
    color: #333;
    padding: clamp(2px, 0.25vw, 4px) 0;
    line-height: 1.5;
    display: block;
    text-align: center;
}
.expertise-card-panel li::before {
    content: "\00B7\00A0";
    color: #555;
}

/* ─── Project Locations ──────────────────────────────────── */
.project-locations {
    background: #fff;
    padding: 33px 0 7px;
    border-top: 1px solid #e8e8e8;
}
.project-locations-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    color: #111;
    margin: 0 0 40px;
}
.project-locations-map {
    max-width: 1200px;
    margin: 0 auto 24px;
}
.yava-amcharts-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
}
.yava-amcharts-map [aria-labelledby],
.yava-amcharts-map a[href*="amcharts"],
.yava-amcharts-map g[aria-labelledby*="amcharts"] {
    display: none !important;
}
.project-locations-map svg {
    width: 100%;
    height: auto;
    display: block;
}
.project-locations-city {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    margin: 0;
}

/* ─── Awards ─────────────────────────────────────────────── */
.awards-section {
    padding: 146px 0 56px;
}
.awards-section > .container,
.awards-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1174px;
}
.awards-list .award-item {
    width: 100%;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
}

.award-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: transparent;
    padding: 10px 9px;
}
.award-thumb img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
}
.award-item:nth-child(odd) {
    background: #ebebeb;
}

.award-thumb {
    flex-shrink: 0;
    width: 194px;
    height: 116px;
    overflow: hidden;
    background: #d8d8d8;
}
.award-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-year {
    flex: 0 0 70px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.award-location {
    flex: 1 1 0;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.award-prize {
    flex: 1 1 0;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.02em;
}

.award-project {
    flex: 2 1 0;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #444;
    text-align: left;
}

@media (max-width: 768px) {
    .award-item {
        flex-wrap: wrap;
        gap: 8px 14px;
        padding: 14px 16px;
    }
    .award-thumb {
        display: none;
    }
    .award-year,
    .award-location,
    .award-prize,
    .award-project {
        flex: none;
        min-width: 0;
        width: 100%;
        text-align: left;
    }
    .award-prize {
        font-size: 14px;
    }
}

/* ─── About Page ─────────────────────────────────────────── */
@media (min-width: 992px) {
    body.page-about,
    body.page-template-page-about {
        overflow: hidden;
        height: 100vh;
    }
}
.about-intro-band {
    background: #f7f7f7;
    padding: 168px 0 152px;
    width: 100%;
}
.about-intro-inner {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}
.about-logo {
    display: block;
    width: 240px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    object-fit: contain;
}
.about-text p {
    font-size: 15px;
    line-height: 1.85;
    font-weight: 500;
    text-align: left;
    color: #333;
    margin-bottom: 1.5rem;
    text-wrap: pretty;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.about-text p:last-child {
    margin-bottom: 0;
}

.about-team {
    background: #f7f7f7;
    padding: 41px 0 115px;
    width: 100%;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 89px;
    max-width: 1175px;
    margin: 0 auto;
}
.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.team-card-photo {
    width: 250px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 0;
    flex-shrink: 0;
}
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%);
}
.team-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-card-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #111;
    margin-top: 0;
    margin-bottom: 30px;
}
.team-card-title {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #999;
    margin-bottom: 16px;
}
.team-card-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}
.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #333;
    transition: color 0.2s, opacity 0.2s;
}
.team-social-link:hover {
    opacity: 0.5;
}
.team-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
}

/* ─── Contact Page ───────────────────────────────────────── */
.contact-top {
    padding: 160px 0 123px;
    background: #fff;
}
.contact-top-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 4vw, 80px);
    align-items: center;
}
.contact-brand-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #111;
    margin-bottom: 36px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-info-icon {
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon i {
    font-size: 14px;
    line-height: 1;
}
.contact-info-value {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    font-style: normal;
    transition: color 0.2s;
}
a.contact-info-value:hover { color: #111; }
.contact-address { display: block; }

.contact-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ebebeb;
    color: #222;
    transition: background 0.2s;
}
.contact-social-link:hover { background: #d8d8d8; }
.contact-social-link svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: #222;
}
.contact-social-link svg path { fill: #222; }

.contact-top-map {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-world-map {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
}

/* Form section */
.contact-form-section {
    background: #f5f5f5;
    padding: 110px 0 230px;
}
.contact-form-heading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 32px;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.contact-field {
    display: flex;
    flex-direction: column;
}
.contact-field-label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 400;
}
.contact-field-label .req { color: #d33; }
.contact-field input,
.contact-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d6d6d6;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    padding: 12px 14px;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #b5b5b5;
    font-size: 13px;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #888;
}
.contact-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}
.contact-submit {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 22px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: #fff;
    background: #cfcfcf;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}
.contact-submit:hover {
    background: #111;
    color: #fff;
}

/* Feedback */
.contact-feedback {
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}
.contact-feedback--success {
    background: #f4faf4;
    border-left: 3px solid #4caf50;
    color: #2e7d32;
}
.contact-feedback--error {
    background: #fff8f7;
    border-left: 3px solid #e57373;
    color: #c62828;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1280px) {
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
    .expertise-card-title { font-size: clamp(11px, 1.4vw, 15px); }
    .expertise-card-panel li { font-size: clamp(11px, 1vw, 13px); }
}
@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: fixed;
        inset: 0;
        top: 70px;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 199;
    }
    .site-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .header-extras { display: none; }
    .project-body { grid-template-columns: 1fr; gap: 24px; }
    .project-meta-col { flex-direction: row; flex-wrap: wrap; gap: 24px 40px; }
    .award-item { grid-template-columns: 1fr; gap: 16px; }
    .team-grid { grid-template-columns: 1fr; gap: 48px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-card-title { font-size: 13px; }
    .expertise-card-panel li { font-size: 12px; }
    .contact-top-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-top-map { display: none; }
    .contact-form-fields { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .projects-grid { grid-template-columns: 1fr; }
    .project-gallery-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .expertise-card-title { font-size: 15px; }
    .expertise-card-panel li { font-size: 13px; }
    .contact-submit { width: 100%; text-align: center; }
    .contact-form-fields { grid-template-columns: 1fr; }
}
