/* ═══════════════════════════════════════════════════════════════
   main.css – The Selection Butik Otel
   Tüm sayfalarda ortak kullanılan global stiller.
   Sayfa: index + hakkimizda + odalar + oda-detay + hizmetler + hizmet-detay
════════════════════════════════════════════════════════════════ */

/* ─── CSS Değişkenleri ─────────────────────────────────────── */
:root {
    --cream:         #fafaf8;
    --warm-white:    #f5f0eb;
    --gold:          #c9a84c;
    --gold-light:    #e8d5a3;
    --dark:          #1c1c1c;
    --text:          #333333;
    --nav-scroll-bg: rgba(28,28,28,0.95);
    --transition:    all 0.35s ease;
    --shadow-sm:     0 4px 20px rgba(0,0,0,0.08);
    --shadow-md:     0 8px 40px rgba(0,0,0,0.14);
}

/* ─── Temel / Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

img { max-width: 100%; }

/* ─── Utility ──────────────────────────────────────────────── */
.text-gold      { color: var(--gold) !important; }
.bg-dark-custom { background: var(--dark) !important; }
.bg-cream       { background: var(--cream) !important; }
.bg-warm-white  { background: var(--warm-white) !important; }

.gold-line {
    display: block;
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}
.gold-line-left {
    display: block;
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 12px 0 0;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    color: var(--dark);
}
.section-title-light { color: #fff; }

/* ─── Divider ──────────────────────────────────────────────── */
.divider-gold {
    width: 50px; height: 2px;
    background: var(--gold);
    margin: 0 auto;
}
.divider-gold-left {
    width: 50px; height: 2px;
    background: var(--gold);
}

/* ─── Butonlar ─────────────────────────────────────────────── */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 0;
    transition: var(--transition);
}
.btn-gold:hover {
    background: #a8842a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 0;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 0;
    transition: var(--transition);
}
.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* ─── Navbar ───────────────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1050;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
    padding: 1.25rem 0;
    background: transparent;
}
#mainNav.scrolled {
    background: var(--nav-scroll-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar-brand img {
    height: 52px;
    transition: height 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
#mainNav.scrolled .navbar-brand img { height: 42px; }

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9) !important;
    padding: 0.4rem 0.85rem !important;
    transition: color 0.25s;
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.navbar-nav .nav-dropdown {
    position: relative;
}

.navbar-nav .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.navbar-nav .nav-dropdown-toggle i {
    font-size: 0.62rem;
    transition: transform 0.22s ease;
}

.navbar-nav .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    z-index: 1100;
    min-width: 210px;
    padding: 0.65rem 0;
    margin: 0;
    list-style: none;
    background: rgba(28,28,28,0.98);
    border: 1px solid rgba(201,168,76,0.26);
    box-shadow: 0 18px 48px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.navbar-nav .nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar-nav .nav-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.navbar-nav .nav-dropdown.is-open > .nav-dropdown-menu,
.navbar-nav .nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.navbar-nav .nav-dropdown.is-open > .nav-dropdown-toggle i,
.navbar-nav .nav-dropdown:hover > .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.lang-select a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}
.lang-select a:hover,
.lang-select a.active { color: var(--gold); }
.lang-select span { color: rgba(255,255,255,0.3); }

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: rgba(28,28,28,0.97);
        padding: 1rem 1.5rem 1.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(201,168,76,0.2);
    }
    .navbar-nav .nav-dropdown {
        width: 100%;
    }
    .navbar-nav .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    .navbar-nav .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        padding: 0.2rem 0 0.5rem 0.8rem;
        margin: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    .navbar-nav .nav-dropdown:hover > .nav-dropdown-menu {
        display: none;
        transform: none;
    }
    .navbar-nav .nav-dropdown.is-open > .nav-dropdown-menu {
        display: block;
        transform: none;
    }
    .navbar-nav .nav-dropdown-menu a {
        padding: 0.45rem 0.85rem;
        white-space: normal;
    }
    .lang-select { justify-content: flex-start; margin-top: 0.5rem; }
}

/* ─── Navbar – Alt Sayfalar (scrolled başlangıç durumu) ─────── */
#mainNav.nav-solid {
    background: var(--nav-scroll-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
#mainNav.nav-solid .navbar-brand img { height: 42px; }

/* ─── Page Hero (Alt Sayfa Banner – Tam Genişlik) ───────────── */
.page-hero {
    position: relative;
    min-height: 420px;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 60px;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    letter-spacing: 0.04em;
    max-width: 560px;
}

/* ─── Page Hero SM (Daha Kısa – Detay Sayfaları) ───────────── */
.page-hero-sm {
    position: relative;
    min-height: 300px;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 50px;
}
.page-hero-sm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    z-index: 0;
}
.page-hero-sm > .container { position: relative; z-index: 1; }

/* ─── Breadcrumb ───────────────────────────────────────────── */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.85rem;
}
.page-breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb i { font-size: 0.5rem; color: var(--gold); }

/* ─── Page CTA (Alt Sayfalar için Genel CTA) ───────────────── */
.page-cta {
    padding: 90px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-cta::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,168,76,0.2);
    pointer-events: none;
}
.page-cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.page-cta > .container { position: relative; z-index: 1; }

.cta-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.cta-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.cta-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ─── Oda Kartları (index.php + odalar.php) ────────────────── */
.oda-kart {
    position: relative;
    overflow: hidden;
    height: 420px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.oda-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.oda-kart img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.oda-kart:hover img { transform: scale(1.06); }

.oda-kart-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
}
.oda-kart-badge {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
}
.oda-kart-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 0.3rem;
}
.oda-kart-kapasite {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.85rem;
    letter-spacing: 0.05em;
}
.oda-ozellik {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-right: 0.75rem;
    margin-bottom: 1rem;
}
.oda-ozellik i { color: var(--gold-light); }
.oda-kart-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.45rem 1rem;
    transition: var(--transition);
}
.oda-kart-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ─── Neden Biz Kartları (index.php + hakkimizda.php) ─────── */
.neden-kart {
    background: #fff;
    padding: 2rem 1.6rem;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: var(--transition);
    height: 100%;
}
.neden-kart:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}
.neden-kart-icon {
    width: 60px; height: 60px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}
.neden-kart-icon i { color: var(--gold); font-size: 1.4rem; }
.neden-kart h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.neden-kart p { font-size: 0.87rem; color: #666; line-height: 1.75; margin: 0; }

/* ─── Hizmet Sayfa Kartları (hizmetler.php – ikon bazlı) ───── */
.hizmet-page-kart {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,0.18);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
.hizmet-page-kart:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}
.hizmet-page-kart-icon {
    width: 72px; height: 72px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 0 auto 1.4rem;
}
.hizmet-page-kart-icon i { color: var(--gold); font-size: 1.7rem; }
.hizmet-page-kart h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.hizmet-page-kart p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}
.hizmet-page-kart .hizmet-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
}
.hizmet-page-kart .hizmet-link:hover { color: #a8842a; gap: 0.7rem; }

/* ─── Avantaj Kartları (hizmet-detay.php) ──────────────────── */
.avantaj-kart {
    background: #fff;
    padding: 2rem 1.5rem;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.avantaj-kart i {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
}
.avantaj-kart h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.avantaj-kart p { font-size: 0.87rem; color: #666; line-height: 1.75; margin: 0; }

/* ─── Süreç Adımları (hizmet-detay.php) ───────────────────── */
.surec-adim {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.surec-adim:last-child { border-bottom: none; }
.surec-no {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 2px;
}
.surec-adim-icerik h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.surec-adim-icerik p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ─── Footer ───────────────────────────────────────────────── */
#footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
#footer h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}
#footer .footer-desc {
    font-size: 0.86rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-top: 0.8rem;
}
#footer ul { list-style: none; padding: 0; margin: 0; }
#footer ul li { margin-bottom: 0.55rem; }
#footer ul li a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
#footer ul li a:hover { color: var(--gold); }
#footer ul li a i { font-size: 0.65rem; color: var(--gold); }
#footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.8rem;
}
#footer .footer-contact-item i { color: var(--gold); margin-top: 3px; min-width: 14px; }
#footer .footer-contact-item a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}
#footer .footer-contact-item a:hover { color: var(--gold); }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 0.4rem;
}
.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.footer-logo img { height: 50px; filter: brightness(0) invert(1) opacity(0.85); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.2rem 0;
    margin-top: 3rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── WhatsApp FAB ─────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,0.5);
    z-index: 2000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.65);
    color: #fff;
}
.whatsapp-fab::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.35);
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ─── Scroll to Top ────────────────────────────────────────── */
#scrollTop {
    position: fixed;
    bottom: 98px; right: 28px;
    width: 42px; height: 42px;
    background: rgba(28,28,28,0.7);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   GENEL SAYFA FORM STİLİ — .sayfa-form
   iletisim.php, rezervasyon.php
════════════════════════════════════════════════════════════════ */
.sayfa-form .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.sayfa-form .form-control,
.sayfa-form .form-select {
    background: #fff;
    border: 1px solid #e0d9cf;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    padding: 0.7rem 1rem;
    transition: var(--transition);
}
.sayfa-form .form-control:focus,
.sayfa-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    background: #fff;
}
.sayfa-form textarea.form-control { min-height: 140px; resize: vertical; }
.sayfa-form input[type="number"]::-webkit-inner-spin-button,
.sayfa-form input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ═══════════════════════════════════════════════════════════════
   İLETİŞİM KART — .iletisim-kart
════════════════════════════════════════════════════════════════ */
.iletisim-kart {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
    background: #fff;
    border: 1px solid #f0ebe3;
    border-left: 3px solid var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.iletisim-kart:last-child { margin-bottom: 0; }
.iletisim-kart:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.iletisim-kart-icon {
    width: 42px;
    height: 42px;
    background: rgba(201,168,76,0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iletisim-kart-icon i { color: var(--gold); font-size: 1rem; }
.iletisim-kart-icerik h6 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.iletisim-kart-icerik p,
.iletisim-kart-icerik a {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}
.iletisim-kart-icerik a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HARİTA PLACEHOLDER — .harita-placeholder
════════════════════════════════════════════════════════════════ */
.harita-placeholder {
    width: 100%;
    min-height: 420px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    gap: 0.8rem;
    border: 1px solid rgba(201,168,76,0.2);
}
.harita-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════════
   GÜVEN KARTI — .guven-kart (rezervasyon yan panel)
════════════════════════════════════════════════════════════════ */
.guven-kart {
    padding: 1.3rem 1.4rem;
    background: #fff;
    border: 1px solid #f0ebe3;
    border-left: 3px solid var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.guven-kart:last-child { margin-bottom: 0; }
.guven-kart-icon { color: var(--gold); font-size: 1.4rem; margin-bottom: 0.6rem; }
.guven-kart h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.guven-kart p { font-size: 0.83rem; color: #777; margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   SSS ACCORDION — Bootstrap override
════════════════════════════════════════════════════════════════ */
.sss-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gold-light);
    background: transparent;
}
.sss-accordion .accordion-item:first-child { border-top: 1px solid var(--gold-light); }
.sss-accordion .accordion-button {
    background: transparent;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1.3rem 0;
    box-shadow: none;
}
.sss-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--gold);
    box-shadow: none;
}
.sss-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23c9a84c' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.sss-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23c9a84c' fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}
.sss-accordion .accordion-body {
    padding: 0 0 1.3rem 0;
    font-size: 0.93rem;
    color: #666;
    line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════
   SAYFA İÇERİK ALANI TİPOGRAFİSİ — .sayfa-icerik-alani
   sayfa.php, blog-oku.php
════════════════════════════════════════════════════════════════ */
.sayfa-icerik-alani h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.8rem;
}
.sayfa-icerik-alani h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.6rem 0 0.6rem;
}
.sayfa-icerik-alani p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}
.sayfa-icerik-alani ul,
.sayfa-icerik-alani ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}
.sayfa-icerik-alani ul li::marker { color: var(--gold); }
.sayfa-icerik-alani ol li { margin-bottom: 0.4rem; }
.sayfa-icerik-alani blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--warm-white);
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}
.sayfa-icerik-alani img { max-width: 100%; height: auto; display: block; margin: 1.5rem 0; }
.sayfa-icerik-alani a { color: var(--gold); text-decoration: underline; }
.sayfa-icerik-alani a:hover { color: #a8842a; }

/* ═══════════════════════════════════════════════════════════════
   BLOG KART — .blog-kart
   blog.php, blog-oku.php (benzer yazılar)
════════════════════════════════════════════════════════════════ */
.blog-kart {
    background: #fff;
    border: 1px solid #f0ebe3;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-kart:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-kart-kapak {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-kart:hover .blog-kart-kapak { transform: scale(1.04); }
.blog-kart-kapak-wrap { overflow: hidden; }
.blog-kart-icerik {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-kart-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
.blog-kart-kategori {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    padding: 0.2rem 0.6rem;
}
.blog-kart-tarih {
    font-size: 0.78rem;
    color: #999;
}
.blog-kart-baslik {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-kart-excerpt {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.blog-kart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
    margin-top: auto;
}
.blog-kart-link:hover { color: #a8842a; gap: 0.65rem; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .page-hero  { min-height: 320px; padding-top: 80px; }
    .page-hero-sm { min-height: 240px; padding-top: 80px; }
    .page-cta { padding: 60px 0; }
    .hizmet-page-kart { padding: 2rem 1.5rem; }
    .harita-placeholder { min-height: 280px; }
}
@media (max-width: 575.98px) {
    .page-hero-title { font-size: 1.9rem; }
}
