/* ============================================================
   VISUM-OMAN.DE — style.css
   Font: Rubik (local WOFF2) | Color Scheme: Teal + Sand Gold
   ============================================================ */

/* === FONT FACE ============================================== */
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* === CSS VARIABLES ========================================== */
:root {
    --color-primary: #1B5E7B;
    --color-primary-light: #6DB8D4;
    --color-primary-dark: #134657;
    --color-secondary: #C07A28;
    --color-secondary-dark: #9E6220;
    --color-dark: #0D2E4A;
    --color-text: #1A1A2E;
    --color-text-muted: #5A6275;
    --color-bg: #F8F6F2;
    --color-bg-light: #F3F8FB;
    --color-bg-alt: #EAF4F8;
    --color-white: #FFFFFF;
    --color-border: #D8E4EC;

    --alert-info-bg: #E1F0F8;
    --alert-info-border: #3A9EC5;
    --alert-info-text: #0D3A52;
    --alert-warn-bg: #FEF3E2;
    --alert-warn-border: #C07A28;
    --alert-warn-text: #7A4B0A;
    --alert-success-bg: #E5F5EC;
    --alert-success-border: #2E9E5E;
    --alert-success-text: #1A5C38;
    --alert-danger-bg: #FDEAEA;
    --alert-danger-border: #C0392B;
    --alert-danger-text: #7A1F1F;

    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(13,46,74,.1);
    --shadow-hover: 0 6px 24px rgba(13,46,74,.18);
    --transition: .22s ease;
}

/* === RESET & BASE =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Rubik', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
ul.list-styled { list-style: none; }
ul, ol { padding-left: 1.4rem; }
strong { font-weight: 700; }

/* === LAYOUT ================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 64px 0;
}
.section.section-sm { padding: 40px 0; }
.section.section-lg { padding: 88px 0; }

/* Section backgrounds */
.bg-white   { background: var(--color-white); }
.bg-light   { background: var(--color-bg-light); }
.bg-alt     { background: var(--color-bg-alt); }
.bg-dark    { background: var(--color-dark); color: var(--color-white); }
.bg-primary { background: var(--color-primary); color: var(--color-white); }
.bg-body    { background: var(--color-bg); }

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4 {
    color: var(--color-white);
}
.bg-dark a, .bg-primary a { color: var(--color-primary-light); }
.bg-dark a:hover, .bg-primary a:hover { color: var(--color-white); }

/* === TYPOGRAPHY ============================================= */
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.25; margin-bottom: .75rem; color: var(--color-dark); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 600; line-height: 1.3;  margin-bottom: .6rem;  color: var(--color-dark); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem);font-weight: 500; line-height: 1.35; margin-bottom: .5rem;  color: var(--color-primary-dark); }
h4 { font-size: 1.05rem; font-weight: 400; margin-bottom: .4rem; color: var(--color-text); }
h5 { font-size: 0.95rem; font-weight: 300; margin-bottom: .35rem; color: var(--color-text-muted); }
p  { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-white { color: var(--color-white) !important; }
.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: .5rem;
}

/* === TOP CONTACT BAR ======================================== */
.top-bar {
    background: var(--color-dark);
    color: var(--color-white);
    font-size: .85rem;
    padding: 7px 0;
    min-height: 36px;
    position: relative;
    z-index: 100;
}
.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.top-bar a { color: var(--color-primary-light); }
.top-bar a:hover { color: var(--color-white); }

/* === SITE HEADER ============================================ */
.site-header {
    background: var(--color-white);
    padding: 14px 0;
    min-height: 80px;
    border-bottom: 2px solid var(--color-bg-alt);
    position: relative;
    z-index: 99;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.site-logo a {
    display: inline-block;
    line-height: 0;
}
.site-logo picture img {
    width: 300px;
    height: auto;
    min-height: 60px;
    max-height: 120px;
    object-fit: contain;
}
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: .9rem;
    color: var(--color-text-muted);
}
.header-contact strong { color: var(--color-primary); font-size: 1rem; }
.header-contact a { color: var(--color-secondary); font-weight: 500; }

/* === NAVIGATION ============================================= */
.nav-main {
    background: var(--color-dark);
    position: relative;
    z-index: 200;
    min-height: 50px;
    max-height: 70px;
}
.nav-main .container {
    display: flex;
    align-items: stretch;
    min-height: 50px;
    max-height: 70px;
}
.nav-menu {
    display: flex;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: var(--color-white);
    font-size: .92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
    background: var(--color-primary);
    color: var(--color-white);
}
.nav-link.has-arrow::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 5px;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    vertical-align: middle;
    transition: transform var(--transition);
}
.nav-item:hover > .nav-link.has-arrow::after {
    transform: rotate(180deg);
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-top: 3px solid var(--color-primary);
    box-shadow: var(--shadow-hover);
    min-width: 240px;
    z-index: 300;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
}
.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu {
    display: block;
}
.submenu li { display: block; }
.submenu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: .9rem;
    font-weight: 400;
    transition: background var(--transition), color var(--transition), padding var(--transition);
    border-left: 3px solid transparent;
}
.submenu a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding-left: 26px;
    border-left-color: var(--color-primary);
}

/* Mobile hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--color-white);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO ================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 46, 74, 0.65);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    min-width: min(1000px, 100%);
    max-width: 1200px;
    padding: 40px 24px;
    text-align: center;
}
.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(1.7rem, 4.5vw, 3rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    margin-bottom: 16px;
}
.hero-content p {
    color: rgba(255,255,255,.92);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 28px;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === STATS BAR ============================================= */
.stats-bar {
    background: var(--color-dark);
    padding: 0;
    min-height: 80px;
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    min-height: 80px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    display: block;
}
.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
    font-weight: 400;
    margin-top: 3px;
}

/* === COLUMNS =============================================== */
.cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}
.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.col {}
.col-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 340px;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.col-reverse .col-img { order: -1; }

/* === CARDS / TILES ========================================= */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.card-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 18px 20px 14px;
    font-weight: 600;
    font-size: 1.05rem;
}
.card-header.accent { background: var(--color-secondary); color: var(--color-dark); }
.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-body p { flex: 1; }
.card-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: .92rem;
    margin-top: auto;
    padding-top: 12px;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--color-secondary); }

/* Tiles (cards without shadow — lighter) */
.tile {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.tile:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.tile-icon { font-size: 2.2rem; margin-bottom: 12px; }
.tile h3 { margin-bottom: 8px; }

/* === BUTTONS =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(27,94,123,.35);
}
.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
}
.btn-secondary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-dark);
    box-shadow: 0 4px 14px rgba(192,122,40,.35);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn-sm { padding: 8px 20px; font-size: .88rem; }
.btn-lg { padding: 16px 38px; font-size: 1.1rem; }

/* === TABLES ================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    background: var(--color-white);
}
.table th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: .9rem;
}
.table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
    color: var(--color-text);
}
.table tr:last-child td { border-bottom: none; }
.table tr:nth-child(even) td { background: var(--color-bg-light); }
.table td strong { color: var(--color-primary); }
.table-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
}
.badge-green { background: var(--alert-success-bg); color: var(--alert-success-text); }
.badge-blue  { background: var(--alert-info-bg);    color: var(--alert-info-text); }
.badge-gold  { background: var(--alert-warn-bg);    color: var(--alert-warn-text); }

/* === ACCORDION ============================================= */
.accordion { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.accordion-item { border-bottom: 1px solid var(--color-border); background: var(--color-white); }
.accordion-item:last-child { border-bottom: none; }
.accordion-button {
    width: 100%;
    background: var(--color-bg-alt);
    color: var(--color-dark);
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition), color var(--transition);
    line-height: 1.4;
}
.accordion-button:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}
.accordion-button.active {
    background: var(--color-primary);
    color: var(--color-white);
}
.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform var(--transition);
}
.accordion-button.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
    display: none;
    padding: 18px 22px;
    font-size: .97rem;
    color: var(--color-text);
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    line-height: 1.75;
}
.accordion-content.open { display: block; }
.accordion-content ul { padding-left: 1.4rem; margin-top: 8px; }
.accordion-content li { margin-bottom: 6px; }

/* === ALERTS ================================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    border-left: 4px solid;
    font-size: .95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.alert-info    { background: var(--alert-info-bg);    border-color: var(--alert-info-border);    color: var(--alert-info-text); }
.alert-warning { background: var(--alert-warn-bg);    border-color: var(--alert-warn-border);    color: var(--alert-warn-text); }
.alert-success { background: var(--alert-success-bg); border-color: var(--alert-success-border); color: var(--alert-success-text); }
.alert-danger  { background: var(--alert-danger-bg);  border-color: var(--alert-danger-border);  color: var(--alert-danger-text); }

/* === PARALLAX ============================================== */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,46,74,.72);
    z-index: 0;
}
.parallax .container { position: relative; z-index: 1; }
.parallax h2, .parallax h3, .parallax p { color: var(--color-white); }

/* === PROCESS STEPS ========================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    counter-reset: step-counter;
}
.step {
    position: relative;
    text-align: center;
    padding: 28px 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--color-text-muted); margin: 0; }

/* === BREADCRUMBS =========================================== */
.breadcrumbs-nav {
    background: var(--color-bg-alt);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    font-size: .87rem;
    color: var(--color-text-muted);
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--color-primary-light);
}
.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs a:hover { color: var(--color-secondary); }
.breadcrumbs li:last-child { color: var(--color-text); font-weight: 500; }

/* === VISA CHECKER INTERACTIVE ============================== */
.visa-checker {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}
.visa-checker h3 { margin-bottom: 20px; text-align: center; }
.checker-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    cursor: pointer;
    margin-bottom: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%231B5E7B' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    transition: border-color var(--transition);
}
.checker-select:focus { border-color: var(--color-primary); outline: none; }
.checker-result {
    display: none;
    margin-top: 8px;
}
.checker-result.show { display: block; }

/* === COST CALCULATOR ======================================= */
.cost-calc {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: .97rem;
}
.calc-row:last-child { border-bottom: none; }
.calc-row strong { color: var(--color-primary); font-size: 1.1rem; }
.calc-label { color: var(--color-text-muted); font-size: .88rem; margin-top: 2px; }

/* === FOOTER ================================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    margin-top: 0 !important;
    padding-top: 0;
}
.footer-legal {
    background: rgba(0,0,0,.2);
    padding: 20px 0;
    padding-bottom: 50px;
}
.footer-legal p {
    color: var(--color-white);
    font-size: .8rem;
    line-height: 1.6;
    opacity: .85;
    margin: 0;
}
.footer-inner {
    padding: 48px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
.footer-col h4 {
    color: var(--color-secondary);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col p {
    color: var(--color-white);
    font-size: .88rem;
    opacity: .8;
    margin-bottom: .6rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--color-primary-light);
    font-size: .9rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
    opacity: .9;
}
.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
    opacity: 1;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--color-white); }

/* === SECTION DIVIDER ======================================= */
.section-divider {
    height: 3px;
    background: var(--color-primary);
    width: 60px;
    border-radius: 2px;
    margin: 12px 0 24px;
}
.section-divider.center { margin: 12px auto 24px; }

/* === INFO BOXES ============================================ */
.info-box {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}
.info-box.highlighted {
    border-color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

/* === UTILITY =============================================== */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.hidden { display: none !important; }

/* === COOKIE NOTICE ========================================= */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 16px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.cookie-notice p { margin: 0; font-size: .88rem; flex: 1; min-width: 280px; opacity: .9; }
.cookie-notice .btn { flex-shrink: 0; }

/* === RESPONSIVE ============================================ */
@media (max-width: 1024px) {
    .cols-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 44px 0; }

    /* Nav mobile */
    .menu-toggle { display: flex; }
    .nav-main .container { flex-wrap: wrap; padding: 0 16px; }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--color-dark);
        padding-bottom: 12px;
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .nav-menu.open { display: flex; }
    .nav-item { flex-direction: column; align-items: flex-start; }
    .nav-link { padding: 12px 20px; width: 100%; font-size: 1rem; }
    .nav-link.has-arrow::after { margin-left: auto; }

    /* Submenu mobile */
    .submenu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--color-primary);
        width: 100%;
        background: rgba(255,255,255,.05);
        padding: 4px 0;
        border-radius: 0;
    }
    .nav-item.open > .submenu { display: block; }
    .submenu a { color: rgba(255,255,255,.85); padding: 9px 36px; font-size: .88rem; }
    .submenu a:hover { background: rgba(255,255,255,.08); color: var(--color-white); border-left-color: var(--color-secondary); }

    /* Hero mobile */
    .hero { max-height: none; min-height: 500px; }
    .hero-content { min-width: unset; }
    .hero-actions { flex-direction: column; align-items: center; }

    /* Columns mobile */
    .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
    .col-reverse .col-img { order: 0; }

    /* Stats */
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Parallax: disable on mobile for performance */
    .parallax { background-attachment: scroll; }

    /* Logo */
    .site-logo picture img { width: 200px; }
    .header-contact { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-notice { flex-direction: column; }
    .steps { grid-template-columns: 1fr; }
    .cost-calc { padding: 20px 16px; }
    .visa-checker { padding: 20px 16px; }
}
