/* ========================================
   ELEPHANT INSURANCE - CUSTOM STYLES
   ======================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: "kern" 1, "liga" 1;
}

/* ========================================
   ACCESSIBILITY WIDGET
   ======================================== */

#a11y-panel.open {
    display: block !important;
    animation: a11yFadeIn 0.3s ease-out;
}

@keyframes a11yFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.a11y-option.active {
    background: linear-gradient(135deg, #f0f4ff, #e0eaff);
    border: 1px solid #6470f1;
}

/* A11y - Font size */
html.a11y-font-bigger { font-size: 112%; }
html.a11y-font-biggest { font-size: 125%; }
html.a11y-font-smaller { font-size: 92%; }
html.a11y-font-smallest { font-size: 85%; }

/* A11y - High contrast */
html.a11y-contrast-high body { background: #000 !important; color: #fff !important; }
html.a11y-contrast-high body * { background-color: #000 !important; color: #fff !important; border-color: #fff !important; }
html.a11y-contrast-high a, html.a11y-contrast-high button, html.a11y-contrast-high h1, html.a11y-contrast-high h2, html.a11y-contrast-high h3 { color: #ffbc1f !important; }
html.a11y-contrast-high img { filter: grayscale(100%) contrast(120%); }

/* A11y - Inverted */
html.a11y-contrast-inverted { filter: invert(1) hue-rotate(180deg); }
html.a11y-contrast-inverted img, html.a11y-contrast-inverted video { filter: invert(1) hue-rotate(180deg); }

/* A11y - Monochrome */
html.a11y-contrast-mono { filter: grayscale(100%); }

/* A11y - Underline links */
html.a11y-links-underline a { text-decoration: underline !important; text-decoration-thickness: 2px !important; }

/* A11y - Readable font (system-friendly + larger spacing) */
html.a11y-font-readable body { font-family: Arial, sans-serif !important; letter-spacing: 0.05em !important; word-spacing: 0.15em !important; line-height: 1.7 !important; }

/* A11y - Pause animations */
html.a11y-animations-paused *, html.a11y-animations-paused *::before, html.a11y-animations-paused *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
}

/* A11y - Bigger cursor */
html.a11y-cursor-big, html.a11y-cursor-big * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'><path fill='%23ffbc1f' stroke='%23000' stroke-width='2' d='M3 2l7 19 2-9 9-2z'/></svg>") 4 4, auto !important;
}

/* A11y - Focus highlight */
html.a11y-focus-highlight *:focus,
html.a11y-focus-highlight a:focus,
html.a11y-focus-highlight button:focus,
html.a11y-focus-highlight input:focus {
    outline: 4px solid #ffbc1f !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 7px rgba(255, 188, 31, 0.4) !important;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
    opacity: 1;
}

.faq-item.open .faq-icon {
    background: linear-gradient(135deg, #6470f1, #423fcb);
    color: white;
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    background: linear-gradient(to right, #f0f4ff, white);
}

.faq-item.open {
    border-color: #a4b8fc;
    box-shadow: 0 10px 30px -10px rgba(100, 112, 241, 0.2);
}

/* ========================================
   STICKY MOBILE CTA BAR
   ======================================== */

#sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(100, 112, 241, 0.1);
    box-shadow: 0 -10px 30px -10px rgba(30, 27, 75, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sticky-mobile-cta.visible {
    transform: translateY(0);
}

/* ========================================
   FLOATING ACTION BUTTONS - positioned ABOVE the sticky CTA bar
   The sticky CTA is ~70px tall and lives at bottom:0 on every viewport,
   so we lift the floating buttons clear of it (24px gap + bar height + spacing).
   IMPORTANT: don't force `display` on #a11y-panel here — it has Tailwind's
   `hidden` class that sets `display:none` when the panel is closed. Forcing
   `display:flex` would prevent the panel from closing.
   ======================================== */
#wa-float, #a11y-toggle {
    position: fixed !important;
    left: 24px !important;
    display: flex !important;
}
#a11y-panel {
    position: fixed !important;
    left: 24px !important;
    /* No display rule - let Tailwind's `.hidden` toggle display:none/block freely */
}
#wa-float    { bottom: 100px !important; }   /* 100px = clears the ~70px sticky bar + 30px gap */
#a11y-toggle { bottom: 172px !important; }   /* 100 + 56 (button) + 16 (gap) = 172 */
#a11y-panel  { bottom: 172px !important; }

/* Add bottom padding so page content isn't hidden behind sticky CTA */
body { padding-bottom: 100px; }

/* ========================================
   VIDEO CARDS
   ======================================== */

.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(15, 13, 46, 0.95) 100%);
    transition: opacity 0.3s;
}

.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--video-color-from, #6470f1), var(--video-color-to, #423fcb));
    opacity: 1;
    transition: opacity 0.3s;
}

.video-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: white;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(100, 112, 241, 0.4);
}

.video-card:hover::after {
    opacity: 0.85;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-play-btn {
    transform: scale(1.15);
    background: #ffbc1f;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    margin-right: 4px;
    color: #1e1b4b;
}

.video-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.video-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 8px;
}

.video-card-duration {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* ========================================
   VIDEO REVIEWS (customer testimonials)
   ======================================== */

.video-review-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--video-color-from, #6470f1), var(--video-color-to, #423fcb));
}

.video-review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-review-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(100, 112, 241, 0.4);
}

.video-review-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.video-review-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.video-review-bottom {
    text-align: right;
}

.video-review-quote {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.video-review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 10px;
}

/* ========================================
   TEAM CARDS
   ======================================== */

.team-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0eaff;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(100, 112, 241, 0.2);
    border-color: transparent;
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--avatar-color-from, #6470f1), var(--avatar-color-to, #423fcb));
    box-shadow: 0 10px 25px -5px rgba(100, 112, 241, 0.4);
}

/* ========================================
   COMPANY CARDS (logo placeholders)
   ======================================== */

.company-card {
    height: 64px;
    min-width: 140px;
    padding: 8px 18px;
    background: white;
    border: 1px solid #e0eaff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30, 27, 75, 0.04);
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(100, 112, 241, 0.2);
    border-color: var(--co-color, #6470f1);
}

.company-logo-img {
    max-height: 44px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.company-card:hover .company-logo-img {
    filter: grayscale(0%);
}

.company-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.15);
}

.company-logo-name {
    font-weight: 700;
    color: var(--co-color, #1e1b4b);
    white-space: nowrap;
    font-size: 0.95rem;
}

/* ========================================
   MARQUEE - INSURANCE COMPANIES SCROLL
   ======================================== */

.marquee-wrapper {
    mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* ========================================
   TYPEWRITER PLACEHOLDER (Hero search)
   ======================================== */

#hero-search::placeholder {
    opacity: 1;
    color: #423fcb; /* elephant-700 - prominent contrast */
    font-weight: 700;
    letter-spacing: -0.01em;
}
#hero-search:focus::placeholder { opacity: 0.4; }

/* ========================================
   HERO BACKGROUND EFFECTS
   ======================================== */

.hero-mesh {
    background-image:
        radial-gradient(at 27% 37%, rgba(100, 112, 241, 0.5) 0px, transparent 50%),
        radial-gradient(at 97% 21%, rgba(255, 188, 31, 0.3) 0px, transparent 50%),
        radial-gradient(at 52% 99%, rgba(167, 139, 250, 0.4) 0px, transparent 50%),
        radial-gradient(at 10% 29%, rgba(56, 189, 248, 0.3) 0px, transparent 50%),
        radial-gradient(at 97% 96%, rgba(244, 114, 182, 0.3) 0px, transparent 50%);
}

.hero-pattern {
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ========================================
   NAVBAR SCROLL EFFECT
   ======================================== */

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(30, 27, 75, 0.08);
}

#navbar:not(.scrolled) a,
#navbar:not(.scrolled) button:not(.bg-gradient-to-r) {
    color: white !important;
}

#navbar:not(.scrolled) #mobile-menu-btn {
    color: white !important;
}

#navbar:not(.scrolled) a span.text-elephant-900,
#navbar:not(.scrolled) a div.text-elephant-900 {
    color: white !important;
}

#navbar:not(.scrolled) a div.text-elephant-600 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.service-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0eaff;
    text-align: right;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color-from, #6470f1), var(--card-color-to, #423fcb));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-color-from, #6470f1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(100, 112, 241, 0.25);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 0.05;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--card-color-from, #6470f1), var(--card-color-to, #423fcb));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(100, 112, 241, 0.3);
    transition: transform 0.4s;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-desc {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f4ee5;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.service-card-cta svg {
    transition: transform 0.3s;
}

.service-card:hover .service-card-cta svg {
    transform: translateX(-4px);
}

/* Hidden cards from filter */
.service-card.filtered-out {
    display: none;
}

/* ========================================
   FILTER BUTTONS
   ======================================== */

.filter-btn {
    background: white;
    color: #423fcb;
    border: 2px solid #e0eaff;
}

.filter-btn:hover {
    background: #f0f4ff;
    border-color: #6470f1;
}

.filter-btn.active {
    background: linear-gradient(135deg, #6470f1, #423fcb);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px -5px rgba(100, 112, 241, 0.4);
}

/* ========================================
   SEARCH RESULTS DROPDOWN
   ======================================== */

#search-results {
    direction: rtl;
}

.search-result-item {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f4ff;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f0f4ff;
}

.search-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, var(--card-color-from, #6470f1), var(--card-color-to, #423fcb));
    color: white;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    text-align: right;
}

.search-result-title {
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 2px;
}

.search-result-category {
    font-size: 0.8rem;
    color: #6b7280;
}

.no-results {
    padding: 30px;
    text-align: center;
    color: #6b7280;
}

/* ========================================
   CHECKER MODAL
   ======================================== */

#checker-modal.show {
    display: flex !important;
    animation: modalFadeIn 0.3s ease-out;
}

#checker-modal-content {
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checker-header {
    background: linear-gradient(135deg, var(--checker-color-from, #6470f1), var(--checker-color-to, #423fcb));
    padding: 32px;
    border-radius: 24px 24px 0 0;
    color: white;
    position: relative;
}

.checker-progress {
    display: flex;
    gap: 6px;
    margin-top: 20px;
}

.checker-progress-step {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.checker-progress-step.active {
    background: white;
}

.checker-progress-step.completed {
    background: #ffbc1f;
}

.checker-body {
    padding: 32px;
}

.checker-step {
    display: none;
}

.checker-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.checker-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0eaff;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
    font-family: 'Heebo', sans-serif;
}

.checker-input:focus {
    outline: none;
    border-color: #6470f1;
    box-shadow: 0 0 0 4px rgba(100, 112, 241, 0.1);
}

.checker-label {
    display: block;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.checker-option {
    padding: 18px;
    border: 2px solid #e0eaff;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    display: flex;
    align-items: center;
    gap: 14px;
}

.checker-option:hover {
    border-color: #a4b8fc;
    background: #f0f4ff;
}

.checker-option.selected {
    border-color: #6470f1;
    background: linear-gradient(135deg, #f0f4ff, #e0eaff);
    box-shadow: 0 8px 20px -5px rgba(100, 112, 241, 0.2);
}

.checker-option-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checker-option.selected .checker-option-icon {
    background: linear-gradient(135deg, #6470f1, #423fcb);
    color: white;
}

/* ========================================
   TOAST
   ======================================== */

#toast.show {
    display: block;
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f0f4ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6470f1, #423fcb);
    border-radius: 6px;
    border: 2px solid #f0f4ff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4f4ee5, #3735a3);
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
    background: #ffbc1f;
    color: #1e1b4b;
}

/* ========================================
   FOCUS STYLES
   ======================================== */

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid #ffbc1f;
    outline-offset: 2px;
}

/* ========================================
   RTL FIXES
   ======================================== */

[dir="rtl"] .-space-x-2 > * + * {
    margin-right: -0.5rem;
    margin-left: 0;
}

[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="email"] {
    text-align: right;
}

input[dir="ltr"] {
    text-align: left;
}

/* ========================================
   ANIMATIONS / MICRO-INTERACTIONS
   ======================================== */

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.3s ease-in-out;
}

@keyframes confetti-burst {
    0% { transform: scale(0) rotate(0); opacity: 1; }
    100% { transform: scale(1) rotate(720deg); opacity: 0; }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confetti-burst 1s ease-out forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 640px) {
    .hero-pattern {
        background-size: 40px 40px;
    }

    h1 {
        word-break: keep-all;
    }

    .checker-header {
        padding: 24px;
    }

    .checker-body {
        padding: 24px;
    }
}

/* ========================================
   PRINT
   ======================================== */

@media print {
    nav, footer, #checker-modal, #toast, .floating-whatsapp {
        display: none !important;
    }
}
