/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

@media (min-width: 768px) { body { font-size: 17px; } }

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

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 { font-size: 1.5rem; color: var(--primary-color); font-weight: 700; }
.logo a { text-decoration: none; }

.nav-main { display: block; }

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

.nav-menu a {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-light);
    font-weight: 700;
}

.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-color);
}

.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--accent-color);
    padding-left: calc(1.5rem - 3px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero-title { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.95; }

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    scroll-margin-top: 90px;
}

.hero-card:hover { transform: translateY(-8px); }

.hero-card.featured {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.card-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.75rem;
}

.card-header { margin-bottom: 1.5rem; }
.card-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }

.current-rate {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.rate-new { background: var(--accent-color); }

.hero-card p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }

.card-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--secondary-color); transform: scale(1.02); }

.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: white; }

.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }

.btn-small {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-small:hover { background: var(--secondary-color); transform: scale(1.05); }

/* ===== LATEST RATES ===== */
.latest-rates { padding: 5rem 0; background: var(--bg-light); }

.section-title { text-align: center; font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.05rem; }

.government-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.central-section { border-top: 5px solid var(--primary-color); }
.wb-section { border-top: 5px solid var(--accent-color); }

.gov-heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-dark);
}

.rate-table-wrapper { margin-bottom: 3rem; }
.rate-table-wrapper:last-child { margin-bottom: 0; }

.table-subheading {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
}

.rates-table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.rates-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 500px;
}

.rates-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.rates-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:hover { background: var(--bg-light); }

.current-rate-row { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); font-weight: 600; }

.rate-highlight { font-weight: 700; color: var(--success-color); font-size: 1.2rem; }
.rate-highlight.new { color: var(--accent-color); }

.expected-row { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.new-announcement { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); font-weight: 600; }

.badge-expected, .badge-new {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-current { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; }
.status-expected, .status-new { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: white; }
.status-historical { background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%); color: white; }

.increase-positive { color: var(--success-color); font-weight: 700; }
.increase-positive.large { font-size: 1.2rem; }

.table-note { font-size: 0.85rem; color: var(--text-light); margin-top: 0.75rem; font-style: italic; }

.alert-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.wb-alert { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); border-left-color: var(--success-color); }

.comparison-quick {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.comparison-quick h4 { font-size: 1.4rem; margin-bottom: 1.5rem; text-align: center; }

.comparison-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.comparison-item strong { display: block; margin-bottom: 0.5rem; font-size: 1.05rem; }

/* ===== HOW IT WORKS & FEATURES ===== */
.how-it-works, .features, .faq { padding: 5rem 0; }
.how-it-works, .faq { background: var(--bg-light); }
.features { background: var(--bg-white); }

.steps-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step, .feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.feature-icon { font-size: 2.5rem; color: var(--success-color); margin-bottom: 1rem; }
.step h3, .feature h3 { margin-bottom: 0.75rem; color: var(--text-dark); font-size: 1.2rem; }
.step p, .feature p { color: var(--text-light); font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq-container { max-width: 900px; margin: 0 auto; }

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-color); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.faq-question:hover { background: var(--bg-light); color: var(--primary-color); }

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s;
    line-height: 1;
}

.faq-item.active .faq-icon { background: var(--accent-color); transform: rotate(45deg); }
.faq-text { flex: 1; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.faq-answer p { color: var(--text-light); line-height: 1.8; margin: 0; font-size: 0.95rem; }
.faq-answer code {
    background: var(--bg-light);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}
.faq-answer strong { color: var(--primary-color); }

/* ===== FORMULA ===== */
.formula-section { padding: 5rem 0; background: var(--bg-white); }

.formula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.formula-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.formula-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.formula-card h3 { color: var(--text-dark); margin-bottom: 1rem; font-size: 1.3rem; }

.formula-box {
    background: var(--text-dark);
    color: #10b981;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    overflow-x: auto;
}

.formula-box code { color: #10b981; background: none; padding: 0; }

.formula-example {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.formula-example strong { color: var(--primary-color); }

.formula-note {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.formula-note strong { color: var(--text-dark); display: block; margin-bottom: 1rem; font-size: 1.1rem; }
.formula-note ul { margin: 0; padding-left: 1.5rem; color: var(--text-dark); }
.formula-note li { margin-bottom: 0.75rem; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: white; padding: 3rem 0 1rem; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 { color: var(--accent-color); margin-bottom: 1.25rem; font-size: 1.15rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a { color: #d1d5db; text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
.footer-col a:hover { color: white; }

.disclaimer-text { font-size: 0.85rem; color: #9ca3af; line-height: 1.7; }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-bottom p { margin-bottom: 0.25rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0.25rem;
        align-items: stretch;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 0.75rem 1rem; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        background: var(--bg-light);
        border: none;
        min-width: auto;
    }

    .dropdown.active .dropdown-menu { display: block; }
    .mobile-menu-toggle { display: block; }

    .hero-cards { grid-template-columns: 1fr; }
    .comparison-grid-small { grid-template-columns: 1fr; }
    .section-title { font-size: 1.85rem; }
    .hero-title { font-size: 1.85rem; }
    .gov-heading { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .card-actions { flex-direction: column; }
    .btn-large { width: 100%; }
    .government-section { padding: 1.25rem; }
    .gov-heading { font-size: 1.25rem; }
    .section-title { font-size: 1.6rem; }
    .formula-grid { grid-template-columns: 1fr; }
}

/* ===== ACCESSIBILITY ===== */
a:focus, button:focus, select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== PRINT ===== */
@media print {
    .header, .footer, .btn, .hero, .cta { display: none; }
    body { background: white; color: black; }
}
/* ===== SVG LOGO ===== */
.logo-svg-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text .logo-main {
    font-size: 17px;
    font-weight: 900;
    color: #1a2f5e;
    letter-spacing: -0.3px;
}
.logo-text .logo-main span {
    color: #f59e0b;
}
.logo-text .logo-sub {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== ACTION BUTTONS — FIXED ALIGNMENT ===== */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: flex-start;
}
.action-buttons .btn {
    flex: 0 0 auto;
    min-width: 140px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}
.action-buttons .btn-outline {
    background: transparent;
    color: #1a2f5e;
    border: 2px solid #1a2f5e;
}
.action-buttons .btn-outline:hover {
    background: #1a2f5e;
    color: #fff;
}
.action-buttons .btn-primary {
    background: #1a2f5e;
    color: #fff;
    border: 2px solid #1a2f5e;
}
.action-buttons .btn-primary:hover {
    background: #243872;
    border-color: #243872;
}
@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
    }
    .action-buttons .btn {
        width: 100%;
        min-width: unset;
    }
}


/* ===== MOBILE FIXES — overflow & font ===== */

/* Prevent horizontal scroll globally */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Tables scroll within their own box, not the whole page */
.rates-table-wrap,
.example-table-wrap,
.history-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* Combo input stack on mobile */
@media (max-width: 480px) {
    .combo-input-wrap {
        flex-direction: column;
        gap: 6px;
    }
    .combo-input-wrap select,
    .combo-input-wrap input[type="number"] {
        width: 100% !important;
        flex: unset !important;
    }
}

/* ===== MOBILE FONT SIZES ===== */
@media (max-width: 480px) {
    body { font-size: 14px; }

    /* Hero */
    .page-hero h1 { font-size: 1.4rem; line-height: 1.3; }
    .page-hero .hero-subtitle { font-size: 0.9rem; }

    /* Stat badges */
    .stat-value { font-size: 1.2rem; }
    .stat-label { font-size: 0.7rem; }

    /* Nav logo */
    .logo-text .logo-main { font-size: 14px; }
    .logo-text .logo-sub { font-size: 9px; }

    /* Form labels & inputs */
    label { font-size: 0.85rem; }
    input, select, textarea {
        font-size: 14px !important;
    }

    /* Buttons */
    .btn { font-size: 13px; padding: 8px 14px; }
    .btn-large { font-size: 14px; padding: 10px 16px; }

    /* Result cards */
    .result-value { font-size: 1.2rem !important; }
    .result-label { font-size: 0.75rem; }

    /* Breakdown */
    .breakdown-label { font-size: 0.85rem; }
    .breakdown-value { font-size: 0.85rem; }

    /* Action buttons full width */
    .action-buttons {
        flex-direction: column !important;
    }
    .action-buttons .btn {
        width: 100% !important;
        min-width: unset !important;
        justify-content: center;
    }

    /* Form row stack */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Breakdown rows */
    .breakdown-row {
        flex-direction: column;
        gap: 2px;
        padding: 8px 0;
    }
    .breakdown-value {
        text-align: left !important;
    }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
    body { font-size: 13px; }
    .page-hero h1 { font-size: 1.2rem; }
    .stat-value { font-size: 1rem; }
    .quick-stats { gap: 0.5rem; }
    .stat-badge { padding: 0.6rem 0.8rem; }
}

/* ===== CONTACT PAGE — email-only card ===== */
.contact-section { padding: 4rem 0 5rem; }
.contact-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.contact-card p { color: var(--text-light); margin-bottom: 1.75rem; line-height: 1.6; }
.contact-email-btn {
    display: inline-block;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
    text-decoration: none;
}
.contact-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.contact-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 480px) {
    .contact-card { padding: 2.25rem 1.5rem; }
    .contact-meta { gap: 0.5rem 0.75rem; }
    .contact-meta span { font-size: 0.8rem; }
}
