:root {
    --primary: #f28c38;
    --primary-dark: #d97520;
    --text: #333;
    --muted: #666;
    --bg: #f9f9f9;
    --white: #fff;
    --whatsapp: #25d366;
}

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Legacy header only — main nav uses .navbar (navbar.css) */
.site-header:not(.navbar) {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 0.35rem;
    color: #aaa;
}

.page-hero {
    background: linear-gradient(135deg, #f28c38, #ff6b6b);
    color: var(--white);
    padding: 2.5rem 1.25rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.95;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

section {
    margin-bottom: 2.5rem;
}

section h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: #222;
    border-left: 4px solid var(--primary);
    padding-left: 0.75rem;
}

.hero-image-wrap {
    margin: -1rem auto 2rem;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.keyword-tags span {
    background: #fff3e8;
    color: var(--primary-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.faq-list {
    list-style: none;
}

.faq-list details {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    padding: 0.75rem 0;
}

.faq-list p {
    padding-bottom: 0.85rem;
    color: var(--muted);
}

.cta-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    border: none;
    padding: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    text-decoration: none;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    opacity: 0.92;
    text-decoration: none;
}

.related-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.5rem;
}

.related-links li a {
    display: block;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.ai-summary {
    background: #fff;
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
}

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 2.5rem 1.25rem;
    margin-top: 2rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.site-footer h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.4rem;
}

.site-footer a {
    color: #ddd;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.blog-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
    .site-nav {
        font-size: 0.85rem;
    }
}
