/* ========================================
   Fulton Labs Development — Main Stylesheet
   ======================================== */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
    background: #faf9f6;
    -webkit-font-smoothing: antialiased;
}

/* Sans-serif elements */
h1, h2, h3, nav, footer,
.btn-primary, .btn-secondary, .btn-white,
.section-label, .service-tag, .badge,
.invoice-row, .portal-header, .trust-item,
.terminal, .contact-form, .form-group label,
.form-group input, .form-group textarea, .form-group select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a { transition: all 0.2s ease; }
img { max-width: 100%; height: auto; }

/* ========================================
   Navigation
   ======================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.logo span { color: #b45309; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #78716c;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover { color: #b45309; }

.nav-cta {
    background: #b45309;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
}

.nav-cta:hover { background: #a14708; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    margin: 5px 0;
    transition: all 0.3s;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 span { color: #b45309; }

.hero p {
    font-size: 1.15rem;
    color: #78716c;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #b45309;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { background: #a14708; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #b45309;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #d6a36c;
}

.btn-secondary:hover { border-color: #b45309; }

/* Terminal */
.terminal {
    background: #292524;
    border: 1px solid #44403c;
    border-radius: 12px;
    overflow: hidden;
}

.terminal-bar {
    background: #44403c;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #eab308; }
.terminal-dot.green { background: #22c55e; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 2;
    color: #e7e5e4;
}

.terminal-body .prompt { color: #d97706; }
.terminal-body .comment { color: #78716c; }
.terminal-body .success { color: #22c55e; }
.terminal-body .warn { color: #eab308; }

/* ========================================
   Trust Bar
   ======================================== */
.trust {
    background: #292524;
    padding: 3.5rem 5%;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d97706;
}

.trust-item .label {
    color: #a8a29e;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ========================================
   About
   ======================================== */
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b45309;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    font-family: -apple-system, sans-serif;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    color: #57534e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Divider */
.divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.divider hr {
    border: none;
    border-top: 1px solid #e7e5e4;
}

/* ========================================
   Services
   ======================================== */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5% 5rem;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b45309;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.section-subtitle {
    color: #78716c;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

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

.service-card {
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e7e5e4;
    transition: all 0.2s;
}

.service-card:hover {
    border-color: #d6a36c;
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.06);
}

.service-tag {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #78716c;
    font-size: 0.92rem;
    line-height: 1.6;
    font-family: Georgia, serif;
}

/* ========================================
   Security
   ======================================== */
.security {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.security-box {
    background: linear-gradient(135deg, #292524, #3b1f0b);
    border: 1px solid #44403c;
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    color: #e7e5e4;
}

.security-box h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.security-box p {
    color: #a8a29e;
    line-height: 1.7;
    font-family: Georgia, serif;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-family: -apple-system, sans-serif;
    font-size: 0.95rem;
}

.security-check {
    color: #22c55e;
    font-weight: bold;
}

/* ========================================
   Testimonial
   ======================================== */
.quote {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
    text-align: center;
}

.quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #57534e;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.quote cite {
    color: #a8a29e;
    font-size: 0.9rem;
    font-style: normal;
    font-family: -apple-system, sans-serif;
}

/* ========================================
   Portal Preview
   ======================================== */
.portal-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5% 5rem;
}

.portal-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e7e5e4;
    margin-bottom: 1.5rem;
}

.portal-header h3 { font-size: 1.1rem; }

.badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.invoice-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f4;
    font-size: 0.9rem;
    color: #57534e;
}

.invoice-row.header {
    font-weight: 700;
    color: #a8a29e;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount { font-weight: 600; color: #2c2c2c; }
.status-paid { color: #16a34a; font-weight: 600; }
.status-pending { color: #d97706; font-weight: 600; }

/* ========================================
   CTA
   ======================================== */
.cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #292524, #44403c);
    border-radius: 16px;
    padding: 4rem 2rem;
    color: #fff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.cta-box p {
    color: #a8a29e;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-family: Georgia, serif;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: #292524;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, sans-serif;
}

.btn-white:hover { background: #f5f5f4; }

/* ========================================
   Contact Section
   ======================================== */
.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

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

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.contact > p,
.contact-info p {
    color: #57534e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: -apple-system, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b45309;
}

.contact-form {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 12px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #57534e;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e7e5e4;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #faf9f6;
    color: #2c2c2c;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b45309;
}

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

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
}

/* ========================================
   Footer
   ======================================== */
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    border-top: 1px solid #e7e5e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a8a29e;
    font-size: 0.85rem;
    font-family: -apple-system, sans-serif;
}

footer a {
    color: #a8a29e;
    text-decoration: none;
}

footer a:hover { color: #b45309; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #faf9f6;
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1rem;
        border-bottom: 1px solid #e7e5e4;
        z-index: 100;
    }

    .nav-links.active { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 5% 3rem;
    }

    .hero h1 { font-size: 2.2rem; }

    .about { grid-template-columns: 1fr; gap: 2rem; }

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

    .trust-inner { grid-template-columns: repeat(2, 1fr); }

    .security-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

    .invoice-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .cta-box { padding: 3rem 1.5rem; }

    footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .trust-item .number { font-size: 2rem; }
}
