:root {
    --brand: #F5F2EE;
    --brand-dark: #FFFFFF;
    --brand-soft: #A3A3A3;
    --brand-light: #2A2A2A;
    --accent: #B8956A;
    --bg-1: #0F0F0F;
    --bg-2: #141414;
    --bg-3: #1A1A1A;
    --text-dark: #F5F2EE;
    --text-soft: #A3A3A3;
    --text-muted: #737373;
    --border: rgba(245,242,238,0.10);
    --border-hover: rgba(245,242,238,0.22);
    --card: rgba(26,26,26,0.92);
    --card-solid: #1A1A1A;
    --shadow: 0 8px 32px rgba(0,0,0,0.35);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.50);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-1);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* PAGE TRANSITION */
.page-transition {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-1);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }
.page-transition .loader {
    width: 48px; height: 48px;
    border: 3px solid var(--brand-light);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* NAVBAR */
nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(15,15,15,0.88);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 22px; letter-spacing: 3px; color: var(--text-dark); font-weight: 600; text-transform: uppercase; }
.logo-sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft); margin-top: 3px; }

.nav-links { display: flex; gap: 36px; list-style: none; font-size: 13px; font-weight: 500; }
.nav-links a { color: var(--text-soft); transition: color 0.3s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--brand); border-radius: 2px; transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right .btn-primary {
    position: fixed;
    right: 50px;
    top: 16px;
    z-index: 1001;
}

/* MOBILE MENU */
.menu-toggle { display: none; font-size: 22px; color: var(--text-dark); cursor: pointer; z-index: 1002; }
.mobile-menu {
    position: fixed; inset: 0; z-index: 1001;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(30px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text-dark);
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .close-menu {
    position: absolute; top: 24px; right: 24px;
    font-size: 28px; color: var(--text-dark); cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 14px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px;
    transition: all 0.3s ease; cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--brand); color: var(--bg-1); box-shadow: 0 4px 16px rgba(245,242,238,0.15); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,242,238,0.20); }
.btn-outline { background: rgba(255,255,255,0.05); color: var(--text-dark); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: rgba(255,255,255,0.08); }

/* HERO */
.hero { padding-top: 140px; padding-bottom: 80px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-1) 100%); }
.hero::before {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,149,106,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,242,238,0.06); border: 1px solid var(--border);
    padding: 7px 14px; border-radius: 100px;
    font-size: 11px; color: var(--text-soft); margin-bottom: 20px;
    font-weight: 500; letter-spacing: 0.5px; backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 12px; color: var(--accent); }
.hero h1 { font-size: 48px; line-height: 1.12; margin-bottom: 18px; color: var(--text-dark); font-weight: 500; }
.hero-desc { color: var(--text-soft); font-size: 16px; max-width: 440px; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-features { display: flex; gap: 28px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-soft); font-weight: 500; }
.feature-item i { color: var(--accent); font-size: 15px; width: 18px; text-align: center; }
.hero-image-wrapper {
    position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover);
}
.hero-image-wrapper img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-image-wrapper::after {
    content: ''; position: absolute; inset: 0; border-radius: 24px; border: 1px solid var(--border); pointer-events: none;
}

/* STATS */
.stats-section { padding: 60px 0 40px; background: var(--bg-1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: var(--card); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px 20px; text-align: center;
    transition: all 0.35s ease; box-shadow: var(--shadow);
}
.stat-card:hover {
    transform: translateY(-4px); border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}
.stat-number {
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600;
    color: var(--text-dark); line-height: 1; margin-bottom: 8px;
}
.stat-number span { font-size: 18px; font-weight: 400; color: var(--text-soft); }
.stat-label { font-size: 13px; color: var(--text-soft); font-weight: 500; }

/* MARQUEE */
.marquee-section {
    background: var(--bg-3); color: var(--text-soft); padding: 18px 0; overflow: hidden; position: relative;
}
.marquee-track {
    display: flex; gap: 56px; width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
    display: flex; align-items: center; gap: 56px; opacity: 0.85;
}
.marquee-item::after {
    content: '✦'; font-size: 10px; opacity: 0.5; color: var(--accent);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 34px; margin-bottom: 12px; color: var(--text-dark); }
.section-header p { color: var(--text-soft); font-size: 15px; max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* SERVICES */
.services { padding: 80px 0; background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-minimal {
    background: var(--card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 22px; padding: 28px;
    transition: all 0.35s ease; display: flex; flex-direction: column; box-shadow: var(--shadow);
    opacity: 1; visibility: visible; transform: none;
}
.service-minimal:hover {
    transform: translateY(-5px); border-color: var(--border-hover);
    box-shadow: var(--shadow-hover); background: var(--card-solid);
}
.service-minimal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.service-minimal-icon {
    width: 44px; height: 44px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,242,238,0.08) 0%, rgba(163,163,163,0.05) 100%);
    border: 1px solid rgba(245,242,238,0.12); display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 18px; flex-shrink: 0;
}
.service-minimal h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-dark); }
.service-minimal p { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 18px; flex-grow: 1; }
.service-minimal-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
}
.service-minimal-link {
    font-size: 12px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 5px;
    transition: gap 0.3s; text-transform: uppercase; letter-spacing: 0.5px;
}
.service-minimal-link:hover { gap: 8px; }

/* BEFORE / AFTER */
.before-after { padding: 80px 0; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease; position: relative;
    cursor: pointer;
}
.ba-card img {
    width: 100%; height: auto; object-fit: contain; display: block;
    transition: transform 0.6s ease;
}
.ba-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-hover);
}
.ba-card:hover img {
    transform: scale(1.06);
}
.ba-view-all { text-align: center; margin-top: 48px; }

/* PAGE HEADER */
.page-header {
    padding-top: 140px; padding-bottom: 50px; text-align: center;
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,149,106,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 { font-size: 36px; margin-bottom: 10px; position: relative; z-index: 1; }
.page-header p { color: var(--text-soft); font-size: 15px; max-width: 460px; margin: 0 auto; line-height: 1.6; position: relative; z-index: 1; }

/* ABOUT */
.about-section { padding: 60px 0 80px; background: var(--bg-1); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow); }
.about-grid h2 { font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.about-grid p { color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-value {
    background: var(--card); backdrop-filter: blur(12px); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 20px; transition: all 0.3s; box-shadow: var(--shadow);
}
.about-value:hover { border-color: var(--border-hover); background: var(--card-solid); transform: translateY(-3px); }
.about-value i { font-size: 20px; color: var(--accent); margin-bottom: 10px; display: block; }
.about-value h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.about-value p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 0; }

/* CONTACT */
.contact-section { padding: 60px 0 80px; background: var(--bg-1); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info-card {
    background: linear-gradient(160deg, rgba(26,26,26,0.8) 0%, rgba(20,20,20,0.8) 100%);
    backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow); position: sticky; top: 90px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-info-item i { font-size: 18px; color: var(--accent); margin-top: 2px; width: 20px; }
.contact-info-item strong { display: block; font-size: 13px; color: var(--text-dark); margin-bottom: 2px; }
.contact-info-item span { font-size: 14px; color: var(--text-soft); line-height: 1.5; }

.form-card {
    background: var(--card); backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow);
}
.form-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.form-header-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--brand-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 22px; }
.form-header h2 { font-size: 22px; margin-bottom: 3px; }
.form-header p { font-size: 13px; color: var(--text-soft); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.form-group label span { color: #dc2626; }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 13px; pointer-events: none; }
.form-control { width: 100%; padding: 12px 14px 12px 40px; border: 1px solid var(--border); border-radius: 12px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text-dark); background: rgba(255,255,255,0.04); transition: all 0.3s; outline: none; }
.form-control:focus { border-color: var(--brand); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(245,242,238,0.06); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 90px; resize: vertical; padding-left: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { width: 100%; padding: 14px; font-size: 13px; margin-top: 6px; justify-content: center; }

/* FOOTER */
.footer-dark {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    color: var(--text-soft); padding: 60px 0 0; border-top: 1px solid var(--border);
}
.footer-dark-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 48px; }
.footer-dark-col h4 {
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-dark); margin-bottom: 20px;
}
.footer-dark-col p { font-size: 13px; line-height: 1.8; color: var(--text-soft); margin-bottom: 16px; }
.footer-dark-col a { display: block; color: var(--text-soft); font-size: 13px; margin-bottom: 10px; transition: color 0.3s; }
.footer-dark-col a:hover { color: var(--brand); }
.footer-dark-logo { font-family: 'Playfair Display', serif; font-size: 22px; letter-spacing: 3px; color: var(--text-dark); margin-bottom: 6px; display: block; font-weight: 600; text-transform: uppercase; }
.footer-dark-sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; display: block; }
.footer-dark-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-dark-social a {
    width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-soft); transition: all 0.3s; font-size: 13px; margin-bottom: 0; background: rgba(255,255,255,0.04);
}
.footer-dark-social a:hover { background: var(--brand); border-color: var(--brand); color: var(--bg-1); }
.footer-dark-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--text-soft); line-height: 1.6; }
.footer-dark-contact-item i { color: var(--accent); font-size: 14px; margin-top: 2px; width: 16px; }
.footer-dark-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-muted);
}

/* BACK TO TOP */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--brand); color: var(--bg-1); border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; z-index: 998;
    box-shadow: 0 4px 16px rgba(245,242,238,0.15);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed; bottom: 28px; left: 28px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 997;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.3s;
}
.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* BREADCRUMB */
.breadcrumb-container { padding-bottom: 20px; text-align: left; }
.breadcrumb-list {
    display: flex; gap: 8px; align-items: center;
    font-size: 12px; color: var(--text-muted); list-style: none;
}
.breadcrumb-list a {
    color: var(--text-soft); transition: color 0.3s;
}
.breadcrumb-list a:hover { color: var(--brand); }
.breadcrumb-list li:not(:last-child)::after {
    content: '/'; margin-left: 8px; color: var(--border-hover);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(15,15,15,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border); padding: 16px 0;
    z-index: 9998; box-shadow: 0 -4px 20px rgba(0,0,0,0.30);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.active { transform: translateY(0); }
.cookie-container {
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: var(--text-soft); }
.cookie-btn { padding: 8px 20px; font-size: 12px; }

/* PARALLAX */
.parallax-wrapper { overflow: hidden; }
.parallax-img {
    width: 100%; height: 420px; object-fit: cover; display: block;
    will-change: transform;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* SERVICE CARD IMAGE */
.service-image {
    width: 100%; height: 180px; border-radius: 16px;
    overflow: hidden; margin-bottom: 16px;
    position: relative;
}
.service-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.96);
}
.service-minimal:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* GALLERY */
.gallery-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); aspect-ratio: 4/3; cursor: default;
}
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: grayscale(0.6) blur(1px) brightness(0.75);
    transition: filter 0.4s ease;
}
.gallery-card:hover img {
    filter: grayscale(0.3) blur(0.5px) brightness(0.85);
}
.gallery-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(15,15,15,0.30); border-radius: var(--radius-lg);
    pointer-events: none;
}
.gallery-overlay span {
    color: #fff; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    text-align: center; padding: 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* MEMNUNIYET */
.memnuniyet-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%); border-top: 1px solid var(--border); }
.memnuniyet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.memnuniyet-card {
    background: var(--card); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 32px; box-shadow: var(--shadow);
    transition: all 0.35s ease; text-align: center; position: relative; overflow: hidden;
}
.memnuniyet-card:hover {
    transform: translateY(-6px); border-color: var(--border-hover);
    box-shadow: var(--shadow-hover); background: var(--card-solid);
}
.memnuniyet-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(184,149,106,0.12) 0%, rgba(184,149,106,0.06) 100%);
    border: 1px solid rgba(184,149,106,0.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 24px; margin: 0 auto 20px;
}
.memnuniyet-card h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.memnuniyet-card p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* REVIEWS */
.reviews-section { padding: 80px 0; background: var(--bg-1); border-top: 1px solid var(--border); }
.reviews-carousel-wrapper { position: relative; }
.reviews-carousel { overflow: hidden; }
.review-slide {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    opacity: 0; transform: translateX(40px); pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute; width: 100%; top: 0; left: 0;
}
.review-slide.active {
    opacity: 1; transform: translateX(0); pointer-events: all;
    position: relative;
}
.review-cardd {
    background: var(--card); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow); transition: all 0.3s;
}
.review-cardd:hover { border-color: var(--border-hover); background: var(--card-solid); transform: translateY(-3px); }
.review-stars { color: var(--accent); margin-bottom: 14px; font-size: 12px; letter-spacing: 1.5px; }
.review-text { font-size: 14px; color: var(--text-soft); line-height: 1.7; flex-grow: 1; margin-bottom: 20px; font-style: italic; font-family: 'Playfair Display', serif; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand-light) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--bg-1); font-weight: 600; font-size: 12px; font-family: 'Inter', sans-serif;
}
.review-author-name { font-weight: 600; font-size: 13px; color: var(--text-dark); }
.review-author-title { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.reviews-next {
    position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--card); border: 1px solid var(--border);
    color: var(--text-soft); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: all 0.3s; z-index: 10;
}
.reviews-next:hover { background: var(--brand); color: var(--bg-1); border-color: var(--brand); }

/* MAP */
.map-section { padding: 0 0 80px; background: var(--bg-1); border-top: 1px solid var(--border); }
.map-container {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.map-iframe {
    width: 100%; height: 420px; border: 0; display: block;
    filter: grayscale(0.3) brightness(0.7);
}

/* NOISE TEXTURE */
body::after {
    content: ''; position: fixed; inset: 0; z-index: 9998;
    pointer-events: none; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 200px 200px;
}

/* HEADER SHRINK */
nav.shrink { height: 60px; background: rgba(15,15,15,0.96); }
nav.shrink .nav-container { height: 60px; }
nav.shrink .logo-main { font-size: 18px; }
nav.shrink .logo-sub { font-size: 8px; }

/* BUTTON RIPPLE */
.btn { position: relative; overflow: hidden; }
.ripple {
    position: absolute; border-radius: 50%; background: rgba(245,242,238,0.25);
    transform: scale(0); animation: ripple-anim 0.6s linear; pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* PROCESS */
.process-section { padding: 80px 0; background: var(--bg-1); border-top: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
    content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 1px;
    background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-number {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 28px; color: var(--accent);
    margin: 0 auto 20px; box-shadow: var(--shadow);
}
.process-step h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* FAQ */
.faq-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%); border-top: 1px solid var(--border); }
.faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--card); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text-dark);
}
.faq-question i { color: var(--accent); font-size: 14px; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 300px; padding: 0 24px 20px;
}
.faq-answer p { font-size: 13.5px; color: var(--text-soft); line-height: 1.7; }

/* FEATURED REVIEW */
.featured-review { padding: 100px 0; background: var(--bg-1); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.featured-review::before {
    content: '“'; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    font-family: 'Playfair Display', serif; font-size: 200px; color: rgba(245,242,238,0.03); line-height: 1; pointer-events: none;
}
.featured-review-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.featured-quote { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1.5; color: var(--text-dark); margin-bottom: 40px; font-style: italic; }
.featured-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.featured-author-img {
    width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--border); box-shadow: var(--shadow);
}
.featured-author-info { text-align: left; }
.featured-author-name { font-weight: 600; font-size: 16px; color: var(--text-dark); }
.featured-author-title { font-size: 13px; color: var(--text-soft); }

/* LIGHTBOX */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid var(--border);
    color: var(--text-dark); font-size: 20px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.lightbox-close:hover { background: var(--brand); color: var(--bg-1); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrapper img { height: 340px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .footer-dark-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 38px; }
    .page-header h1 { font-size: 28px; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .map-iframe { height: 320px; }
    .memnuniyet-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .featured-quote { font-size: 22px; }
    .ba-slider-container { height: 260px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero { padding-top: 100px; padding-bottom: 50px; }
    .hero h1 { font-size: 30px; }
    .hero-features { flex-direction: column; gap: 10px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .footer-dark-grid { grid-template-columns: 1fr; }
    .footer-dark-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .page-header { padding-top: 110px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 32px 24px; }
    .contact-info-card { padding: 32px 24px; }
    .marquee-item { font-size: 12px; }
    .about-values { grid-template-columns: 1fr; }
    .about-grid img { height: 280px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .map-iframe { height: 260px; }
    .stats-grid { grid-template-columns: 1fr; }
    .review-slide { grid-template-columns: 1fr; }
    .reviews-next { right: 0; }
    .process-grid { grid-template-columns: 1fr; }
    .featured-quote { font-size: 20px; }
}
