/* ============================================
   CSS VARIABLES - AĞIR & PRESTİJLİ RENK PALETİ
   ============================================ */
:root {
    --primary: #0a0f1e;
    --primary-light: #141c30;
    --secondary: #c9a84c;
    --secondary-dark: #a88932;
    --secondary-light: #f0d68a;
    --cream: #f5f0eb;
    --cream-dark: #e8e0d6;
    --text-dark: #1a1a2e;
    --text-light: #e8e4de;
    --text-muted: #8a8a9a;
    --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0d68a 50%, #c9a84c 100%);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-light: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }

.section-padding { padding: 80px 0; }
.section-padding--large { padding: 120px 0; }
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary);
}
.section-title .highlight { color: var(--secondary); }
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
}
.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.btn-gold {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(201, 168, 76, 0.45); }
.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.03em;
}
.btn-outline-gold:hover { background: var(--secondary); color: var(--primary); }

/* NAVIGATION - GÜNCELLENDİ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);  /* Beyaz arka plan */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-img {
    height: 45px;
    width: auto;
    /* Filtre kaldırıldı - logo orijinal renginde görünecek */
}
.nav-logo span {
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.nav-logo span .gold { color: var(--secondary); }
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--secondary); }
.nav-cta {
    background: var(--gold-gradient);
    color: var(--primary) !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-logo span { font-size: 0.9rem; }
    .nav-logo span .gold { display: none; }
    .nav-logo-img { height: 35px; }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/h1-img-1.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,15,30,0.9) 0%, rgba(10,15,30,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-radius: 50px;
}
.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: white;
    line-height: 1.05;
    margin-bottom: 8px;
    font-weight: 700;
}
.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin-top: 16px;
}
.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--secondary-light);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    margin-top: 8px;
}
.hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 8px;
    font-style: italic;
}
.hero-buttons { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p { margin-bottom: 16px; font-weight: 300; }
.about-text .about-highlight {
    border-left: 3px solid var(--secondary);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary);
}
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.about-stats div { text-align: center; }
.about-stats span {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary);
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; transition: var(--transition); }
.about-image img:hover { transform: scale(1.02); }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { gap: 20px; }
}

/* SERVICES */
.services { background: white; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.service-item {
    background: var(--cream);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-light);
    border-color: var(--secondary);
}
.service-icon { font-size: 2.8rem; margin-bottom: 12px; }
.service-item h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 8px; }
.service-item p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* TEAM */
.team { background: var(--primary); color: var(--text-light); }
.team .section-title { color: white; }
.team .section-subtitle { color: var(--text-muted); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--secondary);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.2rem; color: white; }
.team-title { color: var(--secondary); font-size: 0.85rem; font-weight: 500; }
.team-desc { color: var(--text-muted); font-size: 0.85rem; font-weight: 300; margin-top: 8px; }
/* ============================================
   ÖNCE-SONRA SLİDER - DÜZGÜN ÇALIŞAN
   ============================================ */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ba-container {
    background: #1a1a2e;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    position: relative;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    background: #000;
}

.ba-images {
    position: relative;
    width: 100%;
    height: 100%;
}

/* TÜM RESİMLER AYNI KONUMDA */
.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* AFTER - ARKADA (Z-INDEX: 1) TAM GÖRÜNÜR */
.ba-after {
    z-index: 1;
}

/* BEFORE - ÖNDE (Z-INDEX: 2) KIRPILMIŞ */
.ba-before {
    z-index: 2;
    /* Başlangıçta %50 kırpık - ortada */
    clip-path: inset(0 50% 0 0);
}

/* ETİKETLER */
.ba-image .ba-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 5;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.ba-before .ba-label {
    left: 24px;
    background: rgba(10, 15, 30, 0.85);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.ba-after .ba-label {
    right: 24px;
    background: var(--gold-gradient);
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.2);
}

/* SÜRGÜ TUTAMAĞI */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    transition: none;
    pointer-events: none;
}

/* SÜRGÜ ÇİZGİSİ */
.ba-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* SÜRGÜ DÜĞMESİ - ORTADA YUVARLAK */
.ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.ba-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.ba-handle:hover .ba-circle {
    transform: translate(-50%, -50%) scale(1.08);
}

/* BAŞLIK */
.ba-title {
    text-align: center;
    padding: 16px 20px;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    background: var(--primary-light);
    margin: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.03em;
}

/* ============================================
   MOBİL
   ============================================ */
@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ba-slider {
        height: 280px;
    }
    .ba-circle {
        width: 44px;
        height: 44px;
    }
    .ba-circle svg {
        width: 18px;
        height: 18px;
    }
    .ba-image .ba-label {
        font-size: 0.65rem;
        padding: 5px 14px;
        bottom: 16px;
    }
    .ba-before .ba-label {
        left: 16px;
    }
    .ba-after .ba-label {
        right: 16px;
    }
}

@media (max-width: 480px) {
    .ba-slider {
        height: 220px;
    }
    .ba-circle {
        width: 36px;
        height: 36px;
    }
    .ba-circle svg {
        width: 14px;
        height: 14px;
    }
}

/* ETİKETLER */
.ba-image .ba-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    pointer-events: none;
}

.ba-before .ba-label {
    left: 20px;
    background: rgba(10, 15, 30, 0.85);
    color: white;
}

.ba-after .ba-label {
    right: 20px;
    background: var(--gold-gradient);
    color: var(--primary);
}

/* SÜRGÜ TUTAMAĞI */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: none;
}

.ba-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}

.ba-circle .ba-arrow-left,
.ba-circle .ba-arrow-right {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.ba-title {
    text-align: center;
    padding: 16px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    background: var(--cream);
    margin: 0;
}

/* MOBİL */
@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ba-slider {
        height: 250px;
    }
    .ba-circle {
        width: 40px;
        height: 40px;
    }
    .ba-circle .ba-arrow-left,
    .ba-circle .ba-arrow-right {
        font-size: 10px;
    }
}

/* BLOG */
.blog { background: white; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-light); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card h3 { font-size: 1.1rem; padding: 0 20px; margin-top: 12px; color: var(--primary); }
.blog-card p { padding: 0 20px; color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }
.blog-date {
    display: inline-block;
    padding: 4px 16px;
    margin: 12px 20px 0;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.05em;
}
.blog-card .btn-outline-gold { margin: 12px 20px 20px; }

/* CONTACT */
.contact { background: var(--primary); color: var(--text-light); }
.contact .section-title { color: white; }
.contact .section-subtitle { color: var(--text-muted); }
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.loc-tab {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.loc-tab:hover { background: var(--secondary); color: var(--primary); }
.loc-tab.active {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: transparent;
}
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 40px;
    border-left: 4px solid var(--secondary);
}
.location-info h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}
.location-info p { margin-bottom: 8px; color: var(--text-light); font-weight: 300; }
.location-info p strong { color: white; font-weight: 600; }
.location-map { min-height: 300px; border-radius: 8px; overflow: hidden; }
@media (max-width: 768px) {
    .location-content { grid-template-columns: 1fr; padding: 24px; }
    .loc-tab { padding: 10px 20px; font-size: 0.85rem; }
}

/* MODAL */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(10px);
    animation: modalFade 0.3s ease;
}
@keyframes modalFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.modal-content {
    position: relative;
    background: var(--cream);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.modal-close:hover { color: var(--secondary); transform: rotate(90deg); }
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.modal-image {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 400px;
}
.modal-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--secondary);
    object-fit: cover;
}
.modal-info {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.modal-info .modal-title {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.modal-info .modal-description {
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
    .modal-image { min-height: 200px; padding: 20px; }
    .modal-image img { max-width: 150px; }
    .modal-info { padding: 25px 20px; }
    .modal-close { top: 10px; right: 15px; width: 40px; height: 40px; font-size: 30px; }
}

/* BLOG DETAIL */
.blog-detail { background: var(--cream); }
.blog-detail-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 50px 60px;
    box-shadow: var(--shadow-light);
}
.blog-detail-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.blog-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.blog-detail-meta span { display: flex; align-items: center; gap: 6px; }
.blog-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}
.blog-detail-image img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }
.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}
.blog-detail-content h1, .blog-detail-content h2, .blog-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary);
}
.blog-detail-content h1 { font-size: 2rem; }
.blog-detail-content h2 { font-size: 1.6rem; }
.blog-detail-content h3 { font-size: 1.3rem; }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content ul, .blog-detail-content ol { margin: 16px 0 20px 24px; }
.blog-detail-content ul li, .blog-detail-content ol li { margin-bottom: 8px; }
.blog-detail-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--cream);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.blog-detail-content img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }
.blog-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 2px solid var(--cream-dark);
}
.blog-share { display: flex; align-items: center; gap: 12px; }
.blog-share span { font-weight: 600; color: var(--primary); }
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}
.share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-light); }
.share-btn.facebook:hover { background: #1877f2; color: white; }
.share-btn.twitter:hover { background: #000; color: white; }
.share-btn.whatsapp:hover { background: #25d366; color: white; }
.share-btn.email:hover { background: var(--secondary); color: white; }
.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--cream-dark);
}
.nav-prev, .nav-next {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}
.nav-prev:hover, .nav-next:hover { background: var(--cream-dark); }
.nav-prev:hover { transform: translateX(5px); }
.nav-next:hover { transform: translateX(-5px); }
.nav-prev span, .nav-next span { font-size: 0.8rem; color: var(--text-muted); }
.nav-prev strong, .nav-next strong {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 4px;
}
.nav-next { text-align: right; }
@media (max-width: 768px) {
    .blog-detail-wrapper { padding: 25px 20px; }
    .blog-detail-meta { gap: 12px; font-size: 0.8rem; }
    .blog-navigation { grid-template-columns: 1fr; gap: 15px; }
    .nav-next { text-align: left; }
}

/* FOOTER */
footer {
    background: var(--primary);
    border-top: 3px solid var(--secondary);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-logo { height: 50px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-weight: 300; }
.footer-motto {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--secondary-light);
    margin-top: 4px;
}
.footer-links h4, .footer-locations h4, .footer-contact h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.footer-links ul, .footer-locations ul { list-style: none; }
.footer-links ul li, .footer-locations ul li { margin-bottom: 6px; }
.footer-links ul li a, .footer-locations ul li a {
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 300;
}
.footer-links ul li a:hover, .footer-locations ul li a:hover { color: var(--secondary); }
.footer-contact p { color: var(--text-muted); font-weight: 300; }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}
.footer-bottom .footer-motto { margin-top: 4px; font-size: 0.9rem; }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
}