/* =============================================
   روفي كلين — Main Stylesheet v2
   RTL Arabic Home Services Theme
============================================= */

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

:root {
    --roofy-primary:     #C9A227;
    --roofy-dark:        #1a1a2e;
    --roofy-announce-bg: #6b5a1e;
    --roofy-wa:          #25D366;
    --roofy-light:       #f9f7f2;
    --roofy-text:        #333;
    --roofy-muted:       #777;
    --roofy-white:       #ffffff;
    --roofy-radius:      12px;
    --roofy-shadow:      0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    direction: rtl;
    background: var(--roofy-white);
    color: var(--roofy-text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

.roofy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── BUTTONS ─────────────────────────────── */
.roofy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.roofy-btn:hover     { opacity: .88; transform: translateY(-1px); }
.roofy-btn-wa        { background: var(--roofy-wa);      color: #fff; }
.roofy-btn-call      { background: var(--roofy-dark);    color: #fff; }
.roofy-btn-gold      { background: var(--roofy-primary); color: var(--roofy-dark); }
.roofy-btn-outline   { background: transparent; color: var(--roofy-primary); border: 2px solid var(--roofy-primary); }
.roofy-btn-outline:hover { background: var(--roofy-primary); color: var(--roofy-dark); }
.roofy-btn-lg        { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }

/* ─── ANNOUNCEMENT BAR (static, no scroll anim) ─── */
.roofy-announce-bar {
    background: var(--roofy-announce-bg);
    color: #fff;
    padding: 9px 0;
    font-size: .83rem;
    font-weight: 600;
    text-align: center;
}
.roofy-announce-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.roofy-ann-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.roofy-ann-star { color: #FFD700; }
.roofy-ann-sep  { color: rgba(255,255,255,.35); margin: 0 4px; }

/* ─── HEADER ──────────────────────────────── */
.roofy-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #f0e8d4;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.roofy-header--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.roofy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 11px;
    padding-bottom: 11px;
    gap: 12px;
}

/* Logo */
.roofy-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    text-decoration: none;
}
.roofy-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--roofy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.roofy-logo-text { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.roofy-logo-dark { color: var(--roofy-dark); }
.roofy-logo-gold { color: var(--roofy-primary); margin-right: 3px; }

/* Desktop Nav */
.roofy-nav { flex: 1; }
.roofy-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
}
.roofy-nav-list li a {
    padding: 6px 11px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--roofy-text);
    transition: color .2s, background .2s;
}
.roofy-nav-list li a:hover,
.roofy-nav-list li.current-menu-item > a { color: var(--roofy-primary); background: rgba(201,162,39,.08); }

.roofy-header-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* Hamburger */
.roofy-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 8px;
}
.roofy-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--roofy-dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ─── MOBILE DRAWER ────────────────────────── */
.roofy-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.roofy-overlay--show { opacity: 1; pointer-events: auto; }

.roofy-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 360px);
    height: 100%;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
}
.roofy-mobile-drawer.roofy-drawer--open { right: 0; }

/* Drawer Header */
.roofy-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--roofy-primary);
    flex-shrink: 0;
}
.roofy-drawer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}
.roofy-drawer-logo .roofy-logo-dark { color: #1a1a2e; }
.roofy-drawer-logo .roofy-logo-gold { color: #fff; }
.roofy-drawer-close {
    background: rgba(0,0,0,.15);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background .2s;
}
.roofy-drawer-close:hover { background: rgba(0,0,0,.3); }

/* Strip */
.roofy-drawer-strip {
    border-bottom: 1px solid #f0e8d4;
    flex-shrink: 0;
}
.roofy-strip-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--roofy-dark);
    text-align: right;
}
.roofy-strip-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.roofy-strip-toggle:hover { background: rgba(201,162,39,.06); }
.roofy-strip-arrow { transition: transform .3s; flex-shrink: 0; color: var(--roofy-primary); }

.roofy-strip-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease;
    padding: 0 18px;
}
.roofy-drawer-strip.roofy-strip--open .roofy-strip-content {
    padding-bottom: 14px;
}

.roofy-strip-link {
    display: block;
    padding: 9px 0;
    font-size: .92rem;
    font-weight: 600;
    color: var(--roofy-text);
    border-bottom: 1px solid #f5f0e6;
    transition: color .2s;
}
.roofy-strip-link:last-child { border-bottom: none; }
.roofy-strip-link:hover { color: var(--roofy-primary); }

.roofy-strip-offer {
    padding: 10px 0;
    font-size: .9rem;
    font-weight: 600;
    color: var(--roofy-text);
    border-bottom: 1px solid #f5f0e6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.roofy-strip-star { color: var(--roofy-primary); font-size: 1rem; flex-shrink: 0; }
.roofy-strip-cta {
    display: block;
    margin-top: 12px;
    padding: 10px 16px;
    background: var(--roofy-primary);
    color: var(--roofy-dark);
    font-weight: 800;
    font-size: .9rem;
    border-radius: 8px;
    text-align: center;
}
.roofy-strip-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 8px;
    color: #fff;
}
.roofy-strip-wa   { background: var(--roofy-wa); }
.roofy-strip-call { background: var(--roofy-dark); }
.roofy-strip-pages { margin-top: 12px; }
.roofy-strip-pages-list li a {
    display: block;
    padding: 8px 0;
    font-size: .9rem;
    color: var(--roofy-text);
    border-bottom: 1px solid #f5f0e6;
}
.roofy-strip-pages-list li a:hover { color: var(--roofy-primary); }

/* ─── HERO ─────────────────────────────────── */
.roofy-hero {
    position: relative;
    min-height: 100vh;
    background: var(--roofy-dark) center/cover no-repeat;
    display: flex;
    align-items: center;
}
.roofy-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,20,.68);
}
.roofy-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Hero sidebar */
.roofy-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 155px;
}
.roofy-hero-scard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 13px 10px;
    border-radius: 12px;
    background: rgba(20,15,5,.80);
    border: 1px solid var(--roofy-primary);
    color: var(--roofy-primary);
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, background .2s;
}
.roofy-hero-scard:hover { transform: translateY(-2px); background: rgba(201,162,39,.15); }
.roofy-hero-scard svg  { width: 22px; height: 22px; }

/* Hero content */
.roofy-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.roofy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--roofy-primary);
    color: var(--roofy-dark);
    font-size: .85rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 999px;
}
.roofy-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
}
.roofy-title-white { color: #fff; }
.roofy-title-gold  { color: var(--roofy-primary); }
.roofy-title-sub   { color: #fff; font-size: clamp(1.5rem, 4vw, 2.6rem); }
.roofy-hero-desc   { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 500px; line-height: 1.8; }

.roofy-hero-pills  { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 540px; }
.roofy-pill {
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(201,162,39,.12);
    border: 1px solid var(--roofy-primary);
    color: #f0d070;
    font-size: .82rem;
    font-weight: 600;
}

.roofy-hero-cta-badge {
    background: var(--roofy-primary);
    color: var(--roofy-dark);
    font-weight: 800;
    font-size: .9rem;
    padding: 10px 28px;
    border-radius: 999px;
}
.roofy-hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
}

/* ─── WHY US ───────────────────────────────── */
.roofy-why { padding: 72px 0; background: var(--roofy-light); }
.roofy-section-head { text-align: center; margin-bottom: 48px; }
.roofy-section-head h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 900;
    color: var(--roofy-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.roofy-section-head--light h2 { color: #fff; }
.roofy-section-divider {
    width: 60px;
    height: 4px;
    background: var(--roofy-primary);
    border-radius: 2px;
    margin: 0 auto 14px;
}
.roofy-section-desc {
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin: 10px auto 0;
    font-size: .95rem;
}
.roofy-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.roofy-why-card {
    background: #fff;
    border: 1px solid #e8e0cc;
    border-radius: var(--roofy-radius);
    padding: 26px 18px;
    text-align: center;
}
.roofy-why-card:hover { box-shadow: var(--roofy-shadow); }
.roofy-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201,162,39,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--roofy-primary);
}
.roofy-why-card h3 { font-size: .97rem; font-weight: 800; color: var(--roofy-dark); margin-bottom: 8px; }
.roofy-why-card p  { font-size: .84rem; color: var(--roofy-muted); line-height: 1.7; }

/* ─── SERVICES ─────────────────────────────── */
.roofy-services { padding: 72px 0; background: var(--roofy-dark); }
.roofy-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.roofy-service-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--roofy-radius);
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: transform .2s, border-color .2s;
    cursor: pointer;
}
.roofy-service-card:hover { transform: translateY(-4px); border-color: var(--roofy-primary); }
.roofy-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201,162,39,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roofy-primary);
}
.roofy-service-card h3 { font-size: .97rem; font-weight: 800; color: var(--roofy-primary); }
.roofy-service-card p  { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.7; flex: 1; }
.roofy-service-link    { font-size: .8rem; font-weight: 700; color: var(--roofy-primary); margin-top: 4px; }

/* ─── AREAS ────────────────────────────────── */
.roofy-areas { padding: 60px 0; background: var(--roofy-light); }
.roofy-areas-banner {
    background: var(--roofy-primary);
    border-radius: var(--roofy-radius);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    color: #fff;
}
.roofy-areas-banner h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 4px; }
.roofy-areas-banner p  { font-size: .88rem; opacity: .92; }

/* SEO Article Section */
.roofy-seo-article {
    background: #fff;
    border: 1px solid #e8e0cc;
    border-radius: var(--roofy-radius);
    padding: 32px 28px;
}
.roofy-seo-article-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: var(--roofy-dark);
    margin-bottom: 14px;
    line-height: 1.4;
}
.roofy-seo-article-body {
    color: #444;
    line-height: 1.9;
    font-size: .96rem;
}
.roofy-seo-article-body p  { margin-bottom: .9rem; }
.roofy-seo-article-body a  { color: var(--roofy-primary); font-weight: 700; text-decoration: underline; }
.roofy-seo-article-body h2,
.roofy-seo-article-body h3 { color: var(--roofy-dark); font-weight: 800; margin: 1.2rem 0 .6rem; }
.roofy-seo-article-body ul { padding-right: 1.5rem; margin-bottom: 1rem; }
.roofy-seo-article-body ul li { list-style: disc; margin-bottom: 6px; }
.roofy-seo-article-body strong { color: var(--roofy-dark); }

/* ─── ARTICLES ─────────────────────────────── */
.roofy-articles { padding: 72px 0; background: #fff; }
.roofy-articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.roofy-article-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--roofy-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.roofy-article-card:hover { box-shadow: var(--roofy-shadow); transform: translateY(-3px); }
.roofy-article-thumb {
    overflow: hidden;
    position: relative;
    border: 3px solid var(--roofy-primary);
    box-shadow: 0 4px 20px rgba(201,162,39,.22);
}
.roofy-article-thumb img  { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s ease; }
.roofy-article-card:hover .roofy-article-thumb img { transform: scale(1.05); }
.roofy-article-body       { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.roofy-article-date       { font-size: .75rem; color: var(--roofy-primary); font-weight: 700; }
.roofy-article-body h3    { font-size: .97rem; font-weight: 800; color: var(--roofy-dark); line-height: 1.5; }
.roofy-article-body h3 a:hover { color: var(--roofy-primary); }
.roofy-article-body p     { font-size: .84rem; color: var(--roofy-muted); flex: 1; }
.roofy-article-more       { font-size: .84rem; font-weight: 700; color: var(--roofy-primary); margin-top: 6px; }
.roofy-article-more:hover { text-decoration: underline; }

/* ─── CTA ──────────────────────────────────── */
.roofy-cta        { padding: 80px 0; background: var(--roofy-dark); text-align: center; }
.roofy-cta-inner h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.roofy-cta-inner p  { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 1rem; }
.roofy-cta-btns     { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ─── FOOTER ───────────────────────────────── */
.roofy-footer { background: #111827; color: rgba(255,255,255,.75); padding: 52px 0 0; }
.roofy-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 20px;
}
.roofy-footer-brand .roofy-footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
}
.roofy-footer-tagline { font-size: .84rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.roofy-footer-contact-links { display: flex; flex-direction: column; gap: 8px; }
.roofy-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: rgba(255,255,255,.6);
}
.roofy-footer-link:hover { color: var(--roofy-primary); }
.roofy-footer-links-col h4,
.roofy-footer-services-col h4 { font-size: .97rem; font-weight: 800; color: var(--roofy-primary); margin-bottom: 14px; }
.roofy-footer-nav { display: flex; flex-direction: column; gap: 9px; }
.roofy-footer-nav li a { font-size: .84rem; color: rgba(255,255,255,.6); transition: color .2s; }
.roofy-footer-nav li a:hover { color: var(--roofy-primary); }

/* Footer bottom — centered designer credit */
.roofy-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    text-align: center;
}
.roofy-footer-copy { color: rgba(255,255,255,.35); }
.roofy-designer-credit { color: rgba(255,255,255,.5); }
.roofy-designer-credit a { color: var(--roofy-primary); font-weight: 700; }
.roofy-designer-credit a:hover { text-decoration: underline; }

/* ─── FLOATING BUTTONS ─────────────────────── */
.roofy-float-btns {
    position: fixed;
    left: 14px;
    bottom: 70px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.roofy-float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    transition: transform .2s;
    color: #fff;
}
.roofy-float-btn:hover { transform: scale(1.1); opacity: 1; }
.roofy-float-call { background: var(--roofy-dark); }
.roofy-float-wa   { background: var(--roofy-wa); }

/* ─── BOTTOM BAR ───────────────────────────── */
.roofy-bottom-bar {
    display: none;
}
.roofy-bottom-wa,
.roofy-bottom-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: .92rem;
    font-family: 'Cairo', sans-serif;
    color: #fff;
}
.roofy-bottom-wa:hover,
.roofy-bottom-call:hover { opacity: .92; }
.roofy-bottom-wa   { background: var(--roofy-wa); }
.roofy-bottom-call { background: var(--roofy-dark); }

/* ─── ARTICLE HERO ─────────────────────────── */
.roofy-article-hero {
    position: relative;
    min-height: 460px;
    background: var(--roofy-dark) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.roofy-article-hero--dark { background: linear-gradient(135deg, var(--roofy-dark) 0%, #0d1b3e 100%); }

/* Parallax bg layer */
.roofy-article-hero-bg {
    position: absolute;
    inset: -10%;
    background: center/cover no-repeat;
    transform-origin: center;
    will-change: transform;
}
.roofy-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,20,.92) 0%, rgba(5,5,20,.55) 60%, rgba(5,5,20,.35) 100%);
}
.roofy-article-hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Breadcrumb */
.roofy-article-hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
}
.roofy-article-hero-breadcrumb a { color: var(--roofy-primary); }
.roofy-article-hero-current { color: rgba(255,255,255,.8); }

/* Article hero title */
.roofy-article-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.35;
    max-width: 760px;
}

/* Meta */
.roofy-article-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}
.roofy-article-hero-date,
.roofy-article-hero-read { display: flex; align-items: center; gap: 5px; }
.roofy-article-hero-cat {
    background: rgba(201,162,39,.2);
    border: 1px solid rgba(201,162,39,.4);
    color: var(--roofy-primary);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .78rem;
}

/* Badges (discount + wa) */
.roofy-article-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.roofy-article-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .88rem;
    text-decoration: none;
}
.roofy-badge-discount {
    background: var(--roofy-primary);
    color: var(--roofy-dark);
}
.roofy-badge-wa {
    background: var(--roofy-wa);
    color: #fff;
}

/* Pulsing badge animation */
@keyframes roofy-pulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(201,162,39,.5); }
    50%       { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(201,162,39,0); }
}

/* Wave */
.roofy-article-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.roofy-article-hero-wave svg { width: 100%; height: 52px; }

/* ─── ARTICLE BODY LAYOUT ──────────────────── */
.roofy-article-main { padding: 52px 0; }
.roofy-single-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}
.roofy-single-article {
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem;
    border: 1px solid #eee;
}
.roofy-single-content {
    line-height: 1.9;
    color: #444;
    font-size: .97rem;
}
.roofy-single-content h2,
.roofy-single-content h3  { color: var(--roofy-dark); margin: 1.5rem 0 .7rem; font-weight: 800; }
.roofy-single-content p   { margin-bottom: 1rem; }
.roofy-single-content ul,
.roofy-single-content ol  { padding-right: 1.5rem; margin-bottom: 1rem; }
.roofy-single-content ul li { list-style: disc; margin-bottom: 6px; }
.roofy-single-content a   { color: var(--roofy-primary); font-weight: 700; text-decoration: underline; }

/* Tags */
.roofy-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid #eee;
    font-size: .8rem;
    color: var(--roofy-muted);
}
.roofy-tag-link {
    background: rgba(201,162,39,.1);
    border: 1px solid var(--roofy-primary);
    color: var(--roofy-primary);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}
.roofy-tag-link:hover { background: var(--roofy-primary); color: var(--roofy-dark); }

/* CTA inside article */
.roofy-article-cta-box {
    margin-top: 28px;
    background: var(--roofy-dark);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.roofy-article-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201,162,39,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roofy-primary);
    flex-shrink: 0;
}
.roofy-article-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.roofy-article-cta-text strong { color: #fff; font-size: 1rem; }
.roofy-article-cta-text span   { color: rgba(255,255,255,.65); font-size: .85rem; }
.roofy-article-cta-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* Prev / Next nav */
.roofy-single-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.roofy-nav-post {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--roofy-primary);
    font-size: .88rem;
    max-width: 45%;
}
.roofy-nav-post:hover { text-decoration: underline; }

/* Sidebar */
.roofy-single-sidebar { position: sticky; top: 80px; }
.roofy-sidebar-cta {
    background: var(--roofy-dark);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.roofy-sidebar-cta h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 7px; }
.roofy-sidebar-cta p  { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.roofy-sidebar-services {
    background: var(--roofy-light);
    border-radius: 16px;
    padding: 18px;
}
.roofy-sidebar-services h4 { font-size: .97rem; font-weight: 800; color: var(--roofy-dark); margin-bottom: 12px; }
.roofy-sidebar-service-link {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid #e8e0cc;
    font-size: .86rem;
    font-weight: 600;
    color: var(--roofy-text);
    transition: color .2s;
}
.roofy-sidebar-service-link:hover { color: var(--roofy-primary); }
.roofy-sidebar-service-link:last-child { border-bottom: none; }

/* ─── INNER PAGES ──────────────────────────── */
.roofy-page-main { padding: 56px 0; min-height: 50vh; }

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
    .roofy-why-grid          { grid-template-columns: repeat(2,1fr); }
    .roofy-services-grid     { grid-template-columns: repeat(3,1fr); }
    .roofy-articles-grid     { grid-template-columns: repeat(2,1fr); }
    .roofy-footer-top        { grid-template-columns: 1fr 1fr; }
    .roofy-footer-services-col { display: none; }
    .roofy-single-layout     { grid-template-columns: 1fr; }
    .roofy-single-sidebar    { position: static; }
}

@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav + buttons */
    .roofy-nav          { display: none; }
    .roofy-header-btns  { display: none; }
    .roofy-mobile-toggle { display: flex; }

    /* Gold mobile header background */
    .roofy-header { background: var(--roofy-primary); border-bottom: none; }
    .roofy-logo-dark { color: var(--roofy-dark); }
    .roofy-logo-gold { color: #fff; }
    .roofy-logo-icon { background: rgba(0,0,0,.2); }
    .roofy-mobile-toggle span { background: var(--roofy-dark); }
    .roofy-header--scrolled { box-shadow: 0 3px 16px rgba(0,0,0,.15); }

    /* Announce bar on mobile: compact */
    .roofy-announce-bar   { padding: 7px 0; font-size: .78rem; }
    .roofy-announce-inner { gap: 6px 12px; }
    .roofy-ann-sep        { display: none; }

    .roofy-hero-sidebar   { display: none; }
    .roofy-why-grid       { grid-template-columns: repeat(2,1fr); }
    .roofy-services-grid  { grid-template-columns: repeat(2,1fr); }
    .roofy-articles-grid  { grid-template-columns: 1fr; }
    .roofy-footer-top     { grid-template-columns: 1fr; }
    .roofy-seo-article    { padding: 22px 16px; }

    /* Article hero */
    .roofy-article-hero          { min-height: 360px; }
    .roofy-article-hero-inner    { padding: 36px 0 70px; }
    .roofy-article-cta-box       { flex-direction: column; text-align: center; }
    .roofy-article-cta-icon      { display: none; }
    .roofy-article-cta-btns      { justify-content: center; }
    .roofy-single-article        { padding: 1.4rem; }
}

@media (max-width: 520px) {
    .roofy-why-grid      { grid-template-columns: 1fr; }
    .roofy-services-grid { grid-template-columns: 1fr; }
    .roofy-hero-btns     { flex-direction: column; }
    .roofy-cta-btns      { flex-direction: column; max-width: 260px; margin: 0 auto; }
    .roofy-footer-bottom { padding: 16px 0; }
    .roofy-article-hero-badges { flex-direction: column; align-items: flex-start; }
}
