:root {
    --bg: #000000;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --text: #101828;
    --muted: #667085;
    --border: rgba(16, 24, 40, 0.08);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 18px;
    --max-width: 1000px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 18px;
}

.site-card {
    width: min(100%, var(--max-width));
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 48px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.main-logo {
    width: min(100%, 640px);
    height: auto;
    margin-inline: auto;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
}

.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 24, 40, 0.16);
}

.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    min-height: 92px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 24, 40, 0.16);
}

.static-card:hover {
    transform: none;
    box-shadow: none;
}

.contact-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0f3fae;
}

.whatsapp .contact-icon {
    color: #25d366;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-copy span {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--muted);
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .site-shell {
        padding: 16px 10px;
        align-items: flex-start;
    }

    .site-card {
        border-radius: 22px;
        padding: 28px 18px 22px;
        gap: 22px;
    }

    .main-logo {
        width: min(100%, 520px);
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 16px;
        min-height: 84px;
    }
}


.map-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-heading h2 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-heading p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted);
}

.map-frame-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 1.2rem;
    }

    .section-heading p {
        font-size: 0.94rem;
    }

    .map-frame {
        height: 300px;
    }
}
