/*
Theme Name: Bakırköy Home
Theme URI: https://bakirkoysaatlikkiralik.com.tr
Author: Custom Development
Author URI: https://bakirkoysaatlikkiralik.com.tr
Description: Ultra-fast, mobile-first custom theme for Bakırköy Saatlik Kiralık - Homepage only.
Version: 1.1.8
Text Domain: bakirkoy-home
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --secondary: #10b981;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --container: 1320px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: var(--spacing-sm); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover { opacity: 0.8; }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Images - Prevent CLS */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #1d4ed8;
    opacity: 1;
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #059669;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.header-shell {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    gap: 24px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

@supports not (overflow: clip) {
    .header-inner {
        overflow-x: hidden;
    }
}

.header-inner > * {
    flex-shrink: 0;
}

/* Brand/Logo */
.brand {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 24px;
}

.brand:hover {
    opacity: 0.8;
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.main-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 22px 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: #111;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    padding: 0.5rem 0;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.nav-menu a:visited {
    color: #111;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.nav-menu .current-menu-item > a,
.nav-menu .current-menu-item > a:visited {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

/* Alt menü (dropdown) – Odalarımız üzerine gelince aşağı açılır */
.nav-menu li.menu-item-has-children {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.nav-menu li.menu-item-has-children:hover .sub-menu,
.nav-menu li.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
    border: none;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus {
    background: var(--bg-light, #f5f5f5);
    text-decoration: none;
}

/* Desktop CTA Button */
.header-cta {
    height: 92px;
    display: flex;
    align-items: center;
    padding: 0 44px;
    background: #D9A321;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.6px;
    border-radius: 0;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9375rem;
    margin-left: 0;
}

.header-cta:hover {
    background: #C8921C;
    opacity: 1;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-nav {
    padding: 0;
}

.header-cta-mobile {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: #D9A321;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.4px;
    border-radius: 0;
    transition: background 0.2s ease;
}

.header-cta-mobile:hover {
    background: #C8921C;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: #111;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus,
.mobile-nav-menu .current-menu-item > a {
    background: var(--bg-light);
    color: #000;
}

/* Mobil alt menü */
.mobile-nav-menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0,0,0,0.04);
}

.mobile-nav-menu li.menu-item-has-children.open .sub-menu {
    display: block;
}

.mobile-nav-menu .sub-menu a {
    padding-left: 2rem;
    font-size: 0.95rem;
}

/* Body Scroll Lock */
body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1240px) {
    .nav-menu {
        gap: 14px 18px;
    }

    .nav-menu a {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 12px 16px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .header-cta {
        padding: 0 32px;
        font-size: 0.875rem;
    }
}

@media (max-width: 900px) {
    .header-inner {
        height: 64px;
    }
    
    .header-cta {
        height: 64px;
        padding: 0 24px;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .site-logo {
        height: 36px;
    }
    
    .mobile-drawer {
        top: 64px;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 12px;
    }
    
    .brand {
        margin-right: 12px;
    }
}

/* Hero — arka plan katmanları mutlak; içerik hero-inner ile dikey ortalanır */
.hero {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 58vh, 720px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2.5rem 0;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Genel .btn ile karışmasın — hero’da sadece btn-outline / btn-whatsapp kullanılıyor */
.hero .btn-outline,
.hero-content .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible,
.hero-content .btn-outline:hover,
.hero-content .btn-outline:focus-visible {
    background: #fff !important;
    color: #047857 !important;
    border-color: #fff !important;
    opacity: 1 !important;
}

/* Başka şablonlarda class="btn btn-outline" — genel .btn mavi zemini ezer */
.btn.btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus-visible {
    background: #fff !important;
    color: #047857 !important;
    border-color: #fff !important;
    opacity: 1 !important;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    opacity: 1;
}

.hero .btn-whatsapp,
.hero-content .btn-whatsapp {
    color: #fff !important;
}

@media (min-width: 768px) {
    .hero {
        min-height: clamp(520px, 62vh, 760px);
    }

    .hero-inner {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: clamp(580px, 65vh, 820px);
    }

    .hero-inner {
        padding: 3.5rem 0;
    }

    .hero-content {
        padding: 0 32px;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-outline,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Rooms Section */
.rooms {
    padding: 70px 0;
}

.rooms .section-head {
    text-align: center;
    margin-bottom: 40px;
}

.rooms .section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rooms .section-head p {
    color: var(--text-light);
    font-size: 1rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.room-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.room-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.room-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    background: #D9A321;
    color: #fff;
    padding: 14px 18px;
    width: 74%;
    text-align: center;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
}

.room-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 18px;
    line-height: 1.1;
    margin: 0;
}

.room-subtitle {
    font-style: italic;
    font-weight: 700;
    opacity: 0.95;
    margin-top: 2px;
}

.room-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.room-meta {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-weight: 800;
    color: #D9A321;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 14px;
    font-size: 12px;
    color: #444;
}

.feat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-desc {
    color: #555;
    font-size: 13px;
    text-align: center;
    min-height: 40px;
}

.room-cta {
    margin: 0 auto;
    background: #D9A321;
    color: #fff !important;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.4px;
    padding: 12px 18px;
    width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.room-cta:hover {
    filter: brightness(0.95);
    color: #fff !important;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.advantage-item {
    text-align: center;
    padding: var(--spacing-md);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Amenities */
.amenities {
    padding: 70px 0;
    background: #fff;
}

.amenities-title {
    text-align: center;
    font-size: 40px;
    letter-spacing: 2px;
    margin: 0 0 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.amenities .amenities-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 6px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none !important;
}

.amenities .amenities-grid::-webkit-scrollbar {
    height: 10px;
}

.amenities .amenities-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 999px;
}

.amenity-card {
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    padding: 0;
    overflow: hidden;
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: 12px;
}

.amenities .amenities-grid > .amenity-card {
    width: 260px;
    max-width: 260px;
}

@media (max-width: 600px) {
    .amenity-card {
        flex-basis: 220px;
    }
    .amenities .amenities-grid > .amenity-card {
        width: 220px;
        max-width: 220px;
    }
}

.amenity-media {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.amenity-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenity-media svg {
    width: 64px;
    height: 64px;
    display: block;
}

.amenity-name {
    border-top: 1px solid #eee;
    padding: 14px 10px;
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

/* Access Section */
.access {
    padding: 70px 0 40px;
    background: #fff;
}

.access-title {
    text-align: center;
    font-size: 46px;
    font-style: italic;
    margin: 0 0 34px;
    font-weight: 400;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
}

@media (max-width: 1000px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.access-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.access-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.access-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    width: 70%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.access-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34px;
    background: rgba(40, 40, 40, 0.85);
}

.access-desc {
    margin-top: 10px;
    text-align: center;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

/* SEO Content */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

/* SEO Block Premium Styling */
.seo-block {
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 20px 10px;
}

.seo-block h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin: 0 0 14px;
    border-bottom: none;
    padding-bottom: 0;
}

.seo-block h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #111;
}

.seo-block .seo-accent {
    color: #D9A321;
    font-style: italic;
}

.seo-block p {
    font-size: 16px;
    line-height: 1.85;
    color: #222;
    margin: 0 0 14px;
}

.seo-block .seo-lead {
    font-size: 17px;
    line-height: 1.9;
    color: #111;
}

.seo-block strong {
    font-weight: 800;
}

.seo-block .seo-checklist {
    margin: 18px 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.seo-block .seo-checklist li {
    position: relative;
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.7;
    color: #222;
}

.seo-block .seo-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(217, 163, 33, 0.16);
    color: #D9A321;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.seo-block .seo-quote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid #D9A321;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

.seo-block .seo-foot {
    margin-top: 10px;
    color: #111;
}

@media (max-width: 768px) {
    .seo-block h2 {
        font-size: 22px;
    }
    
    .seo-block p {
        font-size: 15px;
    }
    
    .seo-block .seo-lead {
        font-size: 16px;
    }
}

/* FAQ */
.faq {
    padding: 70px 0;
    background: #fff;
}

.faq .container {
    max-width: 1100px;
}

.faq-title {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 26px;
    color: #111;
    text-align: center;
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-q {
    width: 100%;
    background: #fff;
    border: 0 !important;
    outline: none !important;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    text-align: left;
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
    -webkit-appearance: none;
    appearance: none;
}

.faq-q:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(217, 163, 33, 0.20);
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
}

.faq-q:hover {
    background: #fafafa;
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
}

.faq-q-text {
    display: block;
    padding-right: 16px;
    flex: 1;
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #111111 !important;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-q[aria-expanded="true"] .faq-icon::after {
    opacity: 0;
}

.faq-a {
    padding: 0 20px 18px;
}

.faq-a-inner {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    color: #333;
    font-size: 15px;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-q {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-a {
        padding: 0 16px 16px;
    }
}

/* Footer - Old styles removed, new styles at bottom */

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .room-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .room-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .room-badge {
        width: 85%;
        padding: 12px 16px;
    }
    
    .room-title {
        font-size: 16px;
    }
    
    .room-cta {
        width: 100%;
        max-width: 220px;
    }
}

/* ============================================
   GLOBAL TYPOGRAPHY & SEO CONTENT STYLES
   ============================================ */

:root {
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
    --text: #111;
    --muted: #444;
    --line: #e9e9e9;
    --gold: #d9a321;
}

body {
    font-family: var(--font-body);
    color: var(--text);
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    letter-spacing: 0.2px;
}

p {
    line-height: 1.85;
    color: var(--muted);
    font-size: 16px;
}

.container {
    max-width: 1320px !important;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 36px);
}

/* SEO Intro, Oda Tipleri, Lokasyon, Neden Biz - Hero altı bloklar */
.seo-intro,
.oda-turleri,
.lokasyon-bilgi,
.neden-biz {
    padding: 2rem 0;
    background: #fff;
}

/* Kurumsal tipografi: serif başlık yerine Inter */
.seo-intro h2,
.seo-intro p,
.oda-turleri h2,
.lokasyon-bilgi h2,
.neden-biz h2 {
    font-family: var(--font-body);
}

.seo-intro .container,
.lokasyon-bilgi .container,
.neden-biz .container,
.oda-turleri .container {
    text-align: center;
}

.seo-intro h2,
.oda-turleri h2,
.lokasyon-bilgi h2,
.neden-biz h2 {
    font-size: clamp(1.375rem, 2.2vw, 1.75rem);
    margin: 0 0 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.25;
}

.seo-intro p,
.lokasyon-bilgi p {
    margin: 0 auto 1rem;
    line-height: 1.75;
    color: #334155;
    font-size: 1.0625rem;
    font-family: var(--font-body);
    max-width: 72ch;
}

.seo-intro p:last-child,
.lokasyon-bilgi p:last-child {
    margin-bottom: 0;
}

/* Oda seçenekleri — alt kutular */
.oda-turleri h2 {
    margin-bottom: 1.5rem;
}

.oda-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.oda-option-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.35rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.oda-option-card:hover {
    background: #fff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.oda-option-card__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.oda-option-card__title a {
    color: #0f172a !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.oda-option-card__title a:hover {
    color: #047857 !important;
    text-decoration: none;
}

.oda-option-card__text {
    margin: 0 0 1.25rem;
    flex: 1 1 auto;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569 !important;
}

.oda-option-card__cta {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #047857 !important;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.oda-option-card__cta:hover {
    border-bottom-color: #047857;
    color: #065f46 !important;
}

@media (max-width: 992px) {
    .oda-option-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

.neden-biz ul {
    margin: 0.75rem auto 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    max-width: min(100%, 38rem);
    text-align: left;
}

.neden-biz ul li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--muted, #6b7280);
}

.neden-biz ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold, #D9A321);
    font-weight: 700;
}

/* Apart sayfası: hero ve CTA blokları */
.apart-hero-block {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.apart-hero-block h1 { margin-top: 0; }
.apart-hero-block p { margin-bottom: 0.75rem; }
.apart-hero-block .btn { margin-right: 0.75rem; margin-top: 0.5rem; }
.apart-cta-block {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border, #e5e7eb);
}

/* Suit sayfası: hero ve CTA blokları */
.suit-hero-block {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.suit-hero-block h1 { margin-top: 0; }
.suit-hero-block p { margin-bottom: 0.75rem; }
.suit-hero-block .btn { margin-right: 0.75rem; margin-top: 0.5rem; }
.suit-cta-block {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border, #e5e7eb);
}

.seo-section {
    padding: 70px 0;
    background: #fff;
}

.seo-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    font-size: 30px;
    margin: 0 0 14px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text);
}

.seo-content h3 {
    font-size: 22px;
    margin: 26px 0 10px;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text);
}

.seo-content p {
    margin: 0 auto 14px;
    max-width: 72ch;
    line-height: 1.85;
    color: var(--muted);
    font-size: 16px;
}

.seo-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.seo-content a:hover {
    text-decoration: underline;
}

.seo-content ul {
    margin: 14px auto 18px;
    padding: 0;
    list-style: none;
    display: inline-block;
    max-width: min(100%, 42rem);
    text-align: left;
}

.seo-content ul li {
    position: relative;
    padding-left: 34px;
    margin: 10px 0;
    line-height: 1.75;
    color: var(--muted);
}

.seo-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(217, 163, 33, 0.15);
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
}

.seo-callout {
    border: 1px solid rgba(217, 163, 33, 0.35);
    border-top: 3px solid var(--gold);
    background: #fafafa;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 18px auto 20px;
    max-width: 52rem;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
}

@media (max-width: 768px) {
    .seo-intro,
    .oda-turleri,
    .lokasyon-bilgi,
    .neden-biz {
        padding: 1.5rem 0;
    }

    .seo-section {
        padding: 44px 0;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .seo-content h3 {
        font-size: 18px;
    }
    
    p {
        font-size: 15px;
    }
    
    .seo-content p {
        font-size: 15px;
    }
}

/* ============================================
   FOOTER - PREMIUM DARK THEME
   ============================================ */

.site-footer {
    background: #0b0b0b;
    color: #cfcfcf;
}

.site-footer a {
    color: #e0e0e0;
    text-decoration: none;
}

.site-footer a:hover {
    color: #d9a321;
    text-decoration: underline;
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-h {
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}

.footer-item {
    margin: 0 0 14px;
    color: #bdbdbd;
    line-height: 1.7;
}

.footer-item strong {
    color: #fff;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.footer-links,
.footer-social,
.footer-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-social li,
.footer-posts li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hizmetler: okunur liste */
.footer-links-services li {
    padding: 8px 0;
    line-height: 1.5;
}
.footer-links-services a {
    color: #bdbdbd;
    transition: color 0.2s ease;
}
.footer-links-services a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-posts li a {
    color: #d9a321;
    font-weight: 700;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-posts li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-posts-empty {
    color: #777;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.footer-rating {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.stars {
    letter-spacing: 2px;
    color: #d9a321;
    font-size: 14px;
}

.rating-text {
    margin-top: 6px;
    color: #fff;
}

.rating-sub {
    margin-top: 8px;
    font-size: 13px;
    color: #bdbdbd;
    line-height: 1.6;
}

.rating-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 800;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #14b86a;
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 900;
    margin-top: 10px;
}

.footer-wa:hover {
    filter: brightness(1.05);
    text-decoration: none !important;
    color: #fff !important;
}

/* Sosyal medya ikonları: yatay, inline SVG, hover parlama */
.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #bdbdbd;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social-icon:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.08);
}
.footer-social-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-bottom {
    padding: 18px 0 36px;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.footer-copy {
    color: #888;
    font-size: 13px;
    margin: 0;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}
.footer-legal a {
    color: #888;
    transition: color 0.2s ease;
}
.footer-legal a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-legal-sep {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand-desc {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin: 28px 0 18px;
}

/* .footer-copy stilleri footer-bottom-inner içinde tanımlı */

/* ============================================
   SABİT BUTONLAR (FLOATING ACTIONS)
   ============================================ */

.floating-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9999;
}

.fab {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.fab:hover {
    transform: translateY(-1px);
}

.fab .fab-ic {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
    flex-shrink: 0;
}

.fab .fab-txt {
    font-size: 13px;
    letter-spacing: 0.2px;
}

.fab-wa {
    background: #128c7e;
    color: #fff;
}

.fab-wa:hover {
    color: #fff;
    text-decoration: none;
}

.fab-call {
    background: #1e40af;
    color: #fff;
}

.fab-call:hover {
    color: #fff;
    text-decoration: none;
}

.fab-call .fab-ic {
    background: rgba(255, 255, 255, 0.18);
}

/* Mobilde tam genişlik bar — iki buton yan yana ekrana oturur */
@media (max-width: 999px) {
    .floating-actions:not(.hide-mobile) {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        gap: 0;
        justify-content: stretch;
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.14);
    }

    .floating-actions:not(.hide-mobile) .fab {
        flex: 1 1 50%;
        justify-content: center;
        border-radius: 0;
        margin: 0;
        padding: 16px 12px;
        min-height: 56px;
        box-shadow: none;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .floating-actions:not(.hide-mobile) .fab-wa {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }

    body:has(.floating-actions:not(.hide-mobile)) {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }
}

/* Mobilde çok küçük ekranlarda metni gizle */
@media (max-width: 360px) {
    .fab .fab-txt {
        display: none;
    }
    .fab {
        padding: 12px;
    }
}

/* Masaüstünde gizle */
@media (min-width: 1000px) {
    .floating-actions {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }
    .fab {
        padding: 14px 16px;
    }
    .hide-desktop {
        display: none !important;
    }
}

/* Mobilde gizle */
@media (max-width: 999px) {
    .hide-mobile {
        display: none !important;
    }
}

/* ============================================
   BLOG SAYFALARI STİLLERİ
   ============================================ */

.blog-page {
    padding: 60px 0;
    background: #fff;
}

.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.blog-description {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-thumbnail {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.blog-card-thumbnail a {
    display: block;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
}

.blog-card-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    color: #444;
    line-height: 1.6;
    margin: 0 0 14px;
    font-size: 14px;
    flex: 1;
}

.blog-card-readmore {
    display: inline-block;
    padding: 10px 14px;
    background: #d7a420;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.blog-card-readmore:hover {
    background: #c5941a;
    color: #fff;
    text-decoration: none;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 16px;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    color: #111;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 700;
}

/* Tekil Yazı Sayfası */
.single-post-page {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.single-post-page .container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.single-post {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    float: none;
    clear: both;
}

.single-post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.single-post-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.3;
}

.single-post-meta {
    font-size: 14px;
    color: #777;
}

.single-post-thumbnail {
    width: 100%;
    margin-bottom: 32px;
    overflow: hidden;
    border-radius: 8px;
}

.single-thumb-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.single-post-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 40px;
    overflow: visible;
    max-width: 100%;
}

.single-post-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Blok düzenleyici: float / geniş blokların sayfayı kaydırmasını önle */
.single-post-content .alignleft,
.single-post-content .alignright {
    max-width: 100%;
}

.single-post-content .alignwide,
.single-post-content .alignfull {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.single-post-content .wp-block-image.alignleft,
.single-post-content .wp-block-image.alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 600px) {
    .single-post-content .wp-block-image.alignleft {
        float: left;
        margin-right: 1.5rem;
        margin-left: 0;
    }

    .single-post-content .wp-block-image.alignright {
        float: right;
        margin-left: 1.5rem;
        margin-right: 0;
    }
}

.single-post-content h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 32px 0 16px;
}

.single-post-content h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 24px 0 12px;
}

.single-post-content p {
    margin-bottom: 18px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 18px 0;
    padding-left: 28px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.single-post-content a:hover {
    text-decoration: underline;
}

.single-post-footer {
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous .nav-label,
.nav-next .nav-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-previous a,
.nav-next a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: color 0.2s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--gold);
}

.back-to-blog {
    text-align: center;
    margin-top: 32px;
}

.back-to-blog a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.back-to-blog a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
    }
    
    .blog-item-title {
        font-size: 24px;
    }
    
    .single-post-title {
        font-size: 28px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* ============================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 0 50px;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    color: #fff;
}

.page-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content-wrap {
    padding: 60px 0;
    background: #fff;
}

.page-content {
    max-width: 980px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px;
    color: #111;
    letter-spacing: 0.2px;
}

.page-content h2 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    margin: 36px 0 16px;
    color: #111;
    letter-spacing: 0.2px;
}

.page-content h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 28px 0 12px;
    color: #111;
    letter-spacing: 0.2px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0 0 18px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 24px;
    padding-left: 0;
    list-style: none;
}

.page-content ul li,
.page-content ol li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    line-height: 1.75;
    color: var(--muted);
    font-size: 16px;
}

.page-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
    font-size: 20px;
    line-height: 1.4;
}

.page-content ol {
    counter-reset: item;
    list-style: none;
}

.page-content ol li {
    counter-increment: item;
    padding-left: 36px;
}

.page-content ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
}

.page-content strong {
    font-weight: 700;
    color: #111;
}

.page-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.page-content a:hover {
    text-decoration: underline;
}

.callout {
    background: #fafafa;
    border-left: 4px solid var(--gold);
    padding: 18px 20px;
    margin: 24px 0 28px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.callout strong {
    color: var(--gold);
    font-weight: 700;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 40px 32px;
    margin: 48px 0 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-box h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0 0 20px;
}

.cta-box p:last-child {
    margin-bottom: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #14b86a;
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #12a05a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 106, 0.3);
    text-decoration: none !important;
    color: #fff !important;
}

/* ============================================
   İLETİŞİM SAYFASI STİLLERİ
   ============================================ */

.contact-wrap {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.contact-h {
    font-family: var(--font-head);
    font-size: 22px;
    margin: 0 0 14px;
    color: #111;
}

.contact-item + .contact-item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.contact-k {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-v {
    color: #222;
    line-height: 1.7;
}

.contact-v--accent,
.contact-v--accent a {
    color: #14b86a !important;
    font-weight: 800 !important;
}

.contact-v--accent a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-wa {
    width: 100%;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111;
    font-weight: 700;
    background: #fafafa;
}

.contact-map-link:hover {
    opacity: 1;
    background: #f3f4f6;
}

.contact-map-embed {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f3f4f6;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.contact-map-section {
    margin-top: 24px;
}

.contact-map-section--fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-bottom: 6px;
}

.contact-map-embed--bleed {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.contact-map-embed--bleed iframe {
    height: 1360px;
}

.contact-map-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 14px;
    margin-bottom: 12px;
}

.contact-map-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.contact-map-meta {
    color: #666;
    font-weight: 600;
}

.contact-map-embed--full iframe {
    height: 520px;
}

@media (max-width: 900px) {
    .contact-map-embed--full iframe {
        height: 380px;
    }
    .contact-map-embed--bleed iframe {
        height: 920px;
    }
}

.contact-form-content :where(input, textarea, select) {
    max-width: 100%;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0 30px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .page-hero-desc {
        font-size: 16px;
    }
    
    .content-wrap {
        padding: 40px 0;
    }
    
    .page-content h1 {
        font-size: 26px;
    }
    
    .page-content h2 {
        font-size: 22px;
    }
    
    .page-content h3 {
        font-size: 19px;
    }
    
    .page-content p,
    .page-content ul li,
    .page-content ol li {
        font-size: 15px;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-box h2 {
        font-size: 24px;
    }
}

/* === ACCESSIBILITY CONTRAST FIX === */
/* SSS akordeon: soru metni her zaman koyu (button/span genel stillerini ezer) */
.faq button.faq-q,
.faq .faq-q,
.faq .faq-q-text {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

.faq .faq-q:hover,
.faq .faq-q:focus,
.faq .faq-q[aria-expanded="false"],
.faq .faq-q[aria-expanded="true"] {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}

/* Kart arka planlarını net beyaz yap */
.oda-turleri,
.oda-turleri section,
.room-card {
    background: #ffffff !important;
}

/* Açıklama ve meta yazıları koyulaştır */
.oda-turleri .oda-option-card__text,
.room-card p,
.room-card .description,
.room-card .meta-item,
.room-card span,
.room-card li {
    color: #1a1a1a !important;
    opacity: 1 !important;
}

/* Kart içi başlıklar (görsel etiketindeki .room-title hariç — aşağıda beyaz) */
.room-card h2,
.room-card h3 {
    color: #111111 !important;
}

/* Görsel üstü etiket: koyu şerit üzerinde beyaz yazı */
.room-card .room-badge .room-title,
.room-card .room-badge .room-subtitle {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

/* Kart içi linkler */
.room-card a {
    color: #0b57d0 !important;
    text-decoration: none;
}

.room-card a:hover {
    text-decoration: underline;
}

.oda-turleri .oda-option-card__title a {
    color: #0f172a !important;
    text-decoration: none;
}

.oda-turleri .oda-option-card__cta {
    color: #047857 !important;
    text-decoration: none;
}

/* Badge / küçük etiketler */
.room-card .room-badge,
.room-card .badge,
.room-card .tag {
    background: #111111 !important;
    color: #ffffff !important;
}

/* CTA Buton */
.room-card .room-cta,
.room-card .btn,
.room-card button,
.room-card .button {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

/* === WhatsApp Contrast Fix (Lighthouse) === */

/* WhatsApp butonları: arka planı koyulaştır + yazıyı beyaz yap */
a.btn-whatsapp,
a.footer-wa,
a.fab-wa,
a.fab,
a[class*="whatsapp"],
.footer a[href*="wa.me"],
.footer a[href*="whatsapp"],
a[href*="wa.me"] {
    background-color: #0b5f2a !important; /* daha koyu yeşil */
    color: #ffffff !important;
}

/* İçeride span/icon varsa */
a.btn-whatsapp span,
a.footer-wa span,
a.fab-wa span,
a.fab span,
a[class*="whatsapp"] span,
a[href*="wa.me"] span,
a[href*="whatsapp"] span,
a.btn-whatsapp i,
a.footer-wa i,
a.fab-wa i,
a.fab i {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Hover / Focus: daha da koyu */
a.btn-whatsapp:hover,
a.footer-wa:hover,
a.fab-wa:hover,
a.fab:hover,
a[class*="whatsapp"]:hover,
.footer a[href*="wa.me"]:hover,
a[href*="wa.me"]:hover {
    background-color: #084b21 !important;
    color: #ffffff !important;
}

/* Focus görünürlüğü (erişilebilirlik) */
a.btn-whatsapp:focus,
a.footer-wa:focus,
a.fab-wa:focus,
a.fab:focus,
a[href*="wa.me"]:focus {
    outline: 3px solid rgba(255,255,255,0.7) !important;
    outline-offset: 2px !important;
}

/* === Landing keyword pages (SEO) === */
.site-main--landing-kw {
    padding: 0;
    max-width: none;
}

.landing-keyword-page .site-main--landing-kw {
    width: 100%;
}

.landing-kw-hero {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    color: #f8fafc;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.landing-kw-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d9a321;
    margin: 0 0 0.75rem;
}

.landing-kw-hero__title {
    font-family: var(--font-head, "Playfair Display", Georgia, serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
}

.landing-kw-hero__lead {
    max-width: 46rem;
    margin: 0 auto 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.92);
}

.landing-kw-hero__lead strong {
    color: #fff;
    font-weight: 700;
}

.landing-kw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.landing-kw-btn--ghost {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
    background: transparent !important;
}

.landing-kw-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #fff !important;
    color: #fff !important;
}

.landing-kw-toc {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0.65rem 0;
}

.landing-kw-toc .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.landing-kw-toc__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.landing-kw-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.landing-kw-toc__list a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.landing-kw-toc__list a:hover {
    color: #047857;
    border-bottom-color: #047857;
}

.landing-kw-body {
    padding: clamp(2rem, 4vw, 3rem) 16px clamp(3rem, 6vw, 4.5rem);
}

.landing-kw-section {
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
    scroll-margin-top: 88px;
}

.landing-kw-h2 {
    font-family: var(--font-head, "Playfair Display", Georgia, serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
    text-align: center;
}

.landing-kw-h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.landing-kw-prose {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.landing-kw-prose p {
    margin: 0 0 1rem;
    line-height: 1.8;
    color: #334155;
    font-size: 1.02rem;
}

.landing-kw-prose p:last-child {
    margin-bottom: 0;
}

.landing-kw-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.landing-kw-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .landing-kw-grid--3 {
        grid-template-columns: 1fr;
    }

    .landing-kw-toc .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-kw-toc__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
}

.landing-kw-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    text-align: center;
}

.landing-kw-card__icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.landing-kw-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

.landing-kw-links {
    list-style: none;
    margin: 1rem auto 0;
    padding: 0;
    max-width: 28rem;
    text-align: left;
}

.landing-kw-links li {
    border-bottom: 1px solid #e2e8f0;
}

.landing-kw-links a {
    display: block;
    padding: 0.65rem 0;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-kw-links a:hover {
    color: #047857;
}

.landing-kw-section--cta {
    margin-top: 2rem;
}

.landing-kw-cta-panel {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #f1f5f9;
    border-radius: 14px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.landing-kw-h2--light {
    color: #fff !important;
}

.landing-kw-cta-panel__text {
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    line-height: 1.75;
    color: #ffffff !important;
    opacity: 1;
}

.landing-kw-section--faq .landing-kw-h2 {
    margin-bottom: 1.25rem;
}

.landing-kw-faq {
    max-width: 720px;
    margin: 0 auto;
}

.landing-kw-faq .faq-item {
    border-radius: 10px;
}

.landing-kw-faq .faq-q {
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
}

.landing-kw-faq .faq-q-text {
    color: #111111 !important;
    -webkit-text-fill-color: #111111;
}

/* GSC dinamik landing — 3 görsel varyant (hero tonu) */
.landing-gsc--v1 .landing-kw-hero {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.landing-gsc--v2 .landing-kw-hero {
    background: linear-gradient(160deg, #1e3a5f 0%, #0c4a6e 45%, #0f172a 100%);
}

.landing-gsc--v2 .landing-kw-hero__eyebrow {
    color: #bae6fd;
}

.landing-gsc--v3 .landing-kw-hero {
    background: linear-gradient(135deg, #422006 0%, #1c1917 55%, #0f172a 100%);
}

.landing-gsc--v3 .landing-kw-hero__eyebrow {
    color: #fbbf24;
}

/* GSC landing — Stil 2 (split) & Stil 3 (magazine) özel düzen */
.landing-kw-hero__subtitle {
    max-width: 42rem;
    margin: -0.25rem auto 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.9);
    font-weight: 500;
}

.landing-gsc-split-intro__grid {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 900px) {
    .landing-gsc-split-intro__grid {
        grid-template-columns: 1fr minmax(240px, 320px);
    }
}

.landing-gsc-info-card {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 8px 24px rgba(12, 74, 110, 0.08);
}

.landing-gsc-info-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    color: #0c4a6e;
}

.landing-gsc-info-card__text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: #075985;
    line-height: 1.6;
}

.landing-gsc-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-gsc-steps__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.landing-gsc-steps__num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #0c4a6e;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-gsc-linkstrip {
    margin-top: 1.5rem;
    padding: 1rem 0;
    font-size: 0.9375rem;
    text-align: center;
    color: #475569;
}

.landing-gsc-linkstrip a {
    color: #0369a1;
    font-weight: 600;
    text-decoration: none;
}

.landing-gsc-linkstrip a:hover {
    text-decoration: underline;
}

.landing-gsc-linkstrip__sep {
    margin: 0 0.5rem;
    color: #94a3b8;
}

.landing-gsc-cta-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
}

.landing-gsc-cta-soft .landing-kw-h2 {
    color: #0f172a;
}

.landing-gsc-cta-soft__text {
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    color: #334155;
    line-height: 1.75;
}

.landing-gsc-cta-soft .btn.btn-outline {
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    background: transparent !important;
}

.landing-gsc-cta-soft .btn.btn-outline:hover,
.landing-gsc-cta-soft .btn.btn-outline:focus-visible {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}

.landing-gsc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}

.landing-gsc-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fef3c7;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-gsc-pullquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid #fbbf24;
    background: #1c1917;
    color: #fef3c7;
    border-radius: 0 12px 12px 0;
}

.landing-gsc-pullquote p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.65;
    font-style: italic;
}

.landing-gsc-bento {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-gsc-bento {
        grid-template-columns: 1fr 1fr;
    }

    .landing-gsc-bento__cell--wide {
        grid-column: 1 / -1;
    }
}

.landing-gsc-bento__cell {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-gsc-bento__cell--accent {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fbbf24;
}

.landing-gsc-cta-gold {
    text-align: center;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 14px;
    border: 2px solid #fbbf24;
    background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
    color: #fafaf9;
    box-shadow: 0 16px 40px rgba(28, 25, 23, 0.2);
}

.landing-gsc-cta-gold .landing-kw-h2 {
    color: #fff;
}

.landing-gsc-cta-gold__text {
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    color: #e7e5e4;
    line-height: 1.75;
}
