/* ==========================================================================
   İSTANBUL DAVUL ZURNA — Ritim & Kutlama Tasarım Sistemi
   Bordo · Altın · Krem — Düğün & organizasyon teması (inşaat/kurumsal DEĞİL)
   ========================================================================== */

:root {
    --wine:       #8E1436;
    --wine-dark:  #5C0B22;
    --wine-deep:  #2D0614;
    --gold:       #E8B84A;
    --gold-light: #F5D78E;
    --gold-dark:  #C49A2E;
    --cream:      #FDF6EE;
    --cream-dark: #F3E6D6;
    --blush:      #FFF0E8;
    --ink:        #1A0F12;
    --muted:      #6B5A60;
    --white:      #FFFFFF;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;

    --radius:    20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow:    0 20px 50px rgba(46, 6, 20, 0.12);
    --shadow-lg: 0 30px 70px rgba(46, 6, 20, 0.18);
    --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
    --header-h:  76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease), transform 0.25s var(--ease); }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--wine-deep);
}
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--gold); color: var(--wine-deep); padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* —— Butonlar —— */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.3s var(--ease); line-height: 1;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--wine-deep);
    box-shadow: 0 8px 24px rgba(232, 184, 74, 0.45);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(232, 184, 74, 0.55);
    color: var(--wine-deep);
}
.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.55);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-wine {
    background: var(--wine);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(142, 20, 54, 0.35);
}
.btn-wine:hover { background: var(--wine-dark); color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }
.w-100 { width: 100%; }

/* Eski sınıf uyumluluğu */
.btn-gold, .btn-primary-custom {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--wine-deep); padding: 14px 28px; border-radius: 999px;
    font-weight: 600; display: inline-flex; align-items: center; gap: 8px; border: none;
    box-shadow: 0 8px 24px rgba(232,184,74,0.4);
}
.btn-gold:hover { color: var(--wine-deep); }
.btn-outline-light, .btn-outline-custom {
    background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.5);
    color: #fff; padding: 14px 28px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-light:hover, .btn-outline-custom:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-dark { background: var(--wine-deep); color: #fff; border-radius: 999px; padding: 14px 28px; }

/* —— WhatsApp FAB —— */
.wa-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 900;
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 14px 20px 14px 16px; border-radius: 999px;
    font-weight: 600; font-size: 0.92rem;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.wa-fab i { font-size: 1.5rem; }
.wa-fab:hover { color: #fff; transform: scale(1.04); }
@media (max-width: 560px) { .wa-fab-label { display: none; } .wa-fab { padding: 14px; border-radius: 50%; } }

/* —— Header —— */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    display: flex; align-items: center;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.header-glass {
    background: rgba(45, 6, 20, 0.35);
    backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-solid {
    background: rgba(253, 246, 238, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(46,6,20,0.08);
    border-bottom: 1px solid rgba(142,20,54,0.08);
}
.site-header.scrolled.header-glass {
    background: rgba(45, 6, 20, 0.92);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--wine-deep);
    display: grid; place-items: center; font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(232,184,74,0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.logo-text em { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-style: normal; opacity: 0.75; }
.has-hero .logo-text strong, .has-hero .logo-text em { color: #fff; }
.has-hero .nav-link { color: rgba(255,255,255,0.88); }
.has-hero .nav-link:hover, .has-hero .nav-link.is-active { color: var(--gold-light); }
.no-hero .logo-text strong { color: var(--wine-deep); }
.no-hero .logo-text em { color: var(--wine); }
.no-hero .nav-link { color: var(--ink); }
.no-hero .nav-link:hover, .no-hero .nav-link.is-active { color: var(--wine); }

.nav-desktop { display: flex; gap: 6px; }
.nav-link {
    font-size: 0.92rem; font-weight: 500;
    padding: 10px 14px; border-radius: 10px;
    position: relative;
}
.nav-link.is-active::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-icon {
    width: 42px; height: 42px; border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.25);
    display: grid; place-items: center; color: #fff;
}
.no-hero .btn-icon { border-color: rgba(142,20,54,0.2); color: var(--wine); }
.btn-icon:hover { background: var(--gold); color: var(--wine-deep); border-color: var(--gold); }

.nav-toggle {
    display: none; width: 44px; height: 44px; background: none; border: none;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.no-hero .nav-toggle span { background: var(--wine-deep); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 90vw); z-index: 1100;
    background: var(--wine-deep); color: #fff;
    padding: 24px; transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.nav-drawer-head .logo-text strong, .nav-drawer-head .logo-text em { color: #fff; }
.nav-close { background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.nav-drawer-links a {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
}
.nav-drawer-links a.is-active { color: var(--gold-light); }
.nav-drawer-foot { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.nav-backdrop {
    position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 992px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: flex; }
}

/* —— Bölüm ortak —— */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }
.section-wine {
    background: linear-gradient(160deg, var(--wine-deep) 0%, var(--wine) 55%, var(--wine-dark) 100%);
    color: #fff;
}
.section-wine h1, .section-wine h2, .section-wine h3, .section-wine h4 { color: #fff; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--wine); margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-wine .section-label { color: var(--gold-light); }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-desc { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.section-wine .section-desc { color: rgba(255,255,255,0.75); }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

.eyebrow, .section-subtitle, .text-gold, .gold-gradient-text {
    color: var(--wine) !important; background: none !important; -webkit-text-fill-color: unset !important;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.section-wine .eyebrow { color: var(--gold-light) !important; }

/* —— HERO —— */
.hero {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: calc(var(--header-h) + 40px) 0 60px;
    background: var(--wine-deep);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
    transform-origin: center;
    animation: heroBgZoom 18s ease-in-out infinite alternate;
}
.hero-mesh {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232,184,74,0.25), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(142,20,54,0.5), transparent 50%),
        linear-gradient(135deg, rgba(45,6,20,0.92) 0%, rgba(92,11,34,0.75) 50%, rgba(45,6,20,0.88) 100%);
}
.hero-pattern {
    position: absolute; inset: 0; z-index: 2; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8B84A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-content {
    color: #fff;
    animation: heroFadeRight 0.85s var(--ease) both;
}
.hero-visual {
    position: relative;
    animation: heroFadeLeft 0.85s var(--ease) 0.12s both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px); border-radius: 999px;
    padding: 8px 16px; font-size: 0.82rem; font-weight: 500; margin-bottom: 24px;
}
.hero-badge i { color: var(--gold-light); }
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: #fff; margin-bottom: 22px;
    font-weight: 600; line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-stat strong {
    display: block; font-family: var(--font-display); font-size: 2rem;
    color: var(--gold-light); line-height: 1;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

.hero-card {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(232,184,74,0.35);
    aspect-ratio: 4/5;
    position: relative;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-badge {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: rgba(45,6,20,0.85); backdrop-filter: blur(12px);
    border-radius: var(--radius); padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    border: 1px solid rgba(232,184,74,0.3);
}
.hero-card-badge i { font-size: 1.8rem; color: var(--gold); }
.hero-card-badge strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.1rem; }
.hero-card-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-float {
    position: absolute; top: -16px; right: -16px;
    background: var(--gold); color: var(--wine-deep);
    width: 90px; height: 90px; border-radius: 50%;
    display: grid; place-items: center; text-align: center;
    font-weight: 700; font-size: 0.75rem; line-height: 1.2;
    box-shadow: 0 12px 30px rgba(232,184,74,0.5);
    animation: heroFloat 3s ease-in-out infinite;
}
@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(-36px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeLeft {
    from { opacity: 0; transform: translateX(36px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes heroBgZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

/* —— Marquee —— */
.marquee-strip {
    background: var(--gold);
    padding: 14px 0; overflow: hidden;
    border-top: 1px solid rgba(142,20,54,0.1);
    border-bottom: 1px solid rgba(142,20,54,0.1);
}
.marquee-track {
    display: flex; gap: 48px; width: max-content;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--wine-deep); display: inline-flex; align-items: center; gap: 12px;
    flex-shrink: 0;
}
.marquee-track span::after { content: '♪'; color: var(--wine); opacity: 0.5; margin-left: 12px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* —— Hizmet kartları (bento) —— */
.services-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-tile {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid rgba(142,20,54,0.08);
    box-shadow: var(--shadow); transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-tile::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--wine), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-tile:hover { box-shadow: var(--shadow-lg); }
.service-tile:hover::before { transform: scaleX(1); }
.service-tile.featured {
    grid-column: span 2; grid-row: span 1;
    background: linear-gradient(135deg, var(--wine-deep), var(--wine));
    color: #fff; border: none;
}
.service-tile.featured h3, .service-tile.featured p { color: #fff; }
.service-tile.featured .tile-icon { background: rgba(232,184,74,0.2); color: var(--gold-light); }
.tile-img {
    margin: -32px -28px 20px; aspect-ratio: 16/9; overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--blush);
}
.tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-tile.featured .tile-img { opacity: 0.92; }
.tile-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--blush); color: var(--wine);
    display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px;
}
.service-tile h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-tile p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.service-tile.featured p { color: rgba(255,255,255,0.75); }
.tile-link { font-weight: 600; font-size: 0.9rem; color: var(--wine); display: inline-flex; align-items: center; gap: 6px; }
.service-tile.featured .tile-link { color: var(--gold-light); }

/* Eski service-card uyumu */
.service-card, .service-box {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
    border: 1px solid rgba(142,20,54,0.08); box-shadow: var(--shadow);
    transition: all 0.4s var(--ease); height: 100%; overflow: hidden;
}
.service-card:hover, .service-box:hover { box-shadow: var(--shadow-lg); }
.service-card-img {
    margin: -32px -28px 20px; aspect-ratio: 16/10; overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--blush);
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--blush); color: var(--wine);
    display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-link { color: var(--wine); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* —— Hakkımızda / Why —— */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
}
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-tag {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--gold); color: var(--wine-deep);
    padding: 12px 20px; border-radius: var(--radius); font-weight: 700;
    font-family: var(--font-display); font-size: 1.2rem;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-img, .why-visual .why-img { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
.why-list { display: grid; gap: 12px; margin-top: 24px; }
.why-item {
    display: flex; gap: 14px; padding: 16px 18px;
    background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(142,20,54,0.08);
}
.why-check {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: var(--blush); color: var(--wine);
    display: grid; place-items: center;
}
.why-item h4 { font-size: 1rem; margin-bottom: 3px; font-family: var(--font-body); font-weight: 600; }
.why-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 500; color: var(--ink);
}
.feature-list i { color: var(--wine); font-size: 1.1rem; }

/* —— İstatistik —— */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -70px; position: relative; z-index: 5; }
.stat-box {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px 22px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid rgba(142,20,54,0.06);
}
.stat-box .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--wine); line-height: 1; }
.stat-box .num em { color: var(--gold-dark); font-style: normal; }
.stat-box p { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }
.stat-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px 22px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid rgba(142,20,54,0.06);
    transition: transform 0.4s var(--ease);
}
.stat-card:hover { box-shadow: var(--shadow-lg); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-icon { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 14px; background: var(--blush); color: var(--wine); display: grid; place-items: center; font-size: 1.3rem; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--wine); }
.stat-label { color: var(--muted); font-size: 0.88rem; }

/* —— İlçeler —— */
.district-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.district-pill {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px; padding: 12px 22px;
    font-weight: 500; font-size: 0.92rem; color: rgba(255,255,255,0.9);
    transition: all 0.3s var(--ease);
}
.district-pill:hover {
    background: var(--gold); color: var(--wine-deep);
    border-color: var(--gold);
}
.ilce-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ilce-card {
    background: var(--white);
    border: 1px solid rgba(142,20,54,0.1);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: all 0.3s var(--ease);
    display: flex; flex-direction: column; gap: 4px;
    box-shadow: var(--shadow);
    color: inherit;
}
.ilce-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.ilce-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--wine-deep); }
.ilce-tag { font-size: 0.82rem; color: var(--muted); }
.ilce-link { color: var(--wine); font-weight: 600; font-size: 0.85rem; margin-top: 8px; }
.ilce-card:hover .ilce-link { color: var(--gold); }
.section-wine .ilce-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}
.section-wine .ilce-card:hover { background: rgba(232,184,74,0.15); border-color: var(--gold); }
.section-wine .ilce-name { color: #fff; }
.section-wine .ilce-tag { color: rgba(255,255,255,0.65); }
.section-wine .ilce-link { color: var(--gold-light); }
.section-wine .ilce-card:hover .ilce-link { color: var(--gold); }

/* —— Galeri —— */
.gallery-masonry { columns: 4; column-gap: 14px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 14px;
    border-radius: var(--radius); overflow: hidden;
    display: block; position: relative; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; }
.gallery-item:hover img { transform: none; }
.g-overlay {
    position: absolute; inset: 0; background: rgba(45,6,20,0.55);
    opacity: 0; transition: opacity 0.35s;
    display: grid; place-items: center; color: var(--gold-light); font-size: 1.6rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-fallback { aspect-ratio: 1; background: var(--blush); display: grid; place-items: center; color: var(--wine); font-size: 2rem; }

/* —— Yorumlar —— */
.reviews-swiper { padding-bottom: 52px; }
.review-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 30px 26px; border: 1px solid rgba(142,20,54,0.08);
    box-shadow: var(--shadow); height: 100%;
}
.review-stars { color: var(--gold-dark); margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: #444; font-size: 0.98rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--wine), var(--wine-dark));
    color: var(--gold-light); display: grid; place-items: center;
    font-weight: 700; font-family: var(--font-display); font-size: 1.1rem;
}
.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--muted); }
.review-g { margin-left: auto; color: var(--muted); }
.swiper-pagination-bullet-active { background: var(--wine) !important; }

/* —— Blog —— */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(142,20,54,0.08); box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-thumb { aspect-ratio: 16/10; background: var(--wine-deep); position: relative; display: block; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(232,184,74,0.4); font-size: 2.4rem; }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--wine-deep);
    padding: 5px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.blog-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.blog-body h3 a:hover { color: var(--wine); }
.blog-body p { color: var(--muted); flex: 1; font-size: 0.93rem; margin-bottom: 14px; }

/* —— SSS —— */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(142,20,54,0.08); margin-bottom: 12px; overflow: hidden;
}
.faq-item.open { border-color: var(--wine); box-shadow: var(--shadow); }
.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 22px; font-weight: 600; font-size: 1rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    color: var(--wine-deep); font-family: var(--font-body);
}
.faq-ico {
    width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
    background: var(--blush); color: var(--wine);
    display: grid; place-items: center; transition: transform 0.3s;
}
.faq-item.open .faq-ico { background: var(--wine); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }

/* —— CTA —— */
.cta-banner {
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
    border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 64px);
    text-align: center; color: #fff; position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(232,184,74,0.2), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 28px; }
.cta-section, .cta-band {
    background: linear-gradient(135deg, var(--wine-deep), var(--wine));
    padding: 80px 0; text-align: center; color: #fff;
}
.cta-section h2, .cta-band h2 { color: #fff; }
.cta-subtitle { color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem; margin-bottom: 12px; }

/* —— İletişim —— */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid rgba(142,20,54,0.08); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 16px; }
.form-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; display: block; color: var(--wine-deep); }
.form-control, .form-select {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid rgba(142,20,54,0.15); border-radius: 12px;
    font-family: var(--font-body); font-size: 0.95rem;
    background: var(--cream); transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus, .form-select:focus {
    outline: none; border-color: var(--wine);
    box-shadow: 0 0 0 4px rgba(142,20,54,0.1); background: #fff;
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-success {
    display: none; padding: 14px; border-radius: 12px; margin-bottom: 16px;
    background: rgba(37,211,102,0.12); color: #1a7a43; border: 1px solid rgba(37,211,102,0.3);
}
.form-success.show { display: block; }
.contact-info-list { display: grid; gap: 12px; margin-bottom: 20px; }
.contact-info-item {
    display: flex; gap: 14px; align-items: center;
    padding: 16px; background: var(--blush); border-radius: var(--radius);
    transition: background 0.3s; color: inherit;
}
.contact-info-item:hover { background: var(--cream-dark); }
.ci-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: var(--wine); color: var(--gold-light);
    display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info-item span { font-size: 0.82rem; color: var(--muted); display: block; }
.contact-info-item strong { color: var(--wine-deep); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 280px; }
.map-embed iframe { width: 100%; min-height: 280px; border: 0; }

/* —— Sayfa başlığı (iç sayfalar) —— */
.page-hero {
    background: linear-gradient(160deg, var(--wine-deep), var(--wine));
    color: #fff; padding: calc(var(--header-h) + 50px) 0 60px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 90% 0%, rgba(232,184,74,0.15), transparent 55%);
}
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--gold-light) !important; }

.breadcrumb-nav { background: var(--wine-deep); padding: 12px 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.86rem; }
.breadcrumb-list li { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.breadcrumb-list li:not(:last-child)::after { content: "/"; opacity: 0.4; }
.breadcrumb-list a { color: rgba(255,255,255,0.75); }
.breadcrumb-list a:hover { color: var(--gold-light); }
.breadcrumb-list .active { color: var(--gold-light); }

.section-pad { padding: clamp(56px, 8vw, 100px) 0; }
.section-gray, .section-blush { background: var(--blush); }
.section-dark, .section-wine { background: linear-gradient(160deg, var(--wine-deep), var(--wine)); color: #fff; }
.section-dark h2, .section-wine h2 { color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-sub { color: var(--muted); }

/* —— Prose / içerik —— */
.content-featured-img {
    margin: 0 0 28px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.content-featured-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.prose { font-size: 1.04rem; line-height: 1.75; color: #3a2a30; }
.prose h2 { font-size: 1.75rem; margin: 1.4em 0 0.5em; }
.prose ul li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: '♪'; position: absolute; left: 0; color: var(--wine); }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 26px; border: 1px solid rgba(142,20,54,0.08);
    position: sticky; top: 100px; box-shadow: var(--shadow);
}
.sidebar-card.dark { background: linear-gradient(160deg, var(--wine-deep), var(--wine)); color: #fff; }
.sidebar-card.dark h3 { color: #fff; }
.sidebar-list li { padding: 9px 0; border-bottom: 1px solid rgba(142,20,54,0.08); }
.sidebar-list a:hover { color: var(--wine); }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.region-tag {
    background: var(--white); border: 1px solid rgba(142,20,54,0.12);
    border-radius: 999px; padding: 8px 16px; font-size: 0.88rem;
}
.region-tag:hover { border-color: var(--wine); color: var(--wine); }

/* —— Footer —— */
.site-footer {
    background: var(--wine-deep); color: rgba(255,255,255,0.75);
    padding: 0 0 28px; position: relative;
}
.footer-wave { color: var(--cream); line-height: 0; margin-top: -1px; }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding: 48px 0 36px; }
.footer-brand p { margin: 18px 0 22px; max-width: 320px; font-size: 0.93rem; line-height: 1.7; }
.logo-light .logo-text strong, .logo-light .logo-text em { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.08); display: grid; place-items: center;
    color: rgba(255,255,255,0.85); font-size: 1.05rem;
}
.footer-social a:hover { background: var(--gold); color: var(--wine-deep); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.footer-links-grid h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.footer-links-grid ul li { margin-bottom: 9px; }
.footer-links-grid a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links-grid a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.45); margin: 0; }

/* Eski footer sınıfları */
.footer, .site-footer { }
.footer-title { color: #fff; font-size: 1.1rem; margin-bottom: 14px; }
.footer-text { color: rgba(255,255,255,0.7); }
.footer-links a { color: rgba(255,255,255,0.65); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; }
.more-link { color: var(--gold-light) !important; font-weight: 600; }

/* —— Responsive —— */
@media (max-width: 992px) {
    .hero-grid, .about-split, .why-grid, .contact-grid, .content-layout { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .services-bento { grid-template-columns: 1fr 1fr; }
    .service-tile.featured { grid-column: span 2; }
    .stats-row, .stats-grid { grid-template-columns: repeat(2,1fr); margin-top: 0; }
    .blog-grid, .services-grid { grid-template-columns: repeat(2,1fr); }
    .ilce-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-masonry { columns: 2; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .services-bento, .blog-grid, .services-grid, .ilce-grid { grid-template-columns: 1fr; }
    .service-tile.featured { grid-column: span 1; }
    .gallery-masonry { columns: 1; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, .marquee-track, .hero-bg img, .hero-content, .hero-visual, .hero-float {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
