/* ============================================
   TASQONOMY WEBSITE STYLES
   ============================================ */

:root {
    /* Colors */
    --primary: #1a1a1a;
    --bg-page: #f1f5f9;
    --bg-surface: #ffffff;
    --bg-surface-alt: #fafafa;
    --border: #e5e5e5;
    --border-dashed: #cccccc;
    --text-primary: #1a1a1a;
    --text-secondary: #444444;
    --text-muted: #666666;
    --text-faint: #999999;
    --status-blue: #2563eb;
    --status-blue-text: #1d4ed8;
    --status-orange: #ea580c;
    --status-orange-text: #c2410c;
    --status-green: #16a34a;
    --status-green-text: #15803d;
    --highlight-bg: #fef3c7;

    /* Spacing & Radius */
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --section-padding: 100px 0;

    /* Typography */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-stack);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.6; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.eyebrow.blue { color: var(--status-blue-text); }
.eyebrow.orange { color: var(--status-orange-text); }
.eyebrow.green { color: var(--status-green-text); }

/* Section Intro (centered headers) */
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-intro h2 { margin-bottom: 16px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: var(--font-stack);
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 26, 26, 0.25); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================
   STATUS DOTS
   ============================================ */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.status-dot.blue { background: var(--status-blue); animation: glow-blue 2s ease-in-out infinite; }
.status-dot.orange { background: var(--status-orange); animation: glow-orange 2s ease-in-out infinite; }
.status-dot.green { background: var(--status-green); animation: glow-green 2s ease-in-out infinite; }

@keyframes glow-blue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    50% { box-shadow: 0 0 12px 6px rgba(37, 99, 235, 0.3); }
}
@keyframes glow-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5); }
    50% { box-shadow: 0 0 12px 6px rgba(234, 88, 12, 0.3); }
}
@keyframes glow-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
    50% { box-shadow: 0 0 12px 6px rgba(22, 163, 74, 0.3); }
}

/* ============================================
   TIPS BOX
   ============================================ */
.tips-box {
    background: var(--bg-surface-alt);
    border: 1px dashed var(--border-dashed);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}
.tips-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.tips-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    padding: 16px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}
.logo-text { font-size: 20px; font-weight: 700; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: var(--bg-surface-alt);
}

/* Hamburger Toggle Button */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    position: relative;
    transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hamburger Animation - X state */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay - Hidden on desktop */
.mobile-menu {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: var(--primary);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .logo-icon { background: white; color: var(--primary); }
.footer .logo-text { color: white; }
.footer p { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* ============================================
   HOME PAGE - HERO
   ============================================ */
.hero {
    background: var(--bg-page);
    padding: 100px 0 120px;
    text-align: center;
}
.hero .eyebrow { justify-content: center; }
.hero h1 { max-width: 700px; margin: 0 auto 24px; }
.hero .subtitle { max-width: 540px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; }

/* ============================================
   HOME PAGE - ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-1 {
    width: 80%;
    height: 420px;
    background: linear-gradient(135deg, var(--bg-page) 0%, #e2e8f0 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--text-muted);
}
.about-img-2 {
    width: 55%;
    height: 260px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    position: absolute;
    bottom: -30px;
    right: 0;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content > p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.about-list { list-style: none; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.check-icon {
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================
   HOME PAGE - SERVICES SECTION (Image Cards)
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-page);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.service-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-primary);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.service-card:nth-child(1) .service-img { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.service-card:nth-child(2) .service-img { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.service-card:nth-child(3) .service-img { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.service-card:nth-child(4) .service-img { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.service-card:nth-child(5) .service-img { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); }
.service-card:nth-child(6) .service-img { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%); }
.service-content { padding: 24px 28px; }
.service-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ============================================
   HOME PAGE - WHY CHOOSE US SECTION
   ============================================ */
.why-section {
    padding: var(--section-padding);
    background: var(--bg-surface);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content h2 { margin-bottom: 40px; }
.why-item { margin-bottom: 28px; }
.why-item:last-child { margin-bottom: 0; }
.why-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.why-item h4::before {
    content: "✓";
    width: 28px;
    height: 28px;
    background: var(--bg-page);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--status-green);
    font-weight: 700;
}
.why-item p {
    color: var(--text-muted);
    font-size: 15px;
    padding-left: 42px;
    line-height: 1.6;
}
.why-image {
    height: 480px;
    background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

/* ============================================
   HOME PAGE - OUR PROCESS SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.process-header {
    margin-bottom: 48px;
}
.process-header h2 { margin-bottom: 0; }
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.process-card {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}
.process-icon {
    font-size: 36px;
    margin-bottom: 20px;
}
.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   INNER PAGE HERO (Services, Apply, Contact)
   ============================================ */
.page-hero {
    background: var(--bg-surface);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ============================================
   BENEFITS GRID (Services & Apply pages)
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}
.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}
.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   FORM SECTION (Services & Apply pages)
   ============================================ */
.form-section {
    padding: 80px 0;
    background: var(--bg-surface);
}
.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.form-info h2 { margin-bottom: 20px; }
.form-info .subtitle { margin-bottom: 32px; }

.step-list { list-style: none; }
.step-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.step-item h4 { margin-bottom: 4px; }
.step-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow);
}
.form-header { margin-bottom: 28px; }
.form-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-stack);
    transition: all 0.2s;
    background: var(--bg-surface);
    height: 50px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
    height: auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}
.checkbox-item:hover { border-color: var(--text-muted); }
.checkbox-item:has(input:checked) {
    border-color: var(--primary);
    background: var(--bg-surface-alt);
}
.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}
.checkbox-item span {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
    padding: 60px 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}
.contact-sidebar {
    position: sticky;
    top: 100px;
}
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 20px;
}
.info-card h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text-secondary); }
.hours-list .time { font-weight: 600; }
.hours-list .closed { color: var(--text-faint); font-weight: 400; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .icon {
    width: 40px;
    height: 40px;
    background: var(--bg-page);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-method .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.contact-method .value {
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid,
    .form-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .process-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-sidebar {
        position: static;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    /* Mobile Menu - Only visible on mobile */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-surface);
        z-index: 99;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-links a {
        font-size: 24px;
        font-weight: 600;
        color: var(--text-muted);
        padding: 16px 32px;
        border-radius: var(--radius-pill);
        transition: all 0.2s;
        text-decoration: none;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a.active {
        color: var(--primary);
        background: var(--bg-page);
    }

    .container { padding: 0 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .benefits-grid,
    .checkbox-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-links { gap: 24px; }
}

