/* Langley Handyman - Styles */
/* Clean, modern, professional: navy, white, orange accent */

:root {
    --color-bg: #F8FAFC;
    --color-white: #FFFFFF;
    --color-navy: #1E3A5F;
    --color-navy-dark: #152B47;
    --color-navy-light: #2A4E75;
    --color-orange: #E86A33;
    --color-orange-hover: #F07B45;
    --color-green: #2D8A5E;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-border: #E2E8F0;
    --font-main: 'Outfit', -apple-system, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.08);
    --shadow: 0 10px 40px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-navy);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--color-orange);
    color: white !important;
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--color-orange-hover) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(232, 106, 51, 0.3);
}

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

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

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: var(--color-white);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, white 0%, white 15%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 460px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    justify-content: center;
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn-primary:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 106, 51, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-border);
}

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

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

.btn-light:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Section tag */
.section-tag {
    display: inline-block;
    color: var(--color-orange);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--color-text-light);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--color-bg);
}

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

.service-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.service-icon.blue { background: rgba(30, 58, 95, 0.08); color: var(--color-navy); }
.service-icon.orange { background: rgba(232, 106, 51, 0.1); color: var(--color-orange); }
.service-icon.green { background: rgba(45, 138, 94, 0.1); color: var(--color-green); }

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 10px;
}

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

/* CTA Band */
.cta-band {
    background: var(--color-navy);
    padding: 72px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.feat-icon {
    width: 22px;
    height: 22px;
    color: var(--color-green);
    flex-shrink: 0;
}

.about-info-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.about-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.area {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}

.info-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.info-dot {
    width: 6px;
    height: 6px;
    background: var(--color-green);
    border-radius: 50%;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-text > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 1rem;
}

.contact-boxes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-box {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 18px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.c-box:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.c-icon {
    width: 40px;
    height: 40px;
    background: var(--color-navy);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon svg {
    width: 18px;
    height: 18px;
}

.c-info strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.c-info span {
    color: var(--color-navy);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form-wrap {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-navy-dark);
    color: white;
    padding: 56px 0 20px;
}

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

.footer-brand {
    display: flex;
    gap: 14px;
}

.footer-brand .logo-icon {
    background: var(--color-orange);
    flex-shrink: 0;
}

.footer-brand strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-info a,
.footer-contact-info p {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-img {
        position: relative;
        width: 100%;
        height: 280px;
        order: -1;
    }
    
    .hero-gradient {
        background: linear-gradient(to bottom, transparent 0%, white 100%);
    }
    
    .hero-content {
        max-width: 100%;
        padding: 40px 24px 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
