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

:root {
    --navy-dark: #0a1628;
    --navy-mid: #0f1f3d;
    --navy-light: #162a50;
    --gold: #c8952e;
    --gold-light: #d4a84a;
    --gold-dark: #a07524;
    --orange-accent: #e87722;
    --text-white: #f0f0f0;
    --text-muted: #9eafc0;
    --text-light: #c5d0db;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e0d4;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(0,0,0,0.015) 50px,
            rgba(0,0,0,0.015) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0,0,0,0.015) 50px,
            rgba(0,0,0,0.015) 51px
        );
}

/* ===== BACKGROUND WRAPPER ===== */
.background-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ===== MAIN CARD ===== */
.card {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: linear-gradient(
        160deg,
        var(--navy-dark) 0%,
        var(--navy-mid) 40%,
        var(--navy-dark) 100%
    );
    border-radius: 16px;
    padding: 60px 50px 40px;
    text-align: center;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 149, 46, 0.08);
    overflow: hidden;
}

/* Subtle radial glow behind the card content */
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 149, 46, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== CORNER ACCENTS ===== */
.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.corner-accent.top-left {
    top: 16px;
    left: 16px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-top-left-radius: 4px;
    opacity: 0.4;
}

.corner-accent.top-right {
    top: 16px;
    right: 16px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-top-right-radius: 4px;
    opacity: 0.4;
}

.corner-accent.bottom-left {
    bottom: 16px;
    left: 16px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-bottom-left-radius: 4px;
    opacity: 0.4;
}

.corner-accent.bottom-right {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-bottom-right-radius: 4px;
    opacity: 0.4;
}

/* ===== LOGO ===== */
.logo-section {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.logo {
    max-width: 320px;
    height: auto;
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto;
    width: 60%;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    opacity: 0.3;
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    margin: 0 12px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ===== HEADING ===== */
.heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ===== DESCRIPTION ===== */
.description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 8px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-light);
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 149, 46, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 149, 46, 0.08);
    transform: translateY(-2px);
}

/* ===== FOOTER TEXT ===== */
.footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .card {
        padding: 40px 24px 30px;
        border-radius: 12px;
    }

    .heading {
        font-size: 1.7rem;
    }

    .description {
        font-size: 0.88rem;
    }

    .logo {
        max-width: 240px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .corner-accent {
        width: 25px;
        height: 25px;
    }
}
