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

:root {
    --primary: #1D4ED8;
    --primary-dark: #1E3A8A;
    --text: #111827;
    --text-soft: #6B7280;
    --border: #E5E7EB;
    --bg-light: #F8FAFC;
    --bg-soft: #EFF6FF;
    --white: #FFFFFF;
    --success-bg: #ECFDF5;
    --success-text: #065F46;
    --success-border: #A7F3D0;
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: min(92%, 1140px);
    margin: 0 auto;
}

main {
    min-height: 60vh;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-menu a {
    position: relative;
    font-size: 0.97rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.96rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #1B45C7;
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    border-color: #CBD5E1;
    color: var(--text);
}

.btn-outline:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #FFFFFF 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

.hero-content {
    position: relative;
    max-width: 760px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
    color: #0F172A;
}

.hero p {
    max-width: 680px;
    font-size: 1.06rem;
    color: var(--text-soft);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    max-width: 760px;
    color: var(--text-soft);
    margin-bottom: 36px;
    font-size: 1rem;
}

/* Page header */
.page-header {
    padding: 70px 0 38px;
    background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: #0F172A;
    margin-bottom: 10px;
    letter-spacing: -0.7px;
}

.page-header p {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 1rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #D6E2FF;
}

.card h3 {
    margin-bottom: 12px;
    color: #111827;
    font-size: 1.12rem;
}

.card p,
.card li {
    color: var(--text-soft);
}

.card strong {
    color: #111827;
}

.card ul {
    padding-left: 18px;
}

.card li {
    margin-bottom: 8px;
}

/* Special utility */
.section-cta {
    text-align: center;
}

.section-cta .card {
    max-width: 820px;
    margin: 0 auto;
    padding: 36px 28px;
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
}

.form-control {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    font-size: 1rem;
    color: #111827;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder {
    color: #9CA3AF;
}

.form-control:focus {
    outline: none;
    border-color: #93C5FD;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Alerts */
.alert-success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--success-border);
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    margin-top: 70px;
    background: #0F172A;
    color: #E5E7EB;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding: 56px 0;
}

.site-footer h4 {
    margin-bottom: 14px;
    color: #FFFFFF;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #93C5FD;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 16px 0;
    color: #CBD5E1;
    font-size: 0.94rem;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-menu,
    .nav-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 72px;
    }

    .section,
    .page-header {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(94%, 1140px);
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .card {
        padding: 22px;
    }

    .section {
        padding: 64px 0;
    }

    .page-header {
        padding: 58px 0 32px;
    }
}

.footer-grid-4 {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.input-error {
    border-color: #FCA5A5;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}

.field-error {
    margin-top: 6px;
    font-size: 0.92rem;
    color: #B91C1C;
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card {
    padding: 0;
    overflow: hidden;
    min-height: 320px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.branding-mascot-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    min-height: 360px;
}

.branding-mascot {
    max-width: 75%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 640px) {
    .brand-logo-img {
        height: 36px;
    }

    .footer-brand-logo {
        height: 36px;
    }

    .branding-mascot {
        max-width: 82%;
        max-height: 240px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border: 1px solid #dbeafe;
    box-shadow: 0 18px 40px rgba(29, 78, 216, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    top: -40px;
    right: -40px;
}

.hero-visual-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(191, 161, 74, 0.12);
    bottom: -30px;
    left: -20px;
}

.hero-mascot {
    position: relative;
    z-index: 1;
    max-width: 82%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-mini-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    font-size: 0.88rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 320px;
    }

    .hero-mascot {
        max-height: 260px;
    }
}
.contact-info-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-info-item {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.contact-highlight {
    margin-top: 20px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border: 1px solid #dbeafe;
}

.contact-mascot-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-mascot {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-form-card {
    position: relative;
}

.contact-form-card h3 {
    margin-bottom: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    border-color: #dbeafe;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d4ed8;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border: 1px solid #bfdbfe;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 14px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #dbeafe;
}

.services-section-gap {
    margin-top: 16px;
}

.services-note-card {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.06);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.country-card {
    position: relative;
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    border-color: #dbeafe;
}

.country-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #dbeafe;
    margin-bottom: 14px;
}

.country-card-meta {
    margin: 14px 0 18px;
    color: #475569;
    font-size: 0.95rem;
}

.country-detail-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 76px 0 44px;
}

.country-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    border: 1px solid #dbeafe;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.country-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.country-list-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.country-list-card h3 {
    margin-bottom: 14px;
}

.country-list-card ul {
    padding-left: 18px;
}

.country-list-card li {
    margin-bottom: 8px;
    color: #475569;
}

.country-info-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.country-info-card p {
    margin-bottom: 14px;
    color: #475569;
}

.country-overview-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

@media (max-width: 992px) {
    .country-detail-grid {
        grid-template-columns: 1fr;
    }
}

.country-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 420px);
    gap: 32px;
    align-items: center;
}

.hero-badge-row {
    margin-bottom: 18px;
}

.hero-trust-badge-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.hero-trust-pill::before {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-mascot-image {
        max-width: 300px;
    }

    .hero-trust-badge-image {
        max-width: 190px;
    }
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 420px);
    gap: 28px;
    align-items: center;
}

.about-badge-row {
    margin-bottom: 16px;
}

.about-trust-badge-image {
    width: 100%;
    max-width: 210px;
    height: auto;
    display: block;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-mascot-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        justify-content: flex-start;
    }

    .about-mascot-image {
        max-width: 300px;
    }

    .about-trust-badge-image {
        max-width: 180px;
    }
}

.section-title-badge {
    width: 110px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.country-detail-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 12px;
    color: #0f172a;
}

.country-detail-hero-text {
    max-width: 820px;
    color: #64748b;
    font-size: 1.02rem;
}

.country-overview-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.country-overview-text {
    color: #475569;
    margin-bottom: 0;
}

.service-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.service-card-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #0f172a;
}

.service-tag-inline {
    margin-bottom: 0;
    white-space: nowrap;
}

.service-card-body {
    display: grid;
    gap: 12px;
}

.service-info-item {
    display: grid;
    gap: 4px;
    color: #475569;
    line-height: 1.6;
}

.service-info-item strong {
    color: #0f172a;
}
.country-detail-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 12px;
    color: #0f172a;
}

.country-detail-hero-text {
    max-width: 820px;
    color: #64748b;
    font-size: 1.02rem;
}

.service-card-button {
    width: 100%;
    text-align: left;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-card-button:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-card-active {
    border-color: #1d4ed8;
    box-shadow: 0 16px 32px rgba(29, 78, 216, 0.14);
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.service-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.service-card-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #0f172a;
}

.service-tag-inline {
    margin-bottom: 0;
    white-space: nowrap;
}

.service-card-body {
    display: grid;
    gap: 12px;
}

.service-info-item {
    display: grid;
    gap: 4px;
    color: #475569;
    line-height: 1.6;
}

.service-info-item strong {
    color: #0f172a;
}

.country-option-panel-wrap {
    margin-top: 28px;
}

.country-option-block {
    margin-top: 0;
}

.country-option-panel {
    padding: 24px;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.country-option-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.country-option-panel-header h3 {
    margin: 0;
    color: #0f172a;
}

.country-documents-card {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

.country-documents-card h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

.country-document-list {
    padding-left: 18px;
    margin: 0;
}

.country-document-list li + li {
    margin-top: 8px;
}

.country-document-list a {
    color: #1d4ed8;
    text-decoration: none;
}

.country-document-list a:hover {
    text-decoration: underline;
}

.empty-note {
    margin: 0;
    color: #64748b;
}

@media (max-width: 768px) {
    .country-option-panel {
        padding: 18px;
    }

    .country-option-panel-header {
        align-items: flex-start;
    }
}