/* ============================================
   Elegant Edge Wallpaper — Main Stylesheet
   Color Palette:
   Primary BG: #102A43 (deep blue)
   Secondary BG: #243B53 (medium blue)
   Light sections: #FFFFFF
   Text on dark: #F0F4F8
   Text on light: #1C2E40
   Accent: #F97316 (orange)
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #1C2E40;
    background: #FFFFFF;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 70px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- HEADER ---------- */
.site-header {
    background: #102A43;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #F0F4F8;
}
.header-top .contact-info a {
    color: #F0F4F8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.header-top .contact-info a:hover { color: #F97316; }
.header-top .contact-info svg { width: 16px; height: 16px; fill: #F97316; flex-shrink: 0; }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 64px;
}
.logo a {
    font-size: 22px;
    font-weight: 800;
    color: #F0F4F8;
    letter-spacing: -.3px;
}
.logo span { color: #F97316; }

/* ---------- DESKTOP NAV ---------- */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 20px 16px;
    color: #F0F4F8;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: #F97316; }

/* ---------- DROPDOWN ---------- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1B3A57;
    min-width: 240px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 999;
}
.main-nav > ul > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateY(-8px); }
.main-nav > ul > li:hover > .dropdown-menu li {
    animation: dropIn .3s ease forwards;
}
.dropdown-menu li:nth-child(1) { animation-delay: .04s; }
.dropdown-menu li:nth-child(2) { animation-delay: .08s; }
.dropdown-menu li:nth-child(3) { animation-delay: .12s; }
.dropdown-menu li:nth-child(4) { animation-delay: .16s; }
.dropdown-menu li:nth-child(5) { animation-delay: .20s; }
.dropdown-menu li:nth-child(6) { animation-delay: .24s; }
.dropdown-menu li:nth-child(7) { animation-delay: .28s; }
.dropdown-menu li:nth-child(8) { animation-delay: .32s; }
.dropdown-menu li:nth-child(9) { animation-delay: .36s; }
.dropdown-menu li:nth-child(10) { animation-delay: .40s; }
.dropdown-menu li:nth-child(11) { animation-delay: .44s; }

@keyframes dropIn {
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu a {
    display: block;
    padding: 11px 20px;
    color: #F0F4F8;
    font-size: 14px;
    transition: background .2s, color .2s;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.dropdown-menu a:hover { background: #F97316; color: #fff; }
.dropdown-menu li:last-child a { border-bottom: none; border-radius: 0 0 8px 8px; }

/* ---------- HAMBURGER / MOBILE MENU ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #F0F4F8;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #102A43;
    z-index: 1050;
    overflow-y: auto;
    transition: right .35s ease;
    padding: 70px 0 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,.4);
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity .3s;
}
.mobile-overlay.show { display: block; opacity: 1; }
.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: none;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
}
.mobile-nav-close svg { width: 18px; height: 18px; stroke: #F0F4F8; }
.mobile-nav-close:hover { border-color: #F97316; }
.mobile-nav-close:hover svg { stroke: #F97316; }

.mobile-nav ul { padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav > ul > li > a {
    display: block;
    padding: 14px 24px;
    color: #F0F4F8;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.mobile-nav > ul > li > a:hover { color: #F97316; }
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #F0F4F8;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.mobile-dropdown-toggle svg {
    width: 14px; height: 14px;
    stroke: #F0F4F8;
    transition: transform .3s;
    flex-shrink: 0;
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgba(0,0,0,.15);
}
.mobile-dropdown.open { max-height: 600px; }
.mobile-dropdown a {
    display: block;
    padding: 10px 24px 10px 40px;
    color: #c8d6e5;
    font-size: 14px;
    text-align: left;
}
.mobile-dropdown a:hover { color: #F97316; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: #102A43;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}
.hero-text { flex: 1; color: #F0F4F8; }
.hero-text h1 {
    font-size: 42px;
    margin-bottom: 18px;
    line-height: 1.15;
}
.hero-text h1 span { color: #F97316; }
.hero-text p { font-size: 18px; margin-bottom: 24px; opacity: .9; }
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 10px;
}
.hero-phone svg { width: 22px; height: 22px; fill: #F97316; }
.hero-form { flex: 0 0 420px; }

/* ---------- FORM ---------- */
.feedback-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.feedback-form-container h3 {
    font-size: 22px;
    color: #102A43;
    margin-bottom: 20px;
    text-align: center;
}
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.form-group { flex: 1; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #d1d9e6;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    background: #f8fafc;
    color: #1C2E40;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit { margin-top: 6px; }
.submit-btn {
    width: 100%;
    height: 58px;
    background: #F97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.submit-btn:hover {
    background: #ea6a10;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(249,115,22,.45);
}
#form-success p {
    text-align: center;
    color: #16a34a;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
}

/* ---------- SECTION STYLES ---------- */
.section-dark { background: #102A43; color: #F0F4F8; }
.section-medium { background: #243B53; color: #F0F4F8; }
.section-light { background: #FFFFFF; color: #1C2E40; }
.section-alt { background: #f1f5f9; color: #1C2E40; }

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    opacity: .8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-body {
    padding: 22px;
}
.service-card-body h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #102A43;
}
.service-card-body p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 14px;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F97316;
    font-weight: 600;
    font-size: 14px;
}
.card-link:hover { text-decoration: underline; }

/* ---------- CTA BUTTON ---------- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 36px;
    background: #F97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
    text-decoration: none;
}
.btn-cta:hover {
    background: #ea6a10;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(249,115,22,.45);
}
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 36px;
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
    text-decoration: none;
}
.btn-cta-outline:hover {
    background: #F97316;
    color: #fff;
    transform: scale(1.03);
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.review-stars { color: #F97316; font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 15px; color: #475569; margin-bottom: 14px; font-style: italic; }
.review-author { font-weight: 700; color: #102A43; font-size: 14px; }

/* ---------- LOCATIONS GRID ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.location-card {
    background: #1B3A57;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: transform .2s, background .2s;
}
.location-card:hover { transform: translateY(-4px); background: #F97316; }
.location-card a { color: #F0F4F8; font-weight: 600; font-size: 16px; display: block; }

/* ---------- MAP ---------- */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* ---------- ABOUT / CONTENT PAGES ---------- */
.page-hero {
    background: #102A43;
    padding: 60px 20px;
    text-align: center;
    color: #F0F4F8;
}
.page-hero h1 { font-size: 38px; margin-bottom: 12px; }
.page-hero p { font-size: 17px; opacity: .85; max-width: 600px; margin: 0 auto; }

.content-section { padding: 50px 0; }
.content-section h2 { font-size: 28px; margin-bottom: 16px; color: #102A43; }
.content-section h3 { font-size: 22px; margin-bottom: 12px; color: #243B53; }
.content-section p { margin-bottom: 16px; color: #475569; }
.content-section ul, .content-section ol { padding-left: 24px; margin-bottom: 16px; }
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section li { margin-bottom: 8px; color: #475569; }

.content-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.content-image img { width: 100%; height: 300px; object-fit: cover; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.two-col img { border-radius: 12px; width: 100%; height: 350px; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    overflow: hidden;
}
.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #102A43;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
}
.faq-question:hover { background: #f8fafc; }
.faq-question svg {
    width: 18px; height: 18px;
    stroke: #F97316;
    transition: transform .3s;
    flex-shrink: 0;
}
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p { color: #475569; font-size: 15px; }
.faq-answer a { color: #F97316; font-weight: 500; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: #F97316;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; fill: #fff; }
.contact-info-card h3 { font-size: 16px; color: #102A43; margin-bottom: 4px; }
.contact-info-card p { font-size: 15px; color: #475569; }
.contact-info-card a { color: #F97316; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0B1D30;
    color: #c8d6e5;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.footer-col h4 {
    color: #F0F4F8;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-col p { font-size: 14px; margin-bottom: 10px; }
.footer-col a {
    display: block;
    font-size: 14px;
    color: #c8d6e5;
    padding: 4px 0;
    transition: color .2s;
}
.footer-col a:hover { color: #F97316; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 20px;
    text-align: center;
    font-size: 13px;
}

/* ---------- STICKY QUOTE BUTTON ---------- */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    height: 58px;
    padding: 0 28px;
    background: #F97316;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(249,115,22,.4);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sticky-quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(249,115,22,.55);
}
.sticky-quote-btn svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- MODAL ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 36px 28px;
    position: relative;
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.modal-close:hover { background: #e2e8f0; }
.modal-close svg { width: 16px; height: 16px; stroke: #475569; }

/* ---------- NEIGHBORHOODS ---------- */
.neighborhoods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}
.neighborhoods-list span {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #243B53;
    font-weight: 500;
}
.section-dark .neighborhoods-list span {
    background: rgba(255,255,255,.1);
    color: #F0F4F8;
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
    padding: 14px 0;
    font-size: 13px;
    color: #94a3b8;
}
.breadcrumbs a { color: #F97316; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* ---------- INTERNAL LINKS GRID ---------- */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.links-grid a {
    display: block;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 8px;
    color: #102A43;
    font-weight: 500;
    font-size: 14px;
    transition: background .2s, color .2s;
    border: 1px solid #e2e8f0;
}
.links-grid a:hover { background: #F97316; color: #fff; border-color: #F97316; }

/* ---------- CTA BLOCK ---------- */
.cta-block {
    background: #F97316;
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    margin: 36px 0;
}
.cta-block h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,.9); margin-bottom: 18px; }
.cta-block .btn-cta {
    background: #102A43;
    box-shadow: 0 4px 14px rgba(16,42,67,.35);
}
.cta-block .btn-cta:hover {
    background: #1B3A57;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-form { flex: none; width: 100%; max-width: 460px; }
    .hero-text h1 { font-size: 32px; }
    .two-col { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .header-top .contact-info { font-size: 12px; gap: 12px; }
    .hero { min-height: auto; }
    .hero-text h1 { font-size: 28px; }
    .hero-phone { font-size: 18px; }
    .section-title { font-size: 26px; }
    .form-row { flex-direction: column; gap: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 30px;
    }
    .sticky-quote-btn:hover { transform: translateX(50%) scale(1.05); }
    .page-hero h1 { font-size: 28px; }
    .content-image img { height: 220px; }
}

@media (max-width: 480px) {
    .header-top { flex-direction: column; gap: 6px; padding: 8px 16px; }
    .hero-text h1 { font-size: 24px; }
    .feedback-form-container { padding: 22px 18px; }
    .feedback-form-container h3 { font-size: 19px; }
    .cta-block { padding: 24px 18px; }
    .cta-block h3 { font-size: 20px; }
}

/* ---------- ERROR MESSAGE ANIMATION ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
