@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --color-primary:#1a237e;
  --color-secondary:#283593;
  --color-accent:#ff6f00;
  --color-text:#101426;
  --color-muted:#5b6273;
  --color-bg:#f7f8fc;
  --color-surface:#ffffff;
  --color-surface-alt:#eef0f8;
  --color-border:#dde0ec;
  --color-white:#fff;
  --radius:14px;
  --shadow:0 6px 24px rgba(26,35,126,.08);
  --grad:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
  --font-display:'Plus Jakarta Sans',sans-serif;
  --font-body:'Inter',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--color-text);background:var(--color-bg);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:var(--color-primary);text-decoration:none}
h1,h2,h3,h4,h5{font-family:var(--font-display);font-weight:700;line-height:1.2;color:var(--color-text)}
h1{font-size:clamp(1.9rem,4vw,2.9rem)}
h2{font-size:clamp(1.5rem,3vw,2.2rem);margin-bottom:1rem}
h3{font-size:1.15rem;margin-bottom:.5rem}
p{margin-bottom:.75rem;color:var(--color-muted)}
strong{color:var(--color-text);font-weight:600}

.au-ber-2qex-wrap{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.au-ber-2qex-module{padding:4rem 0}
.au-ber-2qex-module--alt{background:var(--color-surface-alt)}
.au-ber-2qex-lead{font-size:1.05rem;max-width:760px;margin-bottom:2rem}

/* Header */
.au-ber-2qex-page-head{position:sticky;top:0;z-index:1000;background:var(--color-surface);box-shadow:0 2px 12px rgba(0,0,0,.06)}
.au-ber-2qex-topbar{background:var(--grad);color:#fff;font-size:.82rem}
.au-ber-2qex-topbar__inner{max-width:1200px;margin:0 auto;padding:.5rem 1.25rem;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.au-ber-2qex-page-head__row{max-width:1200px;margin:0 auto;padding:.85rem 1.25rem;display:flex;align-items:center;gap:1.5rem}
.au-ber-2qex-page-head__logo img{height:44px;width:auto}
.au-ber-2qex-page-head__nav{display:flex;gap:1.1rem;flex:1;justify-content:center;align-items:center}
.au-ber-2qex-page-head__nav a{color:var(--color-text);font-size:.92rem;font-weight:500;padding:.4rem .2rem;position:relative;transition:color .2s}
.au-ber-2qex-page-head__nav a:hover{color:var(--color-primary)}
.au-ber-2qex-dropdown{position:relative}
.au-ber-2qex-dropdown__trigger{cursor:pointer;display:inline-flex;align-items:center;gap:.3rem;color:var(--color-text);font-weight:500;font-size:.92rem;background:none;border:0;font-family:inherit}
.au-ber-2qex-dropdown__menu{display:none;position:absolute;top:100%;left:50%;transform:translateX(-50%);background:#fff;min-width:230px;border-radius:var(--radius);box-shadow:var(--shadow);padding:.5rem;margin-top:0;z-index:1100}
.au-ber-2qex-dropdown:hover .au-ber-2qex-dropdown__menu,.au-ber-2qex-dropdown:focus-within .au-ber-2qex-dropdown__menu{display:block}
.au-ber-2qex-dropdown__menu a{display:block;padding:.6rem .9rem;border-radius:8px}
.au-ber-2qex-dropdown__menu a:hover{background:var(--color-surface-alt)}
.au-ber-2qex-page-head__actions{display:flex;align-items:center;gap:.75rem}
.au-ber-2qex-page-head__menu-btn{display:none;background:none;border:0;font-size:1.5rem;color:var(--color-text);cursor:pointer}

/* Mobile */
.au-ber-2qex-mobile-overlay{display:none;position:fixed;top:0;right:0;height:100vh;width:85%;max-width:340px;background:#fff;box-shadow:-10px 0 30px rgba(0,0,0,.15);z-index:1200;padding:1.5rem;overflow-y:auto;transform:translateX(100%);transition:transform .3s}
.au-ber-2qex-mobile-overlay.is-open{display:block;transform:translateX(0)}
.au-ber-2qex-mobile-overlay a{display:block;padding:.85rem .5rem;color:var(--color-text);border-bottom:1px solid var(--color-border);font-weight:500}
.au-ber-2qex-mobile-overlay .au-ber-2qex-submenu{padding-left:1rem}
.au-ber-2qex-mobile-close{float:right;background:none;border:0;font-size:1.5rem;cursor:pointer;margin-bottom:1rem}

/* Buttons */
.au-ber-2qex-cta{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.6rem;border-radius:50px;font-weight:600;font-size:.95rem;cursor:pointer;border:0;font-family:inherit;transition:all .25s;text-decoration:none}
.au-ber-2qex-cta--primary{background:var(--grad);color:#fff;box-shadow:0 6px 20px rgba(26,35,126,.3)}
.au-ber-2qex-cta--primary:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(26,35,126,.4)}
.au-ber-2qex-cta--secondary{background:var(--color-accent);color:#fff}
.au-ber-2qex-cta--outline{background:transparent;color:var(--color-primary);border:2px solid var(--color-primary)}
.au-ber-2qex-cta--outline:hover{background:var(--color-primary);color:#fff}
.au-ber-2qex-page-head .au-ber-2qex-cta{padding:.6rem 1.2rem;font-size:.85rem}

/* Hero */
.au-ber-2qex-cover{position:relative;padding:3rem 0 4rem;overflow:visible}
.au-ber-2qex-cover__bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,35,126,.85),rgba(40,53,147,.75)),url('/resources/bergen-norway-main-slider.webp') center/cover no-repeat;z-index:0}
.au-ber-2qex-cover__inner{position:relative;z-index:1;display:flex;flex-direction:column;gap:2rem;padding-top:5px;padding-bottom:9px}
.au-ber-2qex-cover__copy{text-align:center;color:#fff;max-width:900px;margin:0 auto}
.au-ber-2qex-cover__copy h1{color:#fff;margin-bottom:1rem}
.au-ber-2qex-cover__copy p{color:rgba(255,255,255,.92);font-size:1.08rem;margin-bottom:1.25rem}
.au-ber-2qex-cover__copy strong{color:#fff}
.au-ber-2qex-pill{display:inline-flex;align-items:center;gap:.5rem;background:var(--color-accent);color:#fff;padding:.45rem 1rem;border-radius:50px;font-size:.85rem;font-weight:600;margin-bottom:1rem}
.au-ber-2qex-trust{display:flex;flex-wrap:wrap;gap:1.2rem;justify-content:center;color:#fff;font-size:.9rem}
.au-ber-2qex-trust span{display:inline-flex;align-items:center;gap:.4rem}
.au-ber-2qex-trust i{color:#7cffb2}
.au-ber-2qex-cover__widget{width:100%}

/* Grid + tiles */
.au-ber-2qex-arrange{display:grid;gap:1.5rem;grid-template-columns:1fr}
.au-ber-2qex-arrange--3{grid-template-columns:repeat(3,1fr)}
.au-ber-2qex-arrange--4{grid-template-columns:repeat(4,1fr)}
.au-ber-2qex-tile{background:var(--grad);color:#fff;padding:1.75rem;border-radius:var(--radius);transition:transform .3s,box-shadow .3s}
.au-ber-2qex-tile:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(26,35,126,.25)}
.au-ber-2qex-tile h3{color:#fff}
.au-ber-2qex-tile p{color:rgba(255,255,255,.88);font-size:.92rem}
.au-ber-2qex-tile__icon{width:46px;height:46px;border-radius:12px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;font-size:1.15rem;color:#fff}

/* Bridgeflow */
.au-ber-2qex-bridgeflow-2q{display:grid;grid-template-columns:3fr 2fr;gap:2.5rem;align-items:center}
.au-ber-2qex-bridgeflow-2q--reverse .au-ber-2qex-bridgeflow-2q__media{order:-1}
.au-ber-2qex-bridgeflow-2q__media img{border-radius:var(--radius);box-shadow:var(--shadow);transition:transform .5s}
.au-ber-2qex-bridgeflow-2q__media:hover img{transform:scale(1.04)}
.au-ber-2qex-bridgeflow-2q--wrap::after{content:"";display:block;clear:both}
.au-ber-2qex-bridgeflow-2q--wrap{display:block}
.au-ber-2qex-bridgeflow-2q--wrap .au-ber-2qex-bridgeflow-2q__media{float:right;width:42%;margin:0 0 1rem 1.5rem}

/* Gallery */
.au-ber-2qex-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.nx-gallery-center{grid-template-columns:minmax(280px,560px);justify-content:center}
.au-ber-2qex-gallery figure{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.au-ber-2qex-gallery img{width:100%;height:280px;object-fit:cover;transition:transform .5s}
.au-ber-2qex-gallery figure:hover img{transform:scale(1.05)}
.au-ber-2qex-gallery figcaption{padding:.85rem 1rem;font-size:.88rem;color:var(--color-muted)}

/* Reviews */
.au-ber-2qex-review{background:#fff;color:var(--color-text)}
.au-ber-2qex-review h3,.au-ber-2qex-review p{color:var(--color-text)}
.au-ber-2qex-review p{color:var(--color-muted);font-style:italic;margin:.7rem 0}
.au-ber-2qex-stars{color:#ffb400}
.au-ber-2qex-review strong{display:block;margin-top:.7rem}
.au-ber-2qex-review span{font-size:.82rem;color:var(--color-muted)}

/* FAQ */
.au-ber-2qex-faq{display:grid;grid-template-columns:1fr 1.4fr;gap:3rem;align-items:start}
.au-ber-2qex-help-item{background:#fff;border-radius:var(--radius);margin-bottom:.75rem;box-shadow:0 2px 8px rgba(0,0,0,.04);overflow:hidden}
.au-ber-2qex-help-item__question{width:100%;background:none;border:0;padding:1.1rem 1.25rem;text-align:left;font-weight:600;font-size:.98rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;color:var(--color-text);font-family:inherit}
.au-ber-2qex-help-item__question i{transition:transform .25s;color:var(--color-primary)}
.au-ber-2qex-help-item.is-open .au-ber-2qex-help-item__question i{transform:rotate(180deg)}
.au-ber-2qex-help-item__answer{max-height:0;overflow:hidden;transition:max-height .3s}
.au-ber-2qex-help-item.is-open .au-ber-2qex-help-item__answer{max-height:500px}
.au-ber-2qex-help-item__answer p{padding:0 1.25rem 1.1rem}

/* Map */
.au-ber-2qex-map iframe{width:100%;height:380px;border:0;border-radius:var(--radius);box-shadow:var(--shadow)}
.au-ber-2qex-map__chips{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.25rem;justify-content:center}
.au-ber-2qex-map__chips span{background:#fff;padding:.55rem 1rem;border-radius:50px;font-size:.85rem;box-shadow:0 2px 6px rgba(0,0,0,.06);display:inline-flex;align-items:center;gap:.4rem}
.au-ber-2qex-map__chips i{color:var(--color-accent)}

/* CTA band */
.au-ber-2qex-cta-band{background:var(--grad);color:#fff}
.au-ber-2qex-cta-band h2,.au-ber-2qex-cta-band p,.au-ber-2qex-cta-band strong{color:#fff}
.au-ber-2qex-cta-band .au-ber-2qex-cta--primary{background:#fff;color:var(--color-primary)}

/* Specs */
.au-ber-2qex-specs{background:#fff;padding:1rem;border-radius:var(--radius);box-shadow:var(--shadow)}

/* Footer */
.au-ber-2qex-base{background:#0d1340;color:#d8dcef;padding:3rem 0 1.5rem;text-align:center}
.au-ber-2qex-base a{color:#d8dcef}
.au-ber-2qex-base a:hover{color:var(--color-accent)}
.au-ber-2qex-base__brand{margin-bottom:1.5rem}
.au-ber-2qex-base__brand img{height:50px;margin:0 auto 1rem}
.au-ber-2qex-base__tagline{color:#b0b6d2;font-size:.95rem}
.au-ber-2qex-base__nav{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;margin:1.5rem 0;font-size:.92rem}
.au-ber-2qex-base__contact{font-size:.88rem;color:#b0b6d2;line-height:1.9;margin:1rem 0}
.au-ber-2qex-base__support{color:#b0b6d2;font-size:.85rem;max-width:520px;margin:.5rem auto 1.5rem}
.au-ber-2qex-base__legal{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem 1.25rem;font-size:.82rem;color:#b0b6d2;padding:1rem 0;border-top:1px solid rgba(255,255,255,.1);margin-top:1rem}
.au-ber-2qex-base__copyright{font-size:.82rem;color:#8b91b3;margin-top:.75rem}

/* Language selector */
.language-selector{position:relative}
.language-selector .current-lang{cursor:pointer;display:inline-flex;align-items:center;gap:.4rem;padding:.4rem .7rem;border-radius:8px;color:inherit;font-size:.85rem}
.language-dropdown{display:none;position:absolute;top:100%;right:0;background:#fff;min-width:160px;border-radius:8px;box-shadow:var(--shadow);z-index:3000;padding:.4rem 0;margin-top:.3rem}
.language-selector:hover .language-dropdown{display:block}
.language-dropdown a{display:flex;align-items:center;gap:8px;padding:8px 16px;color:var(--color-text);font-size:.85rem}
.language-dropdown a:hover{background:var(--color-surface-alt)}

/* Cookie */
.cookie-consent{position:fixed;bottom:0;left:0;right:0;background:rgba(13,19,64,.97);color:#fff;padding:1.1rem 1.25rem;z-index:9999;display:none;box-shadow:0 -4px 20px rgba(0,0,0,.2)}
.cookie-consent.is-visible{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem;text-align:center}
.cookie-consent__text{flex:1;min-width:240px;font-size:.88rem}
.cookie-consent__link{color:var(--color-accent);text-decoration:underline}
.cookie-consent__accept{background:var(--color-accent);color:#fff;border:0;padding:.65rem 1.4rem;border-radius:50px;font-weight:600;cursor:pointer}
.cookie-consent__decline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);padding:.65rem 1.2rem;border-radius:50px;cursor:pointer}

/* Animations */
[data-anim="reveal"]{opacity:0;transform:translateY(20px);transition:opacity .7s,transform .7s}
[data-anim="reveal"].is-visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){[data-anim="reveal"]{opacity:1;transform:none}}

/* Booking widget safety */
.partner-wrapper,.partner-block{width:100%}

/* Responsive */
@media(max-width:1024px){
  .au-ber-2qex-arrange--4{grid-template-columns:repeat(2,1fr)}
  .au-ber-2qex-arrange--3{grid-template-columns:repeat(2,1fr)}
  .au-ber-2qex-faq{grid-template-columns:1fr;gap:1.5rem}
}
@media(max-width:768px){
  .au-ber-2qex-topbar{display:none}
  .au-ber-2qex-page-head__row{justify-content:space-between}
  .au-ber-2qex-page-head__nav{display:none}
  .au-ber-2qex-page-head__actions{margin-left:auto}
  .au-ber-2qex-page-head__menu-btn{display:block}
  .au-ber-2qex-page-head .au-ber-2qex-cta{display:none}
  .au-ber-2qex-arrange--3,.au-ber-2qex-arrange--4{grid-template-columns:1fr}
  .au-ber-2qex-bridgeflow-2q{grid-template-columns:1fr}
  .au-ber-2qex-bridgeflow-2q--wrap .au-ber-2qex-bridgeflow-2q__media{float:none;width:100%;margin:0 0 1rem}
  .au-ber-2qex-gallery{grid-template-columns:1fr}
  .au-ber-2qex-module{padding:2.5rem 0}
}
@media(max-width:640px){
  .au-ber-2qex-trust{gap:.7rem;font-size:.82rem}
}

:focus-visible{outline:3px solid var(--color-accent);outline-offset:2px}
@media print{.au-ber-2qex-page-head,.au-ber-2qex-base,.cookie-consent{display:none}}
