/* ===== SHARED NAV STYLES ===== */
:root {
    --gold-color: #D4AF37;
    --silver-color: #C0C0C0;
    --dark-bg: #111111;
    --card-bg: #1a1a1a;
}

* { box-sizing: border-box; }

.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(17,17,17,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212,175,55,0.2); padding: 0 20px; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-full { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link-item { color: #ccc; text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s; white-space: nowrap; }
.nav-link-item:hover { color: var(--gold-color); background: rgba(212,175,55,0.1); }
.nav-link-item.active { color: var(--gold-color); }
.nav-link-item.cta { background: linear-gradient(135deg, var(--gold-color) 0%, #b8962e 100%); color: #111111; font-weight: 700; }
.nav-link-item.cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.nav-phone { color: #4ade80; font-weight: 700; font-size: 1rem; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-phone:hover { color: #6ee7a0; }
.menu-btn { background: transparent; border: none; padding: 8px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.menu-btn span { display: block; width: 24px; height: 3px; background: var(--gold-color); border-radius: 2px; transition: all 0.3s; }
.menu-btn:hover span { background: #f5d67b; }
@media (max-width: 991px) { .nav-links { display: none; } }
@media (max-width: 576px) { .nav-brand-name { font-size: 0.9rem; } .nav-phone .phone-text { display: none; } }

/* Offcanvas */
.offcanvas { background: var(--card-bg) !important; border-right: 1px solid rgba(255,255,255,0.1) !important; }
.offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
.offcanvas-title { color: var(--gold-color); font-weight: 700; }
.nav-menu-item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: #fff; text-decoration: none; border-radius: 12px; margin: 8px 0; transition: all 0.3s; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.nav-menu-item:hover { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.3); color: var(--gold-color); transform: translateX(5px); }
.nav-menu-item.active-menu { border-color: rgba(212,175,55,0.3); background: rgba(212,175,55,0.1); }
.nav-menu-item span.emoji { font-size: 1.5rem; }
.nav-menu-item .menu-text h6 { margin: 0; font-weight: 600; font-size: 1rem; }
.nav-menu-item .menu-text p { margin: 0; font-size: 0.8rem; color: #888; }

/* ===== SHARED PAGE STYLES ===== */
/* Base body for subpages */
body.subpage {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Hero sections on subpages */
.page-hero {
    padding: 70px 20px 50px;
    text-align: center;
    margin-top: 64px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.02) 100%);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.page-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: #a0a0a0;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

.page-content.wide {
    max-width: 1100px;
}

/* Section cards */
.section-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.section-card:hover {
    border-color: rgba(212,175,55,0.2);
}

.section-card h2,
.section-card h3 {
    color: var(--gold-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
}

.section-card p {
    color: #bbb;
    line-height: 1.75;
}

.section-card ul {
    color: #bbb;
    line-height: 2;
    padding-left: 20px;
}

.section-card li strong {
    color: var(--gold-color);
}

/* CTA boxes */
.page-cta-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.03) 100%);
    border: 2px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.page-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.page-cta-box h4 {
    color: var(--gold-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.page-cta-box p {
    color: #bbb;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA buttons */
.cta-btn {
    background: linear-gradient(135deg, var(--gold-color) 0%, #c9a227 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(212,175,55,0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,175,55,0.35);
    color: #000;
}

.cta-btn.green {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    box-shadow: 0 4px 16px rgba(74,222,128,0.2);
}

.cta-btn.green:hover {
    box-shadow: 0 6px 24px rgba(74,222,128,0.35);
}

.cta-btn.blue {
    background: linear-gradient(135deg, #4285f4, #34a853);
    box-shadow: 0 4px 16px rgba(66,133,244,0.2);
}

.cta-btn.blue:hover {
    box-shadow: 0 6px 24px rgba(66,133,244,0.35);
}

/* Service areas line */
.service-areas {
    color: #777;
    font-size: 0.8rem;
    margin-top: 24px;
    line-height: 1.8;
}

.service-areas strong {
    color: var(--gold-color);
}

/* Alert banner */
.alert-banner {
    background: linear-gradient(135deg, rgba(239,68,68,0.12) 0%, rgba(239,68,68,0.04) 100%);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Shared footer */
.shared-footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 48px 20px 24px;
}

.shared-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.shared-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

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

.shared-footer h5 {
    color: var(--gold-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.shared-footer p,
.shared-footer a {
    color: #888;
    font-size: 0.88rem;
    text-decoration: none;
    line-height: 1.7;
}

.shared-footer a:hover {
    color: var(--gold-color);
}

.shared-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shared-footer .footer-links li {
    margin-bottom: 8px;
}

.shared-footer .footer-links a {
    color: #888;
    transition: color 0.2s;
}

.shared-footer .footer-divider {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.shared-footer .footer-divider p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.shared-footer .footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.shared-footer .footer-badge-item {
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 8px;
    padding: 6px 12px;
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Subpage mobile tweaks */
@media (max-width: 576px) {
    .page-hero { padding: 50px 16px 40px; }
    .page-content { padding: 36px 16px 48px; }
    .section-card { padding: 22px 18px; }
    .page-cta-box { padding: 28px 18px; }
}
