/* ========================================
   Pardo Insurance Group
   Maintenance Page
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #168bd0;
    --dark-blue: #202957;
    --orange: #f7941d;
    --text-color: #27304f;
    --muted-text: #69728c;
    --light-bg: #f4f7fb;
    --white: #ffffff;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-color);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(22, 139, 208, 0.10),
            transparent 32%
        ),
        linear-gradient(135deg, #f8fbff 0%, var(--light-bg) 100%);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Header
   ======================================== */

.site-header {
    width: 100%;
    background: var(--white);
    border-top: 5px solid #3b9be0;
    border-bottom: 1px solid #e7ebf2;
}

.header-inner {
    width: min(1200px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 205px;
    max-width: 100%;
    height: auto;
}

/* ========================================
   Main Maintenance Section
   ======================================== */

.maintenance-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
}

.maintenance-card {
    width: min(720px, 100%);
    padding: 70px 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(32, 41, 87, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(32, 41, 87, 0.10);
    animation: card-in 700ms ease both;
}

/* ========================================
   Maintenance Icon
   ======================================== */

.maintenance-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--orange);
    background: #fff4e6;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.maintenance-icon svg {
    width: 44px;
    height: 44px;
}

/* ========================================
   Typography
   ======================================== */

.eyebrow {
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.intro-text,
.contact-text {
    max-width: 520px;
    margin: 22px auto 0;
    color: var(--muted-text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-text {
    margin-top: 10px;
}

/* ========================================
   Call Button
   ======================================== */

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 27px;
    color: #ffffff;
    background: var(--orange);
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(247, 148, 29, 0.25);
    transition:
        transform 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.call-button:hover {
    background: #e9850c;
    box-shadow: 0 12px 26px rgba(247, 148, 29, 0.32);
    transform: translateY(-2px);
}

.call-button:focus-visible {
    outline: 4px solid rgba(22, 139, 208, 0.25);
    outline-offset: 4px;
}

.phone-icon {
    font-size: 1.15rem;
    line-height: 1;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    padding: 24px 20px;
    text-align: center;
    color: #9aa2b5;
    font-size: 0.85rem;
}

/* ========================================
   Animations
   ======================================== */

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Mobile Responsive
   ======================================== */

@media (max-width: 600px) {

    .header-inner {
        min-height: 70px;
        width: calc(100% - 36px);
    }

    .brand img {
        width: 180px;
    }

    .maintenance-section {
        padding: 28px 18px;
    }

    .maintenance-card {
        padding: 42px 24px;
        border-radius: 18px;
    }

    .maintenance-icon {
        width: 68px;
        height: 68px;
    }

    .maintenance-icon svg {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .intro-text,
    .contact-text {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .call-button {
        width: 100%;
        padding: 0 16px;
        font-size: 0.95rem;
    }

    .site-footer {
        padding: 20px 15px;
    }
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}