/* =============================================
   yahsamhoca.com - Açık/Beyaz Tema + Altın Vurgular
   ============================================= */

:root {
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-dark: #8b6914;
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    --dark-bg: #f8f9fa;
    --darker-bg: #ffffff;
    --dark-section: #1a1a2e;
    --text: #333333;
    --text-muted: #6b7280;
    --text-dark: #111827;
    --white: #ffffff;
    --fb-blue: #1877F2;
    --fb-light: #e7f3ff;
    --fb-gray: #f0f2f5;
    --fb-border: #ced0d4;
    --fb-text: #050505;
    --fb-secondary: #65676b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-dark); }

.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    transition: all 0.3s;
}
.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-custom .navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold) !important;
}
.navbar-custom .navbar-brand span { color: var(--text-dark); }
.navbar-custom .nav-link {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold) !important;
    background: rgba(184, 134, 11, 0.08);
}
.navbar-custom .navbar-toggler {
    border-color: var(--gold);
    color: var(--gold);
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b8860b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Dropdown menu - light */
.navbar-custom .dropdown-menu {
    background: #fff;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.navbar-custom .dropdown-item {
    color: var(--text);
    padding: 8px 16px;
}
.navbar-custom .dropdown-item:hover {
    background: rgba(184, 134, 11, 0.08);
    color: var(--gold);
}
.btn-whatsapp-nav {
    background: #25D366;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    font-weight: 700;
    font-size: 0.85rem;
}
.btn-whatsapp-nav:hover { background: #1da851; color: #fff !important; }

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-section) 0%, #16213e 50%, #1e1e3f 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, -5%); }
}
.hero-section .hero-content { position: relative; z-index: 2; }
.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}
.hero-section h1 .gold-text { color: var(--gold-light); }
.hero-section .hero-subtitle {
    font-size: 1.15rem;
    color: #b0b8c8;
    max-width: 600px;
    margin-bottom: 2rem;
}
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #d4a017;
}
.hero-badge i { margin-right: 6px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff !important;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #fff !important;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--primary-bg); }
.section-gray { background: var(--secondary-bg); }
/* Keep dark section for hero-like areas */
.section-dark { background: var(--secondary-bg); }
.section-card { background: var(--primary-bg); }
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12);
}
.service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: #fff;
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.service-card .btn-service {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}
.service-card .btn-service:hover { color: var(--gold-dark); }

/* ===== FACEBOOK STYLE TESTIMONIALS ===== */
.fb-page-header,
.fb-review-card,
.fb-review-card *,
.home-fb-card,
.home-fb-card * {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
}

.fb-page-header {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.fb-cover {
    height: 200px;
    background: linear-gradient(135deg, #1877F2 0%, #42a5f5 50%, #1877F2 100%);
    position: relative;
}
.fb-page-info {
    padding: 0 16px 16px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: -40px;
    position: relative;
}
.fb-page-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.fb-page-details { padding-bottom: 4px; }
.fb-page-details h3 {
    color: var(--fb-text);
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.fb-page-details .fb-meta {
    color: var(--fb-secondary);
    font-size: 0.8125rem;
    line-height: 1.4;
}
.fb-page-details .fb-rating {
    color: var(--fb-text);
    font-weight: 600;
}
.fb-page-details .fb-rating .stars { color: #f5b623; font-size: 0.9rem; }

.fb-review-card {
    background: var(--white);
    border-radius: 8px;
    padding: 12px 16px 0;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
    border: none;
}
.fb-review-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0;
}
.fb-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.fb-review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.fb-review-info { flex: 1; }
.fb-review-name {
    color: var(--fb-text);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    line-height: 1.2;
}
.fb-review-name:hover { text-decoration: underline; }
.fb-review-meta {
    color: var(--fb-secondary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.3;
}
.fb-review-meta .bi-globe2 { font-size: 0.65rem; }
.fb-recommends {
    color: var(--fb-text);
    font-size: 0.8125rem;
    margin: 8px 0 4px;
    padding: 0;
}
.fb-recommends i.bi-check-circle-fill { color: #1877F2; margin-right: 2px; }
.fb-recommends i.bi-hand-thumbs-up-fill { color: var(--fb-blue); }
.fb-recommends .fb-stars { color: #f5b623; font-size: 0.8rem; }
.fb-review-text {
    color: var(--fb-text);
    font-size: 0.9375rem;
    line-height: 1.3333;
    margin-bottom: 0;
    padding: 4px 0 12px;
    word-wrap: break-word;
}

/* Reactions row */
.fb-reactions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e4e6eb;
    font-size: 0.8125rem;
    color: var(--fb-secondary);
}
.fb-reactions-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
.fb-reaction-icons {
    display: flex;
    align-items: center;
}
.fb-reaction-icons .reaction-emoji {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    margin-right: -2px;
    border: 2px solid #fff;
    position: relative;
}
.fb-reaction-icons .reaction-like { background: #1877F2; }
.fb-reaction-icons .reaction-love { background: #F33E58; }
.fb-reaction-icons .reaction-care { background: #F7B928; }

.fb-review-actions {
    border-top: none;
    padding: 2px 0;
    display: flex;
    margin: 0;
}
.fb-review-actions .fb-action-btn {
    background: none;
    border: none;
    color: var(--fb-secondary);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 6px 4px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    transition: background 0.15s;
    margin: 2px 0;
}
.fb-review-actions .fb-action-btn i { font-size: 1.05rem; }
.fb-review-actions .fb-action-btn:hover { background: rgba(0,0,0,0.05); }
.fb-likes-count {
    color: var(--fb-secondary);
    font-size: 0.8125rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #e4e6eb;
}
.fb-likes-count .like-icon {
    width: 18px;
    height: 18px;
    background: #1877F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
}

/* Reply thread */
.fb-reply {
    margin-left: 48px;
    margin-top: 8px;
    margin-bottom: 12px;
    background: var(--fb-gray);
    border-radius: 18px;
    padding: 8px 12px;
    position: relative;
    display: inline-block;
    max-width: calc(100% - 48px);
}
.fb-reply::before {
    display: none;
}
.fb-reply-wrapper {
    padding: 4px 0 8px;
}
.fb-reply-wrapper .fb-reply-avatar-outside {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
    float: left;
    margin-right: 8px;
    margin-left: 48px;
}
.fb-reply-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}
.fb-reply-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.6rem;
    flex-shrink: 0;
    display: none;
}
.fb-reply-name {
    color: var(--fb-text);
    font-weight: 600;
    font-size: 0.8125rem;
}
.fb-reply-badge {
    background: #e7f3ff;
    color: #1877F2;
    font-size: 0.6875rem;
    padding: 0 6px;
    border-radius: 3px;
    font-weight: 600;
}
.fb-reply-text {
    color: var(--fb-text);
    font-size: 0.8125rem;
    line-height: 1.3333;
}
.fb-reply-meta {
    color: var(--fb-secondary);
    font-size: 0.75rem;
    margin-top: 2px;
    margin-left: 48px;
    padding-left: 12px;
}
.fb-reply-meta a,
.fb-reply-meta span {
    color: var(--fb-secondary);
    font-weight: 600;
    cursor: pointer;
}
.fb-reply-meta a:hover { text-decoration: underline; }

/* === HOMEPAGE Facebook Cards === */
.home-fb-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    height: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
    border: none;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.home-fb-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
}
.home-fb-card .home-fb-inner {
    padding: 12px 16px;
}
.home-fb-card .fb-review-header { margin-bottom: 0; }
.home-fb-card .fb-review-name { color: var(--fb-text); font-weight: 600; font-size: 0.8125rem; }
.home-fb-card .fb-review-meta { color: var(--fb-secondary); font-size: 0.75rem; }
.home-fb-card .fb-review-text { color: var(--fb-text); font-size: 0.9375rem; padding: 4px 0 8px; }
.home-fb-card .fb-recommends { color: var(--fb-text); font-size: 0.8125rem; margin: 6px 0 2px; }
.home-fb-card .fb-recommends i { color: #1877F2; }
.home-fb-card .fb-likes-count {
    font-size: 0.8125rem;
    color: var(--fb-secondary);
    padding: 6px 16px 0;
    margin: 0;
    border-top: none;
}
.home-fb-card .fb-review-actions {
    padding: 2px 12px 4px;
    margin: 0;
    border-top: 1px solid #e4e6eb;
}
.home-fb-card .fb-action-btn {
    font-size: 0.8125rem !important;
    color: var(--fb-secondary) !important;
    padding: 6px 4px !important;
}

/* ===== ABOUT SECTION ===== */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 16px;
    opacity: 0.3;
}
.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f1e8, #efe4cc);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--gold);
}
.about-stat {
    text-align: center;
    padding: 20px;
}
.about-stat .stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}
.about-stat .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== BLOG CATEGORY FILTER ===== */
.blog-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.blog-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #fffbeb;
}
.blog-cat-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    font-weight: 600;
}
.blog-cat-btn.active .blog-cat-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.blog-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #6b7280;
}
@media (max-width: 576px) {
    .blog-cat-btn { padding: 6px 14px; font-size: 0.82rem; }
    .blog-cat-filter { gap: 8px; }
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.1);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, #f5f1e8, #e8dcc8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
}
.blog-card-body { padding: 20px; }
.blog-card-body .badge-cat {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
}
.blog-card-body h3 {
    font-size: 1.05rem;
    margin: 10px 0 8px;
    line-height: 1.4;
}
.blog-card-body h3 a { color: var(--text-dark); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body .blog-excerpt {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.blog-card-body .blog-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== SEO ARTICLE ===== */
.seo-article {
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
    color: #374151;
    font-size: 0.95rem;
}
.seo-article h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}
.seo-article h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #111827;
    margin: 2rem 0 0.8rem;
    padding-bottom: 6px;
    border-bottom: 2px solid #f3f4f6;
}
.seo-article p { margin-bottom: 1rem; }
.seo-article a { color: var(--gold); text-decoration: none; font-weight: 500; }
.seo-article a:hover { color: var(--gold-dark); text-decoration: underline; }
.seo-article ul {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}
.seo-article ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}
.seo-article ul li strong { color: #111827; }
.seo-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    height: 100%;
}
.seo-feature i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.seo-feature strong {
    display: block;
    color: #111827;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.seo-feature p {
    margin: 0;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}
.seo-faq { margin-top: 0.5rem; }
.seo-faq details {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.2s;
}
.seo-faq details[open] {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(184,134,11,0.08);
}
.seo-faq summary {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.2s;
}
.seo-faq details[open] summary::after { transform: rotate(180deg); }
.seo-faq details[open] summary {
    border-bottom: 1px solid #f3f4f6;
    color: var(--gold-dark);
}
.seo-faq details p {
    padding: 14px 18px;
    margin: 0;
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.7;
    background: #fafafa;
}
@media (max-width: 576px) {
    .seo-article h2 { font-size: 1.3rem; }
    .seo-article h3 { font-size: 1.05rem; }
    .seo-article { font-size: 0.9rem; }
}

/* ===== CONTACT CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-section), #16213e);
    border-top: none;
    border-bottom: none;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: #b0b8c8; }
.cta-phone {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
}
.cta-phone a { color: var(--gold-light) !important; }
.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: wpPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@keyframes wpPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    border-top: none;
    padding: 60px 0 0;
}
.footer h5 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.footer p, .footer li, .footer a {
    color: #b0b8c8;
    font-size: 0.9rem;
}
.footer a:hover { color: var(--gold-light); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #8b8fa3;
    font-size: 0.8rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 0;
}
.breadcrumb-section .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}
.breadcrumb-section .breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-section .breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-section .breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-section .breadcrumb-item.active { color: var(--gold); }
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ===== CONTENT PAGE ===== */
.content-page { padding: 40px 0 60px; }
.content-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.content-page .article-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.content-page .article-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}
.content-page .article-content p {
    margin-bottom: 1rem;
    color: var(--text);
}

/* ===== TOC ===== */
.article-toc {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 2rem;
}
.article-toc h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.article-toc ul { list-style: none; padding: 0; margin: 0; }
.article-toc li { margin-bottom: 6px; }
.article-toc li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-toc li a:hover { color: var(--gold); }
.article-toc li.toc-sub { padding-left: 16px; }

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sidebar-card h5 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--card-border);
}

/* ===== CONTACT FORM ===== */
.contact-form .form-control,
.contact-form .form-select {
    background: var(--white);
    border: 1px solid var(--card-border);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 16px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
    background: var(--white);
    color: var(--text);
}
.contact-form .form-control::placeholder { color: var(--text-muted); }

/* ===== 404 ===== */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-404 h1 {
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
}

/* ===== SEARCH ===== */
.search-form .form-control {
    background: var(--white);
    border: 1px solid var(--card-border);
    color: var(--text);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 1.05rem;
}
.search-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    background: var(--white);
    border-color: var(--card-border);
    color: var(--text);
    border-radius: 8px;
    margin: 0 3px;
}
.pagination .page-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ===== FILTER PILLS (testimonials/blog) ===== */
.filter-pill {
    background: var(--white);
    border: 1px solid var(--card-border);
    color: var(--text);
}
.filter-pill:hover,
.filter-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ===== TESTIMONIALS STATS ===== */
.fb-stats-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

/* ===== SERVICE PAGE TESTIMONIALS ===== */
.service-testimonials-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.svc-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.svc-review-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.svc-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.svc-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.svc-review-info {
    flex: 1;
    min-width: 0;
}
.svc-review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111827;
    line-height: 1.2;
}
.svc-review-meta {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.3;
}
.svc-review-meta i {
    font-size: 0.7rem;
    margin-right: 1px;
}
.svc-review-stars {
    flex-shrink: 0;
}
.svc-review-comment {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 12px;
}
.svc-review-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #6b7280;
}
.svc-review-likes i {
    color: #1877F2;
    margin-right: 3px;
    font-size: 0.75rem;
}
.svc-review-recommend i {
    color: #2ECC71;
    margin-right: 3px;
    font-size: 0.75rem;
}
.svc-review-reply {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}
.svc-reply-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    color: #111827;
}
.svc-reply-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.svc-reply-badge {
    background: rgba(184,134,11,0.12);
    color: var(--gold-dark);
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.svc-reply-text {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section { min-height: 70vh; padding-top: 100px; }
    .hero-section h1 { font-size: 2rem; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }
    .fb-page-info { flex-direction: column; align-items: center; text-align: center; margin-top: -30px; }
    .fb-page-avatar { width: 80px; height: 80px; font-size: 2rem; }
    .fb-reply { margin-left: 0; }
    .fb-review-actions .fb-action-btn { font-size: 0.75rem !important; gap: 2px !important; }
    .home-fb-card .fb-review-actions { padding: 2px 8px !important; }
    .cta-phone { font-size: 1.4rem; }
    .about-placeholder { height: 250px; font-size: 4rem; }

    /* Service testimonials mobile */
    .service-testimonials-section { padding: 40px 0; }
    .svc-review-card { padding: 16px; }
    .svc-review-top { gap: 8px; }
    .svc-review-avatar { width: 36px; height: 36px; font-size: 0.75rem; }
    .svc-review-name { font-size: 0.85rem; }
    .svc-review-comment { font-size: 0.88rem; }
    .svc-review-bottom { font-size: 0.75rem; }
    .svc-review-reply { padding: 10px; }
    .svc-reply-text { font-size: 0.82rem; }
}

@media (max-width: 576px) {
    .hero-section h1 { font-size: 1.6rem; }
    .hero-badges { flex-direction: column; gap: 8px; }
    .svc-review-stars { display: none; }
}
