*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Inter,sans-serif;color:#0f172a;background:#fff}
a{text-decoration:none;color:inherit}

/* ===== TOKENS ===== */
:root{
--s1:8px;--s2:16px;--s3:24px;--s4:32px;--s5:40px;--s6:64px;
--blue:#2563eb;--gray:#475569;--border:#e5e7eb;
}

/* ===== CONTAINER ===== */
.container{max-width:1200px;margin:0 auto;padding:0 var(--s3)}

/* ===== HEADER ===== */
header{
 height:80px; border-bottom:1px solid var(--border); background:#fff; position:sticky; top:0; z-index:1000;}
.header-inner{height:100%; display:flex; align-items:center; justify-content:space-between;}
.logo{display:flex; align-items:center; height:80px;}
.logo img{height:60%; width:auto; display:block; margin-left:-28px;}

/* ===== MENU ===== */
.right-group{display:flex;align-items:center;gap:var(--s3)}
.main-nav{display:flex;gap:var(--s3)}
.main-nav a{font-weight:500; position:relative; padding-bottom:4px;}
.main-nav a::after{content:""; position:absolute; left:0;bottom:0; width:0;height:2px; background:var(--blue); transition:.3s;}
.main-nav a:hover{color:var(--blue)}
.main-nav a:hover::after{width:100%}

/* ===== LANGUAGE ===== */
.lang{position:relative; font-size:14px; padding:6px 12px; border:1px solid var(--border); border-radius:6px; cursor:pointer;}
.lang-menu{position:absolute; right:0;top:110%; background:#fff; border:1px solid var(--border); border-radius:6px; display:none; min-width:120px; box-shadow:0 10px 20px rgba(0,0,0,.08);}
.lang:hover .lang-menu{display:block}
.lang-menu a{display:block;padding:10px 14px}
.lang-menu a:hover{background:#f5f7fa}

/* ===== HERO ===== */
.hero { padding-bottom: var(--s6);}
.hero-inner {display: grid;grid-template-columns: 1fr 2fr;align-items: center;gap: var(--s6);}
.hero-left {padding-top: var(--s5); padding-bottom: var(--s4);}
.hero-left h1 {font-size: 46px;line-height: 1.15;font-weight: 600;letter-spacing: -0.02em;margin-bottom: var(--s3);}
.hero-left p {font-size: 15px;line-height: 1.6;color: var(--gray);max-width: 520px;margin-bottom: var(--s5);}
.hero-buttons {display: flex;gap: var(--s3);}

.btn-primary {background: var(--blue);color: #fff;padding: 12px 28px;border-radius: 8px;font-size: 14px;font-weight: 500;}
.btn-outline {border: 1.5px solid #cbd5e1;padding: 12px 28px;border-radius: 8px;font-size: 14px;font-weight: 500;}
.btn-outline:hover {background:#f8fafc;border-color:#94a3b8;}

.hero-right {position: relative;}
.hero-right img {width: 100%;height: 100%;object-fit: cover;}
.hero-right::after {content: "";position: absolute;inset: 0;background: linear-gradient(to left,rgba(255, 255, 255, 0) 55%,rgba(255, 255, 255, 0.92) 100%);}

/* ===== HERO CONSULT CTA ===== */
.hero-consult{margin-top: var(--s3);font-size: 14.5px;line-height: 1.6;color: var(--gray);}
.hero-consult span{display: block;}
.hero-consult a{display: inline-block;margin-top: 6px;font-weight: 500;color: var(--blue);text-decoration: none;position: relative;}
.hero-consult a::after{content:"";position:absolute;left:0;bottom:-2px;width:100%;height:1.5px;background: currentColor;opacity:.25;transition: opacity .2s ease;}
.hero-consult a:hover::after{opacity:.55;}

/* ===== SECTION ANIMATION ===== */
section{opacity:0; transform:translateY(40px); transition:.8s ease;}
section.visible{opacity:1; transform:none;}
:root {--header-h: 80px;}
section {scroll-margin-top: calc(var(--header-h) + 20px);}

/* ===== SERVICES ===== */
.services {background: #f5f7fa;padding-top: var(--s5);padding-bottom: var(--s6);}
.services-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--s5); }
.card {background: #fff;padding: 40px;border-radius: 14px;box-shadow: 0 12px 30px rgba(0,0,0,.06);transition: transform .25s ease, box-shadow .25s ease;}
.card h3 {font-size: 20px;font-weight: 600;margin-bottom: 14px;letter-spacing: -0.01em;}
.card p {font-size: 14.5px;line-height: 1.65;color: var(--gray);margin-bottom: 22px;}
.card-cta {display: inline-block;font-size: 14px;font-weight: 500;color: var(--blue);letter-spacing: .2px;}
.card-cta.primary {font-weight: 600;}
.card:hover {transform: translateY(-4px);box-shadow: 0 18px 40px rgba(0,0,0,.08);}

/* ===== CONTACT ===== */
.contact{padding:var(--s6) 0}
.contact h2{text-align:center; font-size:36px; margin-bottom:var(--s3);}
.contact p{text-align:center; color:var(--gray); margin-bottom:var(--s5);}
.contact-form{max-width:600px; margin:0 auto; display:grid; gap:var(--s3);}
.contact-form input,
.contact-form textarea{padding:14px; border-radius:8px; border:1px solid var(--border); font-family:inherit;}
.gdpr{font-size:14px; color:var(--gray); display:flex; gap:8px; align-items:flex-start;}

/* ===== FOOTER ===== */
footer{background:#0f172a; color:#fff; text-align:center; padding:var(--s5); font-size:14px;}

/* ===== MOBILE ===== */
@media(max-width:900px){
.main-nav{display:none}
.hero{padding-bottom: var(--s4);}
.hero-inner{grid-template-columns:1fr;gap: var(--s4);}
.hero-left{padding-top: var(--s4);padding-bottom: var(--s3);text-align:center}
.hero-left h1{font-size:32px;line-height:1.2;font-weight:600;letter-spacing:-0.015em;margin-bottom: var(--s3);}
.hero-left p{font-size:14.5px;line-height:1.6;max-width:90%;margin:0 auto var(--s4);color:var(--gray);}
.hero-buttons{flex-direction:column;align-items:center;gap: var(--s3);}
.hero-buttons a{width:100%;max-width:320px;}
.services-grid{grid-template-columns:1fr}
}

/* ===== PRIVACY MODAL ===== */
.privacy-modal{
 position:fixed; inset:0;
 background:rgba(15,23,42,.45);
   backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
 display:none;
 align-items:center;
 justify-content:center;
 z-index:7000;
}
.privacy-modal.active{display:flex}
.privacy-box{
 background:rgba(255,255,255,.85);
   backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
 max-width:760px;
 width:92%;
 padding:32px;
 border-radius:18px;
 position:relative;
 max-height:85vh;
 overflow:auto;
}
.privacy-close{position:absolute; top:14px; right:16px; font-size:26px; border:none; background:none; cursor:pointer;}

/* ===== COOKIE BANNER ===== */
.cookie-banner{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:rgba(15,23,42,.75);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
color:#fff;
padding:20px 24px;
border-radius:12px;
max-width:520px;
width:90%;
z-index:6000;
display:none;
}
.cookie-banner p{font-size:13px; line-height:1.5; margin-bottom:14px;}
.cookie-actions{display:flex; gap:12px; justify-content:center;}
.cookie-actions button{border:none; padding:8px 16px; border-radius:6px; cursor:pointer;}
.cookie-accept{background:#2563eb;color:#fff}
.cookie-decline{background:#334155;color:#fff}
.cookie-banner a{color:#93c5fd; text-decoration:underline; margin-left:6px; font-weight:500;}
.cookie-banner a:hover{color:#bfdbfe;}

/* ===== PRIVACY CONTENT (LEGAL STYLE) ===== */
#privacyContent{font-size:14.5px;line-height:1.7;color:#1e293b;}
#privacyContent h2{font-size:20px;font-weight:500;margin-bottom:12px;}
#privacyContent h3{font-size:15px;font-weight:600;margin-top:26px;margin-bottom:6px;}
#privacyContent p{margin:6px 0 10px;color:#334155;}
#privacyContent ul{margin:8px 0 12px 18px;padding:0;}
#privacyContent li{margin-bottom:6px;}
#privacyContent strong{font-weight:600;}
#privacyContent a{color:#2563eb;text-decoration:underline;}

/* ===== LEGAL / PRIVACY TYPOGRAPHY ===== */
.legal-text{font-size:14.5px;line-height:1.7;color:#1e293b;}
.legal-text h2{font-size:20px;font-weight:500;margin-bottom:12px;}
.legal-text h3{font-size:15px;font-weight:600;margin-top:26px;margin-bottom:6px;}
.legal-text p{margin:6px 0 10px;color:#334155;}
.legal-text ul{margin:8px 0 12px 18px;}
.legal-text li{margin-bottom:6px;}
.legal-block{margin-bottom:10px;}

/* ===== VISA MODAL ENHANCED ===== */
.visa-step h3 {font-size: 22px;font-weight: 600;margin-bottom: 20px;}
.visa-step label {display: block;font-size: 14px;font-weight: 500;margin: 14px 0 6px;color: #334155;}
.visa-step select {width: 100%;padding: 14px;border-radius: 10px;border: 1px solid var(--border);font-size: 15px;background: #fff;}
.visa-step select:focus {outline: none;border-color: var(--blue);box-shadow: 0 0 0 3px rgba(37,99,235,.15);}
.visa-result {font-size: 15px;line-height: 1.6;color: #1e293b;}
.visa-result strong {font-size: 17px;}
.visa-badge {display: inline-block;background: #e0e7ff;color: #1e40af;padding: 6px 12px;border-radius: 999px;font-size: 13px;font-weight: 600;margin-bottom: 12px;}
.visa-actions {margin-top: 24px;display: flex;gap: 12px;flex-wrap: wrap;}
.btn-secondary {background: #f1f5f9;border: 1px solid var(--border);padding: 12px 20px;border-radius: 8px;font-weight: 600;cursor: pointer;}
.btn-secondary:hover {background: #e2e8f0;}
.visa-note {font-size: 13px;color: #64748b;margin-top: 16px;}
.visa-step button {margin-top: 18px;}

/* ===== OUR APPROACH – EXECUTIVE STYLE ===== */
.approach{padding:var(--s6) 0;background:#fff;}
.approach-inner{max-width:760px;margin:0 auto;}
.approach h2{font-size:32px;font-weight:600;margin-bottom:24px;letter-spacing:-.2px;}
.approach p{font-size:16px;line-height:1.7;color:var(--gray);margin-bottom:18px;}
.approach-emphasis{color:#0f172a;font-weight:500;}

/* ===== WHY VIETNAM ===== */
.why-vietnam{padding: var(--s6) 0;border-top: 1px solid #f1f5f9;background:#f5f7fa;}
.why-vietnam .container{display: flex;flex-direction: column;}

#why-vietnam h2{max-width: 720px;font-size: 32px;font-weight: 600;letter-spacing: -0.02em;line-height: 1.25;margin-bottom: 26px;color: #0f172a;}
#why-vietnam p{max-width: 720px;font-size: 16px;line-height: 1.7;color: #475569;margin-bottom: 14px;}
#why-vietnam p:nth-of-type(2){color: var(--gray);}
#why-vietnam p:last-of-type{margin-top: 22px;font-weight: 500;color: #0f172a;}

.why-image{margin-top: 32px;}
.why-image img{width: 100%;height: 220px;object-fit: cover;object-position: center top;border-radius: 14px;display: block;}

@media(max-width:768px){
.why-vietnam{padding: var(--s5) 0;}
 #why-vietnam h2{font-size: 26px;}
 #why-vietnam p{font-size: 15px;}
.why-image img{height: 160px;}}

/* ===== OPPLEVELSEN ===== */
.editorial-section {padding: var(--s6) 0;}
.editorial-inner {max-width: 1200px;margin: 0 auto;padding: 0 24px;display: grid;grid-template-columns: 1fr 1fr;gap: 72px;align-items: center;}

.editorial-text {max-width: 560px;}
.editorial-text h2 {font-size: 2.2rem;font-weight: 500;margin-bottom: 32px;letter-spacing: -0.01em;}
.editorial-text p {font-size: 16px;line-height: 1.7;margin-bottom: 24px;color: #475569;}

.editorial-image img {width: 100%;height: auto;display: block;object-fit: cover;border-radius: 4px;}

@media (max-width: 900px) {
.editorial-inner {grid-template-columns: 1fr;gap: 40px;}
.editorial-section {padding: var(--s5) 0;}
.editorial-text h2 {font-size: 26px;line-height: 1.3;}
.editorial-text p {font-size: 15px;line-height: 1.7;}}

/* ===== TOUR MODAL ===== */
.tour-modal{padding:0;max-width:820px;}
.tour-hero{width:100%;height:220px;overflow:hidden;border-radius:18px 18px 0 0;background:#f1f5f9;}
.tour-hero img{width:100%;height:100%;object-fit:cover;object-position:center;transition: opacity .6s ease;opacity:1;}
.tour-hero img.fade-out{opacity:0;}

.tour-content{padding:32px 40px 40px;animation: tourFade .25s ease; }
.tour-content h2{font-size:26px;font-weight:600;margin-bottom:8px;letter-spacing:-.02em;}

.tour-meta{font-size:14px;color:#64748b;margin-bottom:18px;}
.tour-destinations{font-size:14.5px;line-height:1.6;color:#475569;margin:0 0 18px;}
.tour-destinations strong{font-weight:500;color:#0f172a;}
.tour-intro{font-size:15px;line-height:1.65;color:#334155;margin-bottom:18px;}
.tour-highlights{margin:0 0 20px 18px;padding:0;}
.tour-highlights li{font-size:14.5px;line-height:1.6;color:#475569;margin-bottom:6px;}
.tour-note{font-size:13.5px;color:#64748b;margin-bottom:28px;}
.tour-actions{display:flex;gap:12px;align-items:center;}
.tour-actions .btn-secondary{padding:10px 14px;font-size:14px;}

@keyframes tourFade{
  from{opacity:0;transform:translateX(6px);}
  to{opacity:1;transform:none;}}
  
#tourCTA{margin-left:auto;}

/* ===== MOBILE ===== */
@media(max-width:768px){
.tour-modal{width:94%}
.tour-hero{height:180px}
.tour-content{padding:24px}
.tour-content h2{font-size:22px}


