/* Light mode theme inspired by trumpcard.gov */
:root {
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --bg-cream: #f5f3ef;
    --bg-warm: #efe9e0;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-muted: #6b6b6b;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #a68621;
    --accent: #c9a227;
    --border: #e0dcd4;
    --border-dark: #c5c0b8;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    margin: 0 0 1rem;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }
.phone-link, .address-link { color: var(--text-body); }
.phone-link:hover, .address-link:hover { color: var(--gold); }

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 50px;
}
.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--text-dark);
    color: var(--bg-white);
}
.btn-secondary:hover {
    background: #333;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-large { padding: 1.25rem 3rem; font-size: 1rem; }
.btn-small { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.top-bar {
    background: var(--bg-white);
    padding: 0.4rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    height: 56px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
}
.logo:hover { color: var(--text-dark); }
.logo-img { height: 24px; width: auto; }
.logo span { font-weight: 400; }
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links li {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: var(--text-body);
    font-size: 0.85rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 2rem 3rem;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1235 650"><rect fill="%23b31942" y="0" width="1235" height="50"/><rect fill="%23fff" y="50" width="1235" height="50"/><rect fill="%23b31942" y="100" width="1235" height="50"/><rect fill="%23fff" y="150" width="1235" height="50"/><rect fill="%23b31942" y="200" width="1235" height="50"/><rect fill="%23fff" y="250" width="1235" height="50"/><rect fill="%23b31942" y="300" width="1235" height="50"/><rect fill="%23fff" y="350" width="1235" height="50"/><rect fill="%23b31942" y="400" width="1235" height="50"/><rect fill="%23fff" y="450" width="1235" height="50"/><rect fill="%23b31942" y="500" width="1235" height="50"/><rect fill="%23fff" y="550" width="1235" height="50"/><rect fill="%23b31942" y="600" width="1235" height="50"/><rect fill="%230a3161" width="494" height="350"/></svg>') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}
.hero h1,
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
    position: relative;
}

/* Elegant text animation */
.hero-title .word {
    display: inline-block;
    transform-origin: center bottom;
    position: relative;
}
.hero-title .word.highlight {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite 1.5s;
}
@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-40deg);
        filter: blur(4px);
    }
    60% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}
@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}
.hero-title .word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    opacity: 0;
}
.hero-title .word.highlight::after {
    animation: underlineReveal 0.6s ease-out forwards;
    animation-delay: calc(var(--delay) * 0.15s + 0.9s);
}
@keyframes underlineReveal {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}
.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: taglineFade 1s ease-out forwards 1.2s;
}
@keyframes taglineFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
        letter-spacing: 0.05em;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    position: relative;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* Page Header */
.page-header {
    padding: 8rem 0 2.5rem;
    text-align: center;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: var(--text-muted);
    margin: 0;
}

section { padding: 3rem 0; }

/* Intro */
.intro {
    background: var(--bg-cream);
}
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.intro h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.intro p { color: var(--text-body); font-size: 1.1rem; }
.intro strong { color: var(--text-dark); }

/* Services Grid */
.services-preview, .services-full { background: var(--bg-light); }
.services-preview h2, .services-full h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px;
}
.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.service-card.featured { border-color: var(--gold); }
.service-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
.service-card p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

/* Service Full Cards */
.service-full-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    position: relative;
}
.service-full-card.featured { border-color: var(--gold); }
.service-full-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.service-icon-large { font-size: 2.5rem; }
.service-tagline { color: var(--text-muted); margin: 0.5rem 0 0; }
.service-full-body { color: var(--text-body); }
.service-full-body h4 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
}
.service-full-body ul { padding-left: 1.25rem; }
.service-full-body li { margin-bottom: 0.5rem; }

/* Consultation Section */
.consultation-info { background: var(--bg-white); }
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}
.consult-content h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.consult-item { margin-bottom: 2rem; }
.consult-item h4 {
    color: var(--gold-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.consult-item p { color: var(--text-body); margin: 0; }
.cta-box {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
}
.cta-box h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.cta-box p { color: var(--text-body); }
.cta-box .price {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin: 1.5rem 0;
    font-family: 'Playfair Display', serif;
}

/* About Founder */
/* Founder Preview on Home */
.about-founder-preview {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    position: relative;
    overflow: hidden;
}
.about-founder-preview::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent 0%, rgba(191,10,48,0.1) 100%);
}
.founder-preview-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.founder-preview-image {
    flex-shrink: 0;
}
.founder-preview-image img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.founder-preview-text {
    position: relative;
    z-index: 1;
}
.founder-preview-text h2 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.founder-preview-text h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.founder-preview-text p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
}
.founder-preview-text .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}
.founder-preview-text .btn-outline:hover {
    background: var(--gold);
    color: var(--text-dark);
}
@media (max-width: 768px) {
    .founder-preview-content {
        flex-direction: column;
        text-align: center;
    }
    .founder-preview-image img {
        width: 150px;
        height: 190px;
    }
}

/* Testimonials */
.testimonials { background: var(--bg-cream); }
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2rem;
    margin: 0;
    border-radius: 8px;
}
.testimonial p {
    color: var(--text-body);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.testimonial cite {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: var(--bg-warm);
    text-align: center;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { color: var(--text-body); margin-bottom: 2rem; }

/* Service Detail */
.service-detail { background: var(--bg-light); }
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}
.detail-description, .detail-requirements, .detail-benefits { margin-bottom: 3rem; }
.detail-description h2, .detail-requirements h2, .detail-benefits h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.detail-description p, .detail-requirements p { color: var(--text-body); }
.requirements-list, .benefits-list { padding-left: 1.25rem; color: var(--text-body); }
.requirements-list li, .benefits-list li { margin-bottom: 0.75rem; }
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { color: var(--success); }
.benefits-list li::before { content: '→ '; color: var(--gold); }
.sidebar-cta, .sidebar-contact {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}
.sidebar-cta h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.sidebar-cta p { color: var(--text-body); margin-bottom: 1.5rem; }
.sidebar-contact h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.sidebar-contact p { color: var(--text-body); margin: 0.25rem 0; }

/* Booking */
.booking-section { background: var(--bg-light); }
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}
.booking-form-container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
}
.booking-form h2 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.booking-form h2:first-child { margin-top: 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 6px;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-notice {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 6px;
    color: var(--text-body);
}
.form-notice strong { color: var(--gold-dark); }
.booking-info .info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.booking-info .info-card h3 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}
.booking-info ul { padding-left: 1rem; color: var(--text-body); margin: 0; }
.booking-info li { margin-bottom: 0.5rem; }

/* Thank You */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background: var(--bg-white);
}
.thankyou-content { max-width: 550px; }
.thankyou-icon {
    width: 80px; height: 80px;
    border: 2px solid var(--success);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}
.thankyou-section h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.thankyou-section .lead { color: var(--text-body); font-size: 1.1rem; }
.payment-prompt {
    background: var(--bg-cream);
    border: 2px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}
.payment-prompt h3 {
    color: var(--gold-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.payment-prompt p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}
.thankyou-details {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    border-radius: 8px;
}
.thankyou-details h3 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}
.thankyou-details ol { padding-left: 1.25rem; color: var(--text-body); }
.thankyou-details li { margin-bottom: 0.75rem; }
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.thankyou-contact { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-section { background: var(--bg-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.contact-card p { color: var(--text-body); margin: 0; }
.cta-card {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
}
.cta-card h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.cta-card p { color: var(--text-body); margin-bottom: 1.5rem; }
.cta-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }

/* Footer */
.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.25rem;
}
.footer-col p { color: var(--text-body); font-size: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-body); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Screening */
.screening-section { background: var(--bg-light); min-height: 70vh; }
.screening-intro { text-align: center; margin-bottom: 3rem; }
.screening-intro h2 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.screening-intro p { color: var(--text-body); }
.visa-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.visa-option {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}
.visa-option:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.visa-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.visa-option h3 { color: var(--text-dark); margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.visa-option p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }

.screening-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
}
.screening-header { margin-bottom: 2rem; }
.back-link { color: var(--text-muted); font-size: 0.85rem; display: inline-block; margin-bottom: 1rem; }
.back-link:hover { color: var(--gold); }
.screening-header h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.screening-header p { color: var(--text-body); margin: 0; }
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.form-section:last-of-type { border-bottom: none; }
.form-section h3 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}
.question-group {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.question-group label:first-child {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}
.radio-group { display: flex; gap: 1.5rem; }
.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-body);
}
.radio-option input { accent-color: var(--gold); }

/* Results */
.results-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--bg-white);
}
.results-card {
    max-width: 550px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
}
.score-display { margin-bottom: 2rem; }
.score-circle {
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--border);
}
.score-circle.strong { border-color: var(--success); }
.score-circle.moderate { border-color: var(--gold); }
.score-circle.review, .score-circle.needs_review { border-color: var(--warning); }
.score-circle.weak { border-color: var(--danger); }
.score-value { font-size: 2.5rem; font-weight: 600; line-height: 1; color: var(--text-dark); }
.score-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.results-card h1 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.result-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 20px;
}
.result-badge.strong { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.result-badge.moderate { background: rgba(201, 162, 39, 0.15); color: var(--gold-dark); }
.result-badge.review { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.result-badge.weak { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.result-summary { color: var(--text-body); line-height: 1.7; margin-bottom: 2rem; }
.next-steps {
    text-align: left;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}
.next-steps h3 { font-size: 1rem; margin-bottom: 1rem; }
.next-steps ol { padding-left: 1.25rem; color: var(--text-body); margin: 0; }
.next-steps li { margin-bottom: 0.5rem; }
.results-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Payment Results */
.payment-result {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--bg-white);
}
.result-card {
    max-width: 500px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
}
.result-card.success { border-top: 4px solid var(--success); }
.result-card.cancelled { border-top: 4px solid var(--danger); }
.result-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}
.result-card.success .result-icon { border: 2px solid var(--success); color: var(--success); }
.result-card.cancelled .result-icon { border: 2px solid var(--danger); color: var(--danger); }
.result-card h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.result-card .lead { color: var(--text-body); margin-bottom: 2rem; }
.result-details {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    border-radius: 6px;
    color: var(--text-body);
}
.result-details p { margin: 0.5rem 0; }
.result-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.result-contact { color: var(--text-muted); font-size: 0.9rem; }

/* Admin */
.admin-header {
    background: var(--bg-white);
    padding: 8rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.admin-header h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.admin-header p { color: var(--text-body); margin: 0; }
.admin-section { padding: 2rem 0; background: var(--bg-light); }
.admin-nav {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}
.admin-nav a {
    padding: 1rem 1.5rem;
    color: var(--text-body);
    font-size: 0.9rem;
    border-right: 1px solid var(--border);
}
.admin-nav a:last-child { border-right: none; }
.admin-nav a:hover, .admin-nav a.active { background: var(--bg-cream); color: var(--text-dark); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}
.stat-number { font-size: 3rem; font-weight: 600; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.stat-card.pending .stat-number { color: var(--warning); }
.stat-card.confirmed .stat-number { color: var(--gold); }
.stat-card.completed .stat-number { color: var(--success); }
.admin-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}
.admin-panel h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { font-weight: 500; color: var(--text-muted); font-size: 0.85rem; }
.admin-table tr:hover { background: var(--bg-cream); }
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}
.status-pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-confirmed { background: rgba(201, 162, 39, 0.15); color: var(--gold-dark); }
.status-completed { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.status-cancelled { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.filter-bar { display: flex; gap: 0; margin-bottom: 1.5rem; }
.filter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-body);
    font-size: 0.85rem;
}
.filter-btn:first-child { border-radius: 6px 0 0 6px; }
.filter-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 6px 6px 0; }
.filter-btn:hover { background: var(--bg-cream); }
.detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; }
.detail-list { margin: 0; }
.detail-list dt { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.detail-list dt:first-child { margin-top: 0; }
.detail-list dd { margin: 0.25rem 0 0 0; color: var(--text-body); }
.admin-grid { display: grid; grid-template-columns: 400px 1fr; gap: 2rem; }
.empty-state { text-align: center; color: var(--text-muted); padding: 3rem; }

/* User menu */
.user-menu { display: flex; align-items: center; gap: 0.5rem; }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; }
.user-name { color: var(--text-body); font-size: 0.9rem; }
.logout-link { color: var(--text-muted) !important; font-size: 0.8rem; margin-left: 0.5rem; }
.logout-link:hover { color: var(--danger) !important; }
.btn-signin {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: 4px !important;
    border: 1px solid var(--border) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    height: 32px;
    box-sizing: border-box;
}
.btn-signin svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
}
.btn-signin:hover { 
    background: var(--bg-cream) !important; 
    border-color: var(--border-dark) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .consult-grid, .detail-grid, .booking-grid, .contact-grid, .detail-layout, .admin-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

/* Error Pages (404, Unauthorized) */
.error-page,
.unauthorized-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f7f4 0%, #efe9e0 100%);
    padding: 2rem;
}
.error-content,
.unauthorized-content {
    text-align: center;
    max-width: 600px;
}
.eagle-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}
.eagle-image-full {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}
.eagle-perch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}
.eagle-image-golden {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
    margin-bottom: -20px;
}
.eagle-perch .error-actions {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}
.error-page h1,
.unauthorized-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.error-page .error-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.error-page p,
.unauthorized-page p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.error-page .error-message,
.unauthorized-page .subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.error-actions,
.unauthorized-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page - Patriotic Theme */
.about-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #2a3a5a 100%);
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/static/flag-pattern.svg') repeat;
    opacity: 0.05;
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bf0a30 0%, #bf0a30 33%, #ffffff 33%, #ffffff 66%, #002868 66%, #002868 100%);
}
.about-hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 1;
}
.about-image-wrapper {
    position: relative;
    flex-shrink: 0;
}
.about-portrait {
    width: 320px;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 4px solid rgba(255,255,255,0.2);
}
.portrait-frame {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    pointer-events: none;
}
.about-intro {
    color: #fff;
}
.about-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.about-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.about-tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    line-height: 1.6;
}

.about-story {
    padding: 4rem 0;
    background: var(--bg-white);
}
.story-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.american-flag-accent {
    position: absolute;
    top: 0; left: -60px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #bf0a30 0%, #bf0a30 33%, #ffffff 33%, #ffffff 66%, #002868 66%, #002868 100%);
    border-radius: 2px;
}
.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.story-lead {
    font-size: 1.25rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.story-content p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-credentials {
    padding: 4rem 0;
    background: var(--bg-cream);
}
.about-credentials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.credential-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.credential-card .credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.credential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}
.credential-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-values {
    padding: 4rem 0;
    background: var(--bg-white);
}
.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.values-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.values-list li:last-child { border-bottom: none; }
.values-list strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}
.values-list span {
    color: var(--text-body);
    font-size: 0.95rem;
}
.values-quote {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}
.values-quote::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 1.5rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}
.values-quote blockquote {
    color: #fff;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}
.values-quote cite {
    color: var(--gold);
    font-size: 1rem;
    font-style: normal;
}

.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    text-align: center;
}
.about-cta h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.about-cta p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.about-cta .btn-primary {
    background: var(--text-dark);
    color: #fff;
}
.about-cta .btn-primary:hover {
    background: #333;
}

@media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .about-portrait {
        width: 250px;
        height: 320px;
    }
    .about-intro h1 { font-size: 2rem; }
    .about-tagline { font-size: 1.1rem; }
    .american-flag-accent { display: none; }
    .values-content { grid-template-columns: 1fr; gap: 2rem; }
}

/* Admin invoices page */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.admin-content {
    margin-top: 2rem;
}
.admin-content .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
}
.admin-content .admin-header h1 {
    font-size: 1.75rem;
}
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.table th {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
}
.table tr:hover {
    background: #f8f9fa;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
}
.text-center {
    text-align: center;
}

/* ============================================
   RESPONSIVE ADMIN STYLES
   ============================================ */

/* Admin Navigation - Mobile */
@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .admin-nav a {
        flex: 1 1 auto;
        text-align: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border: 1px solid var(--border);
        border-radius: 4px;
    }
    
    .admin-content .admin-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .admin-content .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-content .admin-header .btn {
        width: 100%;
        text-align: center;
    }
}

/* Admin Tables - Responsive */
@media (max-width: 900px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 700px;
    }
    
    .table th, .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 4px 6px;
        font-size: 11px;
    }
}

/* Card stacking on mobile */
@media (max-width: 768px) {
    .card {
        border-radius: 0;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Modal - Responsive */
@media (max-width: 600px) {
    .modal {
        align-items: flex-end;
        padding: 0;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        margin: 0;
    }
    
    .modal-lg {
        max-width: 100%;
    }
    
    .modal-header {
        padding: 16px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-content form {
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.65rem;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Admin Dashboard Stats */
@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Toast positioning on mobile */
@media (max-width: 600px) {
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        text-align: center;
    }
}

/* Admin Customers Table */
@media (max-width: 768px) {
    .admin-customers .table {
        min-width: 600px;
    }
}

/* Badges on mobile */
@media (max-width: 600px) {
    .badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Button groups on mobile */
@media (max-width: 600px) {
    td .btn-sm {
        display: block;
        width: 100%;
        margin-bottom: 4px;
    }
    
    td form[style*="inline"] {
        display: block;
        width: 100%;
    }
    
    td form[style*="inline"] .btn-sm {
        width: 100%;
    }
}

/* Customer edit page */
@media (max-width: 600px) {
    .admin-content .card {
        padding: 1rem !important;
    }
}

/* Admin section padding */
@media (max-width: 768px) {
    .admin-section {
        padding: 1rem 0;
    }
    
    .admin-section .container {
        padding: 0 1rem;
    }
    
    .admin-header {
        padding: 1rem;
    }
    
    .admin-panel {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-panel h2 {
        font-size: 1.25rem;
    }
}

/* Filter bar responsive */
@media (max-width: 600px) {
    .filter-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        flex: 1 1 auto;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}
