/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Lato', sans-serif;
    line-height: 1.7;
    color: #2B2B2B;
    overflow-x: hidden;
    background: #F4F1EC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(244, 241, 236, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(58, 42, 30, 0.1);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(58, 42, 30, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #6A6A6A;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover { color: #3A2A1E; }

.nav-link-highlight {
    color: #F4F1EC !important;
    background: #7B5E3B;
    padding: 9px 22px;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-link-highlight:hover {
    color: #F4F1EC !important;
    background: #9C7B52;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #3A2A1E;
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(58, 42, 30, 0.07);
    border-radius: 3px;
    padding: 3px;
    gap: 0;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9C7B52;
    cursor: pointer;
    padding: 5px 11px;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.lang-btn.active {
    background: #7B5E3B;
    color: #F4F1EC;
}

.lang-btn:not(.active):hover {
    color: #3A2A1E;
    background: rgba(58, 42, 30, 0.08);
}

.lang-sep { display: none; }

/* ── HERO ── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.82) contrast(1.1) saturate(0.88);
    min-height: 100vh;
    max-width: none;
    max-height: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(58, 42, 30, 0.38);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 25%, rgba(30, 18, 8, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-logo img {
    max-width: 380px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}

.hero-logo img:hover { transform: scale(1.03); }

.hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    color: #fff;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.88;
    color: #E9E3DA;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: rgba(233, 227, 218, 0.5);
    margin: 2rem auto;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(233, 227, 218, 0.88);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 0.55s both;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(233, 227, 218, 0.75);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out 0.7s both;
}

.hero-location i {
    font-size: 0.75rem;
    color: #9C7B52;
}

.opening-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.88rem;
    background: rgba(58, 42, 30, 0.38);
    padding: 18px 36px;
    border-radius: 3px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 123, 82, 0.35);
    color: #E9E3DA;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: rgba(233, 227, 218, 0.6);
}

/* ── LOGO SECTION ── */
.logo-section {
    padding: 80px 0;
    background: #F4F1EC;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(58,42,30,0.12));
    transition: transform 0.3s ease;
}

.logo-container img:hover { transform: scale(1.04); }

/* ── MAINPAGE SECTIONS ── */

/* Shared helpers */
.mp-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9C7B52;
    margin-bottom: 1rem;
}

.mp-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #3A2A1E;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.mp-rule {
    width: 36px;
    height: 1px;
    background: #9C7B52;
    opacity: 0.55;
    margin-bottom: 1.8rem;
}

/* BİZ KİMİZ */
.mp-biz-kimiz {
    position: relative;
    height: 72vh;
    min-height: 520px;
    max-height: 750px;
    overflow: hidden;
    display: flex;
}

.mp-biz-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) saturate(0.7) contrast(1.05);
}

.mp-biz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 18, 8, 0.25) 0%,
        rgba(30, 18, 8, 0.15) 40%,
        rgba(30, 18, 8, 0.65) 100%
    );
}

.mp-biz-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 100px;
}

.mp-biz-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.0;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    max-width: 420px;
}

.mp-biz-bottom {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    max-width: 480px;
}

.mp-biz-rule {
    flex-shrink: 0;
    width: 48px;
    height: 1px;
    background: rgba(233, 227, 218, 0.6);
    margin-top: 0.7em;
}

.mp-biz-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(233, 227, 218, 0.88);
    line-height: 1.9;
    font-weight: 300;
}

/* NELER SUNUYORUZ */
.mp-neler {
    background: #F4F1EC;
    padding-top: 72px;
}

.mp-neler-top {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding-bottom: 48px;
}

.mp-neler-title {
    flex: 0 0 300px;
    font-size: 3.2rem;
    margin-bottom: 0;
}

.mp-neler-desc {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #6A6A6A;
    line-height: 1.9;
    padding-top: 0.6rem;
}

.mp-neler-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.mp-neler-photo {
    overflow: hidden;
    background: #E9E3DA;
}

.mp-neler-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.mp-neler-photo:hover img {
    transform: scale(1.04);
}

/* HUZUR ORTAMI */
.mp-huzur {
    display: flex;
    min-height: 540px;
    max-height: 680px;
    background: #fff;
}

.mp-huzur-image {
    flex: 0 0 42%;
    overflow: hidden;
}

.mp-huzur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mp-huzur-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 100px 60px 72px;
}

.mp-huzur-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    color: #6A6A6A;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

/* Progress bars */
.mp-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mp-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-bar-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9C7B52;
}

.mp-bar-track {
    height: 4px;
    background: rgba(58,42,30,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.mp-bar-fill {
    height: 100%;
    background: #7B5E3B;
    border-radius: 2px;
    transition: width 1.2s ease;
}

/* RESTORAN */
.mp-restoran {
    display: flex;
    min-height: 540px;
    max-height: 680px;
    background: #F4F1EC;
}

.mp-restoran-image {
    flex: 0 0 52%;
    overflow: hidden;
    position: relative;
}

.mp-restoran-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mp-restoran-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px 60px 72px;
}

.mp-restoran-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #6A6A6A;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.mp-restoran-menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.2rem;
    padding: 10px 22px;
    border: 1px solid rgba(156, 123, 82, 0.4);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9C7B52;
    width: fit-content;
}

.mp-restoran-menu-badge i {
    font-size: 0.9rem;
    color: #9C7B52;
}

/* KONUMUMUZ */
.mp-konum {
    background: #F4F1EC;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 480px) auto;
}

.mp-konum-photos {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
}

.mp-konum-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.mp-konum-photos img:hover { transform: scale(1.03); }

.mp-konum-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px 60px 72px;
}

.mp-konum-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    color: #6A6A6A;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.mp-distances {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(58,42,30,0.08);
}

.mp-dist-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    gap: 6px;
    border-right: 1px solid rgba(58,42,30,0.08);
    transition: background 0.3s ease;
}

.mp-dist-item:last-child { border-right: none; }

.mp-dist-item:hover { background: rgba(58,42,30,0.03); }

.mp-dist-km {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #7B5E3B;
    letter-spacing: 0.02em;
}

.mp-dist-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6A6A6A;
}

/* Responsive mainpage */
@media (max-width: 1024px) {
    .mp-biz-text { padding: 80px 60px 80px 60px; }
    .mp-huzur-content { padding: 60px 60px 60px 60px; }
    .mp-konum-content { padding: 60px 60px 60px 60px; }
    .mp-neler-title { flex: 0 0 280px; font-size: 3rem; }
}

@media (max-width: 768px) {
    .mp-biz-content { padding: 48px 24px; }
    .mp-biz-title { font-size: 3.8rem; }
    .mp-heading { font-size: 2.4rem; }

    .mp-neler-top { flex-direction: column; gap: 24px; padding-bottom: 40px; }
    .mp-neler-title { flex: none; font-size: 2.4rem; }

    .mp-neler-photos { grid-template-columns: 1fr; height: auto !important; gap: 10px; }
    .mp-neler-photo img { height: auto !important; object-fit: unset !important; }

    .mp-huzur { flex-direction: column; max-height: none; margin-top: 10px; }
    .mp-huzur-image { flex: none; min-height: 320px; height: 360px; }
    .mp-huzur-content { padding: 52px 24px; }

    .mp-restoran { flex-direction: column; max-height: none; }
    .mp-restoran-image { flex: none; height: 300px; position: relative; }
    .mp-restoran-content { padding: 48px 24px; }

    .mp-konum { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
    .mp-konum-photos { grid-column: 1; grid-row: 1; min-height: 280px; }
    .mp-konum-photos img { height: 280px; }
    .mp-konum-content { grid-column: 1; grid-row: 2; padding: 60px 24px; }
    .mp-distances { grid-column: 1; grid-row: 3; flex-wrap: wrap; }
    .mp-dist-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(58,42,30,0.08); }
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: #F4F1EC;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,42,30,0.12), transparent);
}

.about-icon {
    text-align: center;
    font-size: 1.3rem;
    color: #9C7B52;
    margin-bottom: 1.5rem;
    opacity: 0.65;
}

.about-divider {
    width: 36px;
    height: 1px;
    background: #9C7B52;
    margin: 0 auto 2.5rem;
    opacity: 0.5;
}

.about h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #3A2A1E;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.about p {
    text-align: center;
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    color: #6A6A6A;
    line-height: 1.95;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* ── GALLERY ── */
.gallery {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,42,30,0.1), transparent);
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #3A2A1E;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.gallery-subtitle {
    text-align: center;
    font-size: 0.72rem;
    color: #9C7B52;
    margin-bottom: 4rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #E9E3DA;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    contain: layout style;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e9e3da 25%, #f0ece5 50%, #e9e3da 75%);
    background-size: 200% 100%;
    animation: gallery-shimmer 1.4s infinite;
    z-index: 0;
}

@keyframes gallery-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(58,42,30,0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
    position: relative;
    z-index: 1;
    opacity: 0;
}

.gallery-item img.loaded { opacity: 1; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(58,42,30,0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    font-size: 1.4rem;
    color: #E9E3DA;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: #7B5E3B;
    color: #F4F1EC;
    text-decoration: none;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.gallery-btn:hover {
    background: #9C7B52;
    transform: translateY(-2px);
}

.gallery-btn i { font-size: 0.95rem; }

.gallery-btn-count {
    background: rgba(244, 241, 236, 0.2);
    padding: 3px 12px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ── FEATURES ── */
.features {
    padding: 120px 0;
    background: #E9E3DA;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,42,30,0.12), transparent);
}

.features h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #3A2A1E;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 3px;
    background: rgba(244, 241, 236, 0.7);
    transition: all 0.4s ease;
    border: 1px solid rgba(58,42,30,0.07);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #9C7B52, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(58,42,30,0.1);
    background: #F4F1EC;
}

.feature-card i {
    font-size: 2rem;
    color: #9C7B52;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover i { color: #7B5E3B; }

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3A2A1E;
    font-weight: 400;
}

.feature-card p {
    color: #6A6A6A;
    line-height: 1.85;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
}

/* ── CONTACT ── */
.contact {
    padding: 120px 0;
    background: #3A2A1E;
    color: #E9E3DA;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(156,123,82,0.4), transparent);
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #E9E3DA;
    letter-spacing: 0.02em;
}

.contact-subtitle {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(233,227,218,0.65);
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.85;
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(233,227,218,0.05);
    border-radius: 3px;
    border: 1px solid rgba(156,123,82,0.18);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(156,123,82,0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover::before { transform: scaleX(1); }

.contact-item:hover {
    transform: translateY(-6px);
    background: rgba(233,227,218,0.09);
    border-color: rgba(156,123,82,0.35);
}

.contact-item i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #9C7B52;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #E9E3DA;
    font-weight: 400;
}

.contact-item p {
    margin-bottom: 1.2rem;
    color: rgba(233,227,218,0.6);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
}

.contact-link {
    display: inline-block;
    padding: 9px 20px;
    background: rgba(156,123,82,0.18);
    color: #E9E3DA;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid rgba(156,123,82,0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    background: #9C7B52;
    border-color: #9C7B52;
}

/* ── INFO ── */
.info {
    padding: 80px 0;
    background: #F4F1EC;
    text-align: center;
}

.info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #3A2A1E;
    font-weight: 400;
}

.info p {
    font-size: 1rem;
    color: #6A6A6A;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.85;
}

.info-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: white;
    padding: 20px 40px;
    border-radius: 3px;
    box-shadow: 0 6px 24px rgba(58,42,30,0.08);
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(58,42,30,0.07);
}

.info-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58,42,30,0.1);
}

.info-email i {
    font-size: 1.2rem;
    color: #9C7B52;
}

.info-email a {
    font-size: 1rem;
    color: #2B2B2B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.info-email a:hover { color: #7B5E3B; }

/* ── FOOTER ── */
.footer {
    background: #2B2B2B;
    color: #E9E3DA;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    max-width: 110px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(0) invert(1) opacity(1);
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(233,227,218,0.45);
    letter-spacing: 0.04em;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    color: rgba(233,227,218,0.45);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover { color: #9C7B52; }

/* ── SÜRDÜRÜLEBILIRLIK ── */
.surdurulebilirlik {
    padding: 120px 0;
    background: #F4F1EC;
    position: relative;
}

.surdurulebilirlik::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,42,30,0.12), transparent);
}

.surdurulebilirlik h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #3A2A1E;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.surdurulebilirlik-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6A6A6A;
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    font-family: 'Inter', sans-serif;
}

.report-year-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #7B5E3B;
    color: #E9E3DA;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 3px;
    width: fit-content;
    margin: 0 auto 3rem;
}

.report-year-badge i {
    font-size: 0.85rem;
    color: #9C7B52;
}

.report-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 660px;
    margin: 0 auto;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem 2.5rem;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(58,42,30,0.07);
    border: 1px solid rgba(58,42,30,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58,42,30,0.12);
    border-color: #9C7B52;
}

.report-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #7B5E3B, #9C7B52);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card-icon i {
    font-size: 1.5rem;
    color: #E9E3DA;
}

.report-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.report-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #3A2A1E;
}

.report-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #6A6A6A;
}

.report-card-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #9C7B52;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.report-card-action i { font-size: 0.95rem; }

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pdf-btn:hover { transform: translateY(-2px); }

.pdf-btn-download {
    background: #7B5E3B;
    color: #E9E3DA;
}

.pdf-btn-download:hover { background: #9C7B52; }

.pdf-btn-open {
    background: white;
    color: #6A6A6A;
    border: 1px solid rgba(58,42,30,0.14);
}

.pdf-btn-open:hover {
    border-color: #9C7B52;
    color: #3A2A1E;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%  { transform: translateX(-50%) translateY(-8px); }
    60%  { transform: translateX(-50%) translateY(-4px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(244, 241, 236, 0.98);
        backdrop-filter: blur(16px);
        padding: 1rem 0 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(58,42,30,0.1);
    }

    .nav-links.open { display: flex; }

    .nav-link {
        padding: 12px 24px;
        width: 100%;
        text-align: left;
    }

    .nav-link-highlight {
        margin: 8px 24px;
        width: calc(100% - 48px);
        text-align: center;
        border-radius: 3px;
    }

    .nav-toggle { display: block; }

    .report-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .report-card-action { flex-direction: row; }

    .pdf-btn { padding: 11px 22px; }

    .hero-bg-image {
        object-position: center center;
        min-height: 100vh;
    }

    .hero-title { font-size: 3rem; }

    .hero-logo img { max-width: 260px; }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }

    .features-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-info {
        text-align: center;
        align-items: center;
    }

    .about h2,
    .features h2,
    .contact h2,
    .gallery h2,
    .surdurulebilirlik h2 {
        font-size: 2.2rem;
    }

    .info-email {
        flex-direction: column;
        gap: 10px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-logo img { max-width: 210px; }
    .container { padding: 0 16px; }

    .feature-card,
    .contact-item { padding: 1.5rem; }
}
