/* ==========================================================================
   ELMIRA DIGITIZING HOUSE - PUBLIC WEBSITE STYLESHEET
   ========================================================================== */

:root {
    --primary: #121212;
    --primary-light: #1a1a1a;
    --accent: #ffbc00;
    --accent-hover: #e6a800;
    --accent-dark: #d49b00;
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 30px rgba(255, 188, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

/* --- STICKY GLASS HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 188, 0, 0.2);
    padding: 15px 0;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

/* --- BUTTONS --- */
.btn-accent {
    background-color: var(--accent);
    color: var(--primary) !important;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 12px 28px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent) !important;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 11px 26px;
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.btn-dark-custom {
    background-color: var(--primary);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 12px 28px;
    border: none;
}

.btn-dark-custom:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,188,0,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #a0aec0;
    margin-bottom: 35px;
}

.hero-card-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

/* --- STATS BAR --- */
.stats-bar {
    background-color: var(--accent);
    padding: 30px 0;
    color: var(--primary);
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* --- CARDS & SERVICES --- */
.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.custom-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
}

.custom-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 188, 0, 0.12);
    color: var(--accent-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* --- WORKFLOW STEPS --- */
.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--primary);
    color: #a0aec0;
    padding: 70px 0 30px;
    border-top: 3px solid var(--accent);
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 40px;
    font-size: 0.9rem;
}