/* ============================================
   LOGAN CURRITO - Custom CSS
   Supplements Tailwind + Design System in Layout
   ============================================ */

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

/* Focus styles for accessibility */
.btn-lc:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    border-color: var(--federal-blue);
    box-shadow: 0 0 0 3px rgba(46, 109, 164, 0.15);
    outline: none;
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

/* Service tabs/accordions */
.service-tab {
    cursor: pointer;
    padding: 16px 24px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.service-tab:hover, .service-tab.active {
    background: var(--off-white);
    border-left-color: var(--brand-gold);
}

/* Animated counter */
.counter-animate {
    font-variant-numeric: tabular-nums;
}

/* Gold accent line */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
}

/* Value cards (Honor, Courage, Commitment) */
.value-card {
    text-align: center;
    padding: 40px 24px;
}
.value-card svg {
    width: 48px;
    height: 48px;
    color: var(--brand-gold);
    margin-bottom: 16px;
}

/* Loading spinner for forms */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}
.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll reveal override */
[data-aos="fade-up"] {
    transform: translateY(20px);
}
