/* LiftRight - Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #0C0C0E;
    --bg-card: #161619;
    --bg-subtle: #1C1C20;
    --amber: #F5A623;
    --amber-light: #FFCA6B;
    --amber-dim: rgba(245, 166, 35, 0.12);
    --amber-glow: rgba(245, 166, 35, 0.25);
    --text-primary: #F0F0F2;
    --text-secondary: #9A9AA0;
    --text-dim: #66666E;
    --border: #2A2A30;
    --success: #4ADE80;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--amber); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--amber); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber);
    color: #0C0C0E;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.nav-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--amber);
    background: var(--amber-dim);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 800px;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--amber);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--amber);
    color: #0C0C0E;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}
.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.25);
}
.btn-primary svg {
    width: 20px;
    height: 20px;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}
.btn-secondary:hover {
    border-color: var(--amber);
    background: var(--amber-dim);
}

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
}
.stat-number span { color: var(--amber); }
.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== DIVIDER ===== */
.divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.divider hr {
    border: none;
    border-top: 1px solid var(--border);
}

/* ===== SERVICES GRID ===== */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card:hover {
    border-color: rgba(245,166,35,0.3);
    transform: translateY(-2px);
}
.service-icon {
    width: 44px;
    height: 44px;
    background: var(--amber-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}
.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.service-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--amber);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== WHY SECTION ===== */
.why {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.why-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.why-left h2 em {
    font-style: normal;
    color: var(--amber);
}
.why-left p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1rem;
}
.why-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-marker {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--amber-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}
.why-item-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.why-item-text p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===== SERVICE AREA ===== */
.service-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.area-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.area-city {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: border-color 0.2s;
}
.area-city:hover {
    border-color: rgba(245,166,35,0.3);
}
.area-city .dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}
.area-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.area-map-visual {
    width: 100%;
    position: relative;
    text-align: center;
}
.area-map-visual .map-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber-dim);
    border: 1px solid rgba(245,166,35,0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    margin: 0.4rem;
    font-family: 'Space Grotesk', sans-serif;
}
.area-radius {
    margin-top: 1.5rem;
    text-align: center;
}
.area-radius .radius-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}
.area-radius .radius-badge span {
    color: var(--amber);
}
.area-radius p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

/* ===== CLOSING / CTA SECTION ===== */
.closing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}
.closing-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
}
.closing h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.closing h2 em {
    font-style: normal;
    color: var(--amber);
}
.closing p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.closing .cta-group {
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.closing-location {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== PAGE HERO (Service pages) ===== */
.page-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a {
    color: var(--text-dim);
    transition: color 0.2s;
}
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero .breadcrumb .sep { color: var(--border); }
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 700px;
    margin-bottom: 1.25rem;
}
.page-hero h1 em {
    font-style: normal;
    color: var(--amber);
}
.page-hero .hero-sub {
    margin-bottom: 2rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.content-main h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h2 em {
    font-style: normal;
    color: var(--amber);
}
.content-main p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.content-main ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.content-main ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 2rem;
}
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.25rem;
}
.sidebar-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}
.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.sidebar-card .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
}
.sidebar-list {
    list-style: none;
}
.sidebar-list li {
    margin-bottom: 0.5rem;
}
.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: background 0.15s, color 0.15s;
}
.sidebar-list li a:hover {
    background: var(--amber-dim);
    color: var(--text-primary);
}
.sidebar-list li a.active {
    background: var(--amber-dim);
    color: var(--amber);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== FLOATING CALL BUTTON (Mobile) ===== */
.floating-call {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    background: var(--amber);
    color: #0C0C0E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(245, 166, 35, 0.4), 0 0 0 4px rgba(245, 166, 35, 0.1);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: -0.3px;
    animation: pulse-glow 2.5s infinite;
}
.floating-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5), 0 0 0 6px rgba(245, 166, 35, 0.15);
}
.floating-call svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 24px rgba(245, 166, 35, 0.4), 0 0 0 4px rgba(245, 166, 35, 0.1); }
    50% { box-shadow: 0 4px 32px rgba(245, 166, 35, 0.55), 0 0 0 8px rgba(245, 166, 35, 0.15); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Show floating call */
    .floating-call { display: block; }

    /* Nav */
    .site-nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        gap: 1rem;
        z-index: 99;
    }
    .nav-links.open .nav-cta {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero { padding: 3rem 1.25rem 2.5rem; }
    .stats { gap: 2rem; }
    .stat-number { font-size: 2rem; }
    .cta-group { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

    /* Services */
    .services { padding: 3.5rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }

    /* Why */
    .why { padding: 3.5rem 1.25rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Service Area */
    .service-area { padding: 3.5rem 1.25rem; }
    .area-grid { grid-template-columns: 1fr; gap: 2rem; }
    .area-cities { grid-template-columns: 1fr; }

    /* Content */
    .content-section { padding: 2.5rem 1.25rem; }
    .content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .content-sidebar { position: static; }

    /* Page hero */
    .page-hero { padding: 2.5rem 1.25rem 2rem; }

    /* Closing */
    .closing { padding: 3rem 1.25rem 6rem; }
    .closing-box { padding: 2.5rem 1.5rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    /* Extra bottom padding for floating CTA */
    body { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .section-header h2 { font-size: 1.6rem; }
    .why-left h2 { font-size: 1.8rem; }
}
