/* ========== RESET E STILI GLOBALI ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fc;
    color: #2c3e50;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
ul, ol { padding-left: 20px; margin-bottom: 20px; }

/* ========== HEADER E MENU LINGUE ========== */
header {
    background-color: #00264d;
    color: white;
    padding: 0 0 10px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-bar {
    background-color: #001a33;
    padding: 6px 0;
    border-bottom: 1px solid #004080;
}
.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.lang-selector {
    position: relative;
    display: inline-block;
    color: #88a3c4;
    font-size: 13px;
    cursor: pointer;
}
.lang-selector:hover { color: white; }
.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1;
    overflow: hidden;
}
.lang-selector:hover .lang-dropdown { display: block; }
.lang-dropdown a {
    color: #333;
    padding: 10px 15px;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}
.lang-dropdown a:hover { background-color: #f1f1f1; color: #00264d; }

/* ========== NAVBAR ========== */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-top: 8px;
}
.logo-icon {
    background: linear-gradient(135deg, #ffcc00, #f39c12);
    color: #00264d;
    font-weight: 900;
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 8px;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(255,204,0,0.3);
}
.logo-text { font-size: 22px; font-weight: 700; letter-spacing: 1px; }
.logo-text span { color: #ffcc00; }
.subtitle {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #88a3c4;
    letter-spacing: 2px;
}
nav a {
    color: #ffffff;
    margin-left: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
nav a:hover, nav a.active { color: #ffcc00; }
.btn-nav-contact {
    background-color: #ffcc00;
    color: #00264d !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #ffcc00;
}
.btn-nav-contact:hover {
    background-color: transparent;
    color: #ffcc00 !important;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #00264d 0%, #004b8d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h1 { font-size: 46px; margin-bottom: 20px; letter-spacing: 1px; }
.hero p {
    font-size: 19px;
    color: #c0d4e6;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BOTTONI ========== */
.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #00264d;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4); }
.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}
.btn-outline:hover { background-color: white; color: #00264d; }

/* ========== SEZIONI ========== */
.section { padding: 70px 0; background-color: white; }
.section h2 { text-align: center; font-size: 34px; color: #00264d; margin-bottom: 15px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 50px; font-size: 17px; }
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card-link { text-decoration: none; color: inherit; }
.card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
    text-align: center;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 12px 30px rgba(0,38,77,0.1);
}
.card h3 { color: #00264d; margin-bottom: 10px; font-size: 20px; }
.card p { color: #666; font-size: 15px; margin-bottom: 15px; }
.read-more { font-weight: bold; color: #004b8d; font-size: 14px; }
.card:hover .read-more { color: #ffcc00; }
.icon {
    font-size: 48px;
    color: #ffcc00;
    margin-bottom: 15px;
    display: block;
}

/* ========== LOGHI ORIGINALI ========== */
.original-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #eef2f7;
}
.logo-swift-original {
    font-weight: 900;
    font-size: 24px;
    color: #ffcc00;
    background: #000;
    padding: 5px 15px;
    border-radius: 4px;
    letter-spacing: 2px;
}
.logo-sepa-original {
    font-weight: 900;
    font-size: 22px;
    color: #0054a6;
    border: 2px solid #0054a6;
    padding: 5px 15px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* ========== PAGINE INTERNE ========== */
.page-header {
    background-color: white;
    padding: 40px 0;
    border-bottom: 1px solid #eef2f7;
}
.page-header h1 { color: #00264d; font-size: 36px; margin-top: 10px; }
.breadcrumb { color: #777; font-size: 14px; margin-bottom: 5px; }
.breadcrumb a { color: #004b8d; }
.breadcrumb a:hover { text-decoration: underline; }

.page-content { padding: 50px 0; }
.content-box {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.content-box h2 {
    color: #00264d;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 3px solid #ffcc00;
    padding-bottom: 8px;
}
.content-box p { color: #444; font-size: 16px; margin-bottom: 20px; }
.content-box li { margin-bottom: 10px; color: #444; }

/* ========== AML KYC ========== */
.security-badge {
    background-color: #e8f4fd;
    border: 1px solid #b8d4e8;
    color: #003057;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}
.aml-alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}
.aml-alert-box strong { font-size: 16px; }

/* ========== CONTATTI ========== */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}
.contact-item { text-align: center; flex: 1; min-width: 180px; }
.contact-item strong { color: #00264d; display: block; margin-bottom: 5px; font-size: 16px;}
.contact-item span, .contact-item a { color: #555; font-size: 15px; }
.contact-item a:hover { color: #00264d; font-weight: bold; }

/* ========== FOOTER ========== */
footer {
    background-color: #001a33;
    color: #88a3c4;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}
footer p { margin: 8px 0; }
footer a:hover { color: #ffcc00; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 15px; }
    nav a { margin: 0 10px; font-size: 13px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .content-box { padding: 20px; }
    .contact-grid { flex-direction: column; padding: 20px; }
}