/* ============================================
   INTER FONT (self-hosted)
   Variable font — single file covers weights 100-900.
   License: SIL Open Font License 1.1 (rsms.me/inter/)
   ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/InterVariable.woff2') format('woff2-variations'),
         url('fonts/InterVariable.woff2') format('woff2');
}

/* ============================================
   CSS CUSTOM PROPERTIES (THEMING)
   CUSTOMIZE: Change these values to rebrand the site
   ============================================ */
:root {
    --color-primary: #1B2A4A;
    --color-primary-light: #2A3F6B;
    --color-accent: #2ECC71;
    --color-accent-hover: #27AE60;
    --color-accent-light: #E8F8F0;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F9FC;
    --color-bg-dark: #0F1A2E;
    --color-border: #E2E8F0;
    --color-error: #E74C3C;
    --color-success: #2ECC71;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::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(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--outline:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 17px;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

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

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

.header__logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.logo-accent {
    color: var(--color-accent);
}

.header__nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 10px 24px;
    font-size: 14px;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #1a5276 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,204,113,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46,204,113,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-accent);
}

.service-card__icon i {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   BIN CARDS
   ============================================ */
.bins__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.bin-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.bin-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.bin-card--featured {
    border-color: var(--color-accent);
    transform: scale(1.03);
}

.bin-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.bin-card__badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--color-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.bin-card__header {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.bin-card__icon {
    margin: 0 auto 12px;
    max-width: 120px;
}

.bin-svg {
    width: 100%;
    height: auto;
}

.bin-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.bin-card__dims {
    font-size: 14px;
    color: var(--color-text-muted);
}

.bin-card__body {
    padding: 24px;
}

.bin-card__desc {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.bin-card__features {
    margin-bottom: 20px;
}

.bin-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
    padding: 6px 0;
}

.bin-card__features li i {
    color: var(--color-accent);
    flex-shrink: 0;
}

.bin-card__price {
    padding: 0 0 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.bin-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step__number {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step__icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-accent);
}

.step__icon i {
    width: 28px;
    height: 28px;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step__desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.step__connector {
    width: 60px;
    height: 2px;
    background: var(--color-border);
    margin-top: 46px;
    flex-shrink: 0;
}

/* ============================================
   SERVICE AREA
   ============================================ */
.area__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.area__regions {
    display: grid;
    gap: 20px;
}

.area__region {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
}

.area__region h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.area__region h3 i {
    color: var(--color-accent);
}

.area__region p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px;
}

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

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

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

.required {
    color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-error);
}

.form-error {
    display: block;
    font-size: 12px;
    color: var(--color-error);
    margin-top: 4px;
    min-height: 18px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cf-turnstile {
    margin-bottom: 20px;
}

.form-privacy {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-muted);
    text-align: center;
}

.form-privacy a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--color-accent-hover);
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: var(--color-accent-light);
    color: #1a7a3a;
    border: 1px solid var(--color-accent);
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: var(--color-error);
    border: 1px solid var(--color-error);
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact Info Sidebar */
.contact-info {
    padding: 8px 0;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info__item > i {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.contact-info__item a,
.contact-info__item span {
    font-size: 15px;
    color: var(--color-text-light);
}

.contact-info__item a:hover {
    color: var(--color-accent);
}

/* ============================================
   LEGAL / CONTENT PAGES (Privacy, Terms, etc.)
   ============================================ */
.legal-page {
    padding: 140px 0 80px;
    background: var(--color-bg);
}

.legal-page__container {
    max-width: 820px;
}

.legal-page__header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 40px;
}

.legal-page__header h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.legal-page__updated {
    font-size: 14px;
    color: var(--color-text-muted);
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 14px;
}

.legal-section ul {
    padding-left: 22px;
    margin-bottom: 14px;
    list-style: disc;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 6px;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-accent-hover);
}

.legal-section .contact-list {
    list-style: none;
    padding-left: 0;
}

.legal-section .contact-list li {
    margin-bottom: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.footer__logo .logo-icon {
    color: var(--color-accent);
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer__links a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-accent);
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 4px 0;
}

.footer__contact p i {
    color: var(--color-accent);
}

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

.footer__bottom p {
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   HERO — service area line under subtitle
   ============================================ */
.hero__areas {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: -20px;
    margin-bottom: 36px;
    letter-spacing: 0.2px;
}

/* ============================================
   STICKY MOBILE "CALL NOW" FLOATING BUTTON
   Hidden on desktop (nav already has phone/CTA).
   Visible on mobile only, above all content, pulse animation
   to draw attention without being obnoxious.
   ============================================ */
.mobile-call-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--color-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fab-pulse 2.4s ease-in-out infinite;
}

.mobile-call-fab:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.45);
    animation: none;
}

.mobile-call-fab i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

@keyframes fab-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(46, 204, 113, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15),
                    0 0 0 0 rgba(46, 204, 113, 0.55);
    }
    50% {
        box-shadow: 0 8px 24px rgba(46, 204, 113, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15),
                    0 0 0 14px rgba(46, 204, 113, 0);
    }
}

/* Respect users who have reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .mobile-call-fab {
        animation: none;
    }
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bins__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .bin-card--featured {
        transform: scale(1);
    }

    .bin-card--featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    /* Show the sticky Call Now button on mobile only */
    .mobile-call-fab {
        display: inline-flex;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow);
    }

    .header__nav.open {
        display: flex;
    }

    .header__nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 16px;
    }

    .header__nav .nav-link:last-child {
        border-bottom: none;
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
        padding: 100px 0 60px;
    }

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

    .section {
        padding: 60px 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bins__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps {
        flex-direction: column;
        gap: 24px;
    }

    .step__connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

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

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

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero__title {
        font-size: 1.8rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .btn--large {
        padding: 14px 28px;
        font-size: 15px;
    }
}
