/* ========================================
   Fast Fix Property CO
   ======================================== */

:root {
    --primary: #e85d04;
    --primary-hover: #d45302;
    --primary-light: #fff4eb;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-700: #495057;
    --gray-500: #6c757d;
    --gray-300: #dee2e6;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --green: #2d6a4f;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3.5rem;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --max-w: 1120px;
    --header-h: 80px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--dark); }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px;
    font-weight: 600; font-size: var(--fs-base);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary); color: var(--white); border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover); border-color: var(--primary-hover);
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white); color: var(--dark); border-color: var(--white);
}
.btn-nav {
    background: var(--primary); color: var(--white) !important;
    padding: 10px 22px; border-radius: var(--radius-sm); font-size: var(--fs-sm);
}
.btn-nav:hover { background: var(--primary-hover); }
.btn-large { padding: 18px 40px; font-size: var(--fs-lg); }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(26,26,46,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.header.scrolled { background: rgba(26,26,46,0.98); box-shadow: var(--shadow-md); }

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

.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-icon { font-size: var(--fs-2xl); color: var(--primary); }
.logo-text { font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.3px; }
.logo-text strong { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,0.85); font-weight: 500; font-size: var(--fs-sm);
    transition: color var(--transition);
}
.nav-links a:not(.btn-nav):hover { color: var(--white); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #0f3460 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(232,93,4,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(15,52,96,0.5) 0%, transparent 55%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 120px 28px 80px; max-width: 780px;
}
.hero-badge {
    display: inline-block; padding: 8px 22px;
    background: rgba(232,93,4,0.15); color: var(--primary);
    border-radius: 50px; font-weight: 600; font-size: var(--fs-sm);
    letter-spacing: 0.5px; margin-bottom: 24px;
    border: 1px solid rgba(232,93,4,0.3);
}
.hero-title {
    font-size: var(--fs-5xl); font-weight: 800; color: var(--white);
    line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px;
}
.text-accent { color: var(--primary); }
.hero-subtitle {
    font-size: var(--fs-xl); color: rgba(255,255,255,0.7);
    max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}

/* ========================================
   SECTION SHARED
   ======================================== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; padding: 6px 18px;
    background: var(--primary-light); color: var(--primary);
    border-radius: 50px; font-weight: 600; font-size: var(--fs-xs);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-title {
    font-size: var(--fs-4xl); font-weight: 800; color: var(--dark);
    line-height: 1.2; letter-spacing: -1px; margin-bottom: 14px;
}
.section-desc { font-size: var(--fs-lg); color: var(--gray-500); line-height: 1.7; }

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background: var(--dark);
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.trust-badges {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-badge-text strong {
    color: var(--primary);
    font-size: var(--fs-lg);
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.trust-badge-text span {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    font-weight: 400;
    line-height: 1.3;
}
.trust-badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.trust-tagline {
    color: rgba(255,255,255,0.65);
    font-size: var(--fs-sm);
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
}
.trust-tagline strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ========================================
   SERVICES
   ======================================== */
.services { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.service-name {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.service-desc {
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.65;
}

/* Services Plus (supplementary services below the grid) */
.services-plus {
    margin-top: 32px;
    padding: 22px 28px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    text-align: center;
}
.services-plus p {
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}
.services-plus p strong {
    color: var(--dark);
    font-weight: 700;
}

/* ========================================
   WORK / BEFORE & AFTER
   ======================================== */
.work { background: var(--gray-100); }
.work-gallery { max-width: 900px; margin: 0 auto; }

.work-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 8px;
}
.work-card img {
    width: 100%;
    height: auto;
    display: block;
}
.work-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}
.before-badge { background: rgba(0,0,0,0.65); }
.after-badge { background: var(--green); }
.showcase-badge { background: var(--primary); }

.work-label {
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--dark);
    margin: 20px 0 28px;
}

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.about-content p {
    font-size: var(--fs-lg); color: var(--gray-700); line-height: 1.8; margin-bottom: 18px;
}
.about-coverage {
    background: var(--primary-light);
    border: 1px solid rgba(232,93,4,0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}
.coverage-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.coverage-text {
    font-size: var(--fs-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}
.coverage-text strong {
    color: var(--dark);
    font-weight: 700;
}
.coverage-text strong:last-child {
    color: var(--primary);
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; color: var(--dark); font-size: var(--fs-base);
}
.check { color: var(--green); font-weight: 700; font-size: var(--fs-lg); }
.about-cta { position: sticky; top: calc(var(--header-h) + 40px); }
.cta-card {
    background: var(--dark); color: var(--white); padding: 40px 32px;
    border-radius: var(--radius-lg); text-align: center;
}
.cta-card h3 { font-size: var(--fs-2xl); font-weight: 700; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,0.7); font-size: var(--fs-base); margin-bottom: 24px; }
.cta-card .btn { margin-bottom: 16px; }
.cta-note { display: block; font-size: var(--fs-xs); color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   CONTACT (simple centered CTA)
   ======================================== */
.contact { background: var(--primary-light); text-align: center; }
.contact-content { max-width: 560px; }
.contact-content .section-tag { margin-bottom: 16px; }
.contact-content .section-title { margin-bottom: 12px; }
.contact-content .section-desc { margin-bottom: 32px; }
.contact-content .btn-large { margin-bottom: 20px; }
.contact-detail {
    font-size: var(--fs-sm); color: var(--gray-500);
    margin-bottom: 4px;
}
.contact-detail:last-child { margin-bottom: 0; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 48px 0 0; }
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { color: var(--white); font-size: var(--fs-xl); font-weight: 500; }
.footer-brand strong { color: var(--primary); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-phone { font-size: var(--fs-xl); font-weight: 700; color: var(--primary); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-cta { position: static; }
    .work-gallery { max-width: 100%; }
}

@media (max-width: 768px) {
    :root { --fs-5xl: 2.5rem; --fs-4xl: 2rem; --fs-3xl: 1.75rem; }
    section { padding: 64px 0; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 340px; height: 100vh;
        background: var(--dark); flex-direction: column;
        align-items: flex-start; justify-content: center;
        padding: 48px 36px; gap: 22px;
        transition: right var(--transition); box-shadow: var(--shadow-lg);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: var(--fs-lg); }

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

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Header */
    :root { --header-h: 64px; }
    .logo-text { font-size: var(--fs-sm); }
    .logo-icon { font-size: var(--fs-xl); }

    /* Hero */
    .hero { min-height: 100dvh; }
    .hero-content { padding: 100px 0 56px; }
    .hero-badge { font-size: var(--fs-xs); padding: 6px 16px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: var(--fs-sm); margin-bottom: 28px; max-width: 320px; }
    .hero-actions { flex-direction: row; justify-content: center; gap: 10px; }
    .hero-actions .btn { width: auto; min-width: 0; padding: 14px 22px; font-size: var(--fs-sm); flex: none; }

    /* Trust Strip */
    .trust-strip { padding: 20px 0; }
    .trust-strip-inner { gap: 12px; }
    .trust-badges {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 2px;
    }
    .trust-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        padding: 0 6px;
        flex: 1 1 0;
        min-width: 0;
    }
    .trust-badge-text strong { font-size: 0.65rem; white-space: nowrap; }
    .trust-badge-text span { font-size: 0.6rem; white-space: nowrap; }
    .trust-badge-icon { font-size: 1.2rem; }
    .trust-badge-divider {
        width: 1px;
        height: 40px;
        flex-shrink: 0;
    }
    .trust-tagline { font-size: 0.65rem; padding: 0 10px; max-width: 100%; }

    /* Services */
    .service-card { padding: 24px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .service-name { font-size: var(--fs-base); }
    .service-icon { margin-left: auto; margin-right: auto; }

    /* Work */
    .work-card-badge { bottom: 8px; left: 8px; padding: 4px 12px; font-size: 0.65rem; }
    .work-label { font-size: var(--fs-base); margin: 14px 0 22px; }

    /* About */
    .about-features { grid-template-columns: 1fr; }
    .cta-card { padding: 32px 24px; }
    .cta-card h3 { font-size: var(--fs-xl); }

    /* Contact */
    .contact-detail { font-size: var(--fs-xs); }

    /* Footer */
    .footer { padding: 40px 0 0; }
    .footer-inner { gap: 16px; padding-bottom: 24px; }
    .footer-brand { font-size: var(--fs-lg); }
    .footer-links { flex-wrap: wrap; gap: 18px; }
    .footer-phone { font-size: var(--fs-lg); }

    /* More breathing room on small screens */
    section { padding: 56px 0; }
    .section-header { margin-bottom: 40px; padding: 0 4px; }
    .section-title { font-size: var(--fs-3xl); }
    .container { padding: 0 20px; }

    /* Buttons on mobile - full width and larger tap targets */
    .btn { padding: 16px 28px; font-size: var(--fs-base); }
    .btn-large { padding: 18px 32px; font-size: var(--fs-base); }
    .btn-nav { padding: 12px 20px; font-size: var(--fs-sm); }
}

/* ========================================
   TOAST
   ======================================== */
.toast {
    position: fixed; z-index: 9999;
    background: var(--dark); color: var(--white);
    padding: 10px 22px; border-radius: 50px;
    font-weight: 600; font-size: var(--fs-sm);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0) scale(1); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }
