:root {
    --bg-1: #f7f2ea;
    --bg-2: #eef5f0;
    --text: #1c2330;
    --muted: #5d6778;
    --card: rgba(255, 255, 255, 0.76);
    --card-border: rgba(255, 255, 255, 0.72);
    --shadow: 0 26px 70px rgba(20, 30, 45, 0.16);
    --orange: #F08700;
    --orange-deep: #d97800;
    --green: #2D6A4F;
    --blue: #1E4D8C;
    --accent: #FF6B00;
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(240, 135, 0, 0.22), transparent 34%),
        radial-gradient(circle at top right, rgba(30, 77, 140, 0.18), transparent 28%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2));
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
    isolation: isolate;
}

.ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.95;
    z-index: -2;
    animation: float 12s ease-in-out infinite;
}

.ambient-one {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(240, 135, 0, 0.46), rgba(240, 135, 0, 0));
    top: 6%;
    left: 3%;
}

.ambient-two {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.28), rgba(45, 106, 79, 0));
    right: 2%;
    bottom: 6%;
    animation-delay: -4s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(30, 77, 140, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 77, 140, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 100%);
}

.construction-card {
    width: min(100%, 760px);
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: var(--card);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.construction-card::before {
    content: '';
    position: absolute;
    inset: auto -18% -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 135, 0, 0.16), transparent 70%);
    pointer-events: none;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
}

.brand-logo img {
    width: 100%;
    height: auto;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(240, 135, 0, 0.12);
    color: var(--orange-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-copy {
    max-width: 600px;
    margin-bottom: 28px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.subtitle {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 54ch;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    border-radius: 22px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(30, 77, 140, 0.08);
    box-shadow: 0 16px 40px rgba(24, 35, 52, 0.08);
}

.info-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.address-line {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
}

.address-line + .address-line {
    margin-top: 2px;
}

.schedule {
    margin-top: 14px;
    color: var(--green);
    font-weight: 700;
}

.info-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 20px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    box-shadow: 0 18px 34px rgba(30, 77, 140, 0.22);
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(30, 77, 140, 0.28);
    filter: saturate(1.03);
}

.whatsapp-button:focus-visible {
    outline: 3px solid rgba(240, 135, 0, 0.4);
    outline-offset: 3px;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.whatsapp-caption {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.progress-wrap {
    margin-top: 28px;
}

.progress-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(28, 35, 48, 0.08);
    overflow: hidden;
}

.progress-bar {
    display: block;
    width: 52%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--accent), var(--green));
    background-size: 200% 100%;
    animation: progress-shift 4s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes progress-shift {
    0% { background-position: 0 50%; }
    100% { background-position: 200% 50%; }
}

@media (max-width: 760px) {
    .construction-card {
        padding: 22px;
        border-radius: 22px;
    }

    .brand-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .status-pill {
        font-size: 0.72rem;
    }
}

@media (max-width: 520px) {
    .page-shell {
        padding: 18px 12px;
    }

    h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .subtitle {
        font-size: 0.96rem;
    }

    .whatsapp-button {
        width: 100%;
    }
}