/* ============================================
   JUNK REMOVAL VERO BEACH
   Clean, fast, conversion-optimized
   ============================================ */

:root {
    /* Brand Colors */
    --orange: #E8620A;
    --orange-dark: #C75408;
    --orange-light: #FFF3EB;
    --navy: #0F2B3C;
    --navy-light: #1A3D52;
    --slate: #374957;
    --gray-100: #F7F8FA;
    --gray-200: #E8ECF0;
    --gray-300: #D1D8DE;
    --gray-500: #7A8B97;
    --gray-700: #4A5B68;
    --white: #FFFFFF;
    --green: #1B9E5A;
    --green-light: #E8F8F0;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Sizing */
    --container: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(15,43,60,0.08), 0 4px 12px rgba(15,43,60,0.04);
    --shadow-lg: 0 4px 12px rgba(15,43,60,0.08), 0 16px 40px rgba(15,43,60,0.08);
    --shadow-xl: 0 8px 24px rgba(15,43,60,0.1), 0 24px 60px rgba(15,43,60,0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 600;
    transition: color 0.2s;
}

.top-bar-phone:hover { color: var(--orange); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
    transition: box-shadow 0.3s;
}

.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 8px;
    font-size: 16px;
}

.logo-text {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-sub {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    transition: color 0.2s;
}

.nav a:hover { color: var(--orange); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--orange);
    color: var(--white);
    white-space: nowrap;
}

.btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,98,10,0.3);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-full { width: 100%; }

.btn-outline {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--orange-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--orange);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background: var(--navy);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232,98,10,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,61,82,0.8) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(232,98,10,0.15);
    color: var(--orange);
    border: 1px solid rgba(232,98,10,0.3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.text-accent { color: var(--orange); }

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* Hero Form */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.hero-form-card h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.hero-form-card > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--gray-100);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,98,10,0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 16px;
    color: var(--gray-300);
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
    padding: 100px 0;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-tag {
    padding: 10px 22px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s;
}

.area-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 64px 0;
    background: var(--orange);
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-inner p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--gray-100);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-brand .logo-text { color: var(--white); }

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-hours {
    font-size: 14px;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 10px 12px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.mobile-cta-call {
    background: var(--green);
    color: var(--white);
}

.mobile-cta-quote {
    background: var(--orange);
    color: var(--white);
}

/* ============================================
   BLOG (shared layout classes)
   ============================================ */
.blog-header {
    background: var(--navy);
    padding: 48px 0;
    text-align: center;
}

.blog-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
}

.blog-header p {
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    font-size: 17px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    padding: 60px 0 100px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a:hover { color: var(--orange); }

.blog-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
}

/* Blog post single */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.blog-post h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-post-meta {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.blog-post h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
}

.blog-post h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
}

.blog-post p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate);
}

.blog-post ul, .blog-post ol {
    margin: 0 0 16px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate);
}

.blog-post li { margin-bottom: 8px; }

.blog-post-cta {
    background: var(--orange-light);
    border: 2px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}

.blog-post-cta h3 {
    color: var(--navy);
    margin: 0 0 8px;
}

.blog-post-cta p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-wrap {
        max-width: 480px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar span { display: none; }
    .top-bar-inner { justify-content: center; }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .nav.open { display: flex; }

    .nav-toggle { display: flex; }

    .hero { padding: 48px 0 64px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .steps-grid { flex-direction: column; align-items: center; }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: 8px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn { width: 100%; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .mobile-cta { display: flex; }

    body { padding-bottom: 72px; }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
}
