/* =============================
   CSS RESET & NORMALIZE
============================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #101626;
  color: #f3f7f9;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; transition: color 0.2s;}
a:focus { outline: 2px solid #F9B233; outline-offset: 3px; }
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* Basics */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* =============================
   TYPOGRAPHY & FONT SCALE
============================= */
h1, .h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #F9B233;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.18;
}
@media (min-width: 700px) {
  h1, .h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
h2, .h2 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #F3F7F9;
  margin-bottom: 16px;
  line-height: 1.22;
}
@media (min-width: 700px) {
  h2, .h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #F9B233;
  margin-bottom: 8px;
  line-height: 1.25;
}
@media (min-width: 700px) {
  h3, .h3 { font-size: 1.35rem; }
}

p, li, .body-text {
  font-size: 1rem;
  color: #dde7f0;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
p.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #F9B233;
  margin-bottom: 28px;
}
strong, b { color: #F9B233; font-weight: 600; }

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: #142132;
  border-bottom: 2px solid #1d4663;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f3f7f9;
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover {
  background: #225378;
  color: #F9B233;
}
.cta {
  display: inline-block;
  border-radius: 32px;
  padding: 10px 26px;
  background: #F9B233;
  color: #1d4663;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 16px rgba(34, 83, 120, 0.15);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.17s, box-shadow 0.2s;
  margin-left: 14px;
  margin-right: 8px;
}
.cta:hover, .cta:focus {
  background: #225378;
  color: #F9B233;
  border: 2px solid #F9B233;
  box-shadow: 0 6px 32px 0 rgba(249,178,51, 0.14), 0 1.5px 8px #142132;
}
header img {
  height: 44px;
  margin-right: 14px;
}

/* Hamburger Button */
.mobile-menu-toggle {
  background: #101626;
  color: #F9B233;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  margin-left: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 31;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px 0 rgba(34,83,120,0.12);
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1d4663;
  color: #fff;
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */
  background: rgba(16,22,38,0.96);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.66,0,0.33,1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F9B233;
  border-radius: 50%;
  color: #1d4663;
  font-size: 2.1rem;
  border: none;
  margin: 18px 28px 0 0;
  width: 54px;
  height: 54px;
  transition: background 0.19s;
  cursor: pointer;
  z-index: 100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #225378;
  color: #F9B233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
  padding-left: 38px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 3px;
  width: 100%;
  transition: color 0.14s, background 0.14s;
  min-width: 180px;
}
.mobile-nav a:hover {
  color: #F9B233;
  background: #142132;
}

@media (max-width: 1050px) {
  header .container { gap: 5px; }
  .main-nav { gap: 12px; }
  .cta { margin-left: 4px; }
}
@media (max-width: 870px) {
  .main-nav { gap: 5px; }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* =============================
   HERO SECTIONS
============================= */
.hero {
  background: linear-gradient(120deg, #16263c 80%, #225378 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0 24px 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px 0 16px;
  background: rgba(20,33,50, 0.44);
  border-radius: 22px;
  box-shadow: 0 4px 64px 0 rgba(34, 83,120, 0.09);
}

@media (min-width: 768px) {
  .hero {
    min-height: 440px;
    padding: 82px 0 44px 0;
  }
  .hero .content-wrapper {
    padding: 36px 52px 0 52px;
    border-radius: 32px; 
  }
}

/* =============================
   FLEX CONTAINER LAYOUTS
============================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F7F9;
  color: #1d4663;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,83,120,0.11);
  min-width: 0;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px 0 #F9B23344, 0 2px 8px 0 #1d466344;
  background: #fffbe8;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  background: #182744;
  border-radius: 16px;
  padding: 25px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(34,83,120, 0.098);
  border: 1.7px solid #22537844;
  transition: transform 0.21s, box-shadow 0.16s;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 42px 0 #22537825, 0 2px 12px 0 #F9B23344;
}
.feature-item img {
  height: 42px;
  margin-bottom: 2px;
  filter: drop-shadow(0px 5px 12px #22537866);
}

@media (max-width: 900px) {
  .feature-item { min-width: 180px; }
}
@media (max-width: 600px) {
  .feature-item {
    min-width: 100%;
    width: 100%;
    padding: 17px 10px;
  }
}

/* =============================
   FEATURE SECTIONS
============================= */
.features {
  background: #16263c;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(34,83,120,0.085);
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.features h2 {
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============================
   SERVICES & CARDS
============================= */
.services {
  background: #192f4a;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(34,83,120,0.05);
}
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card {
  background: #16263c;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,83,120,0.09);
  border: 1.5px solid #22537833;
  padding: 24px 22px;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s, border 0.17s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 6px 44px 0 #F9B23324, 0 1.5px 8px #1d466344;
  border: 1.5px solid #F9B233;
  transform: scale(1.03) translateY(-4px);
}
.service-price {
  color: #F9B233;
  font-weight: 700;
  margin-top: 3px;
  font-size: 1.1rem;
}

/* Services/Guides Lists */
.guide-list, .tool-rental-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.guide-item, .tool-item {
  background: #16263c;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,83,120,0.09);
  border: 1.5px solid #22537833;
  padding: 22px 18px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.14s, transform 0.14s;
}
.guide-item:hover, .tool-item:hover {
  box-shadow: 0 6px 44px 0 #22537833, 0 1.5px 8px #F9B23344;
  border: 1.5px solid #F9B233;
  transform: scale(1.03);
}

/* Steps/Process */
.process-steps {
  background: #1d4663;
  border-radius: 18px;
  padding: 20px 24px;
  margin: 25px 0 20px 0;
  color: #F3F7F9;
  box-shadow: 0 2px 16px 0 rgba(249,178,51,0.05);
}
.process-steps h3 {
  color: #F9B233;
  margin-bottom: 10px;
}
.process-steps ol {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials {
  background: #192f4a;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(34,83,120,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
}
.testimonial-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  color: #1d4663;
  font-size: 1.07rem;
  box-shadow: 0 2px 18px 0 #22537825;
  margin-bottom: 20px;
  flex: 1 1 280px;
  border-radius: 16px;
  border: 1.5px solid #D1E3F1;
  transition: background 0.13s, box-shadow 0.14s, transform 0.15s;
}
.testimonial-card:hover {
  background: #faf9f5;
  box-shadow: 0 6px 28px #F9B23318, 0 2px 8px #1d466344;
  transform: translateY(-3px) scale(1.012);
}
.testimonial-info {
  color: #225378;
  font-size: 0.97rem;
  margin-top: 7px;
  font-style: italic;
}

/* CRITICAL: Contrast Fix for Testimonials */
.testimonial-card p,
.testimonial-card .testimonial-info { color: #1d4663; }

/* =============================
   CONTACT/INFO BOXES
============================= */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  background: #142132;
  border-radius: 18px;
  padding: 26px 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(34,83,120, 0.08);
}
.contact-info, .opening-hours, .brief-map { margin-bottom: 12px; }
.quick-links { margin-top: 2px; }
.quick-links a {
  color: #F9B233;
  font-weight: 600;
  transition: color 0.13s;
}
.quick-links a:hover { color: #fff; text-decoration: underline; }

.opening-hours h3 {
  color: #F9B233;
  margin-bottom: 7px;
}

.brief-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.brief-map img {
  height: 26px;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #132746;
  border-top: 2px solid #1d4663;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  color: #F9B233;
}
.footer-brand img {
  height: 32px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin: 8px 0 8px 0;
}
.footer-nav a {
  color: #f3f7f9;
  font-size: 0.97rem;
  transition: color 0.12s;
  padding: 4px 12px;
  border-radius: 7px;
}
.footer-nav a:hover {
  color: #F9B233;
  background: #225378;
}
footer small {
  color: #dde7f0;
}

/* =============================
   PAGE SPECIALS (FooterSection)
============================= */
.footer-section {
  background: #192f4a;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(34,83,120,0.07);
  margin-bottom: 48px;
  padding: 40px 20px;
}
.footer-section h1 {
  color: #F9B233;
}
.privacy-policy-text, .gdpr-content, .terms-of-use-text, .cookie-policy-text {
  margin-top: 20px;
}
.privacy-policy-text ul, .gdpr-content ul, .cookie-policy-text ul, .terms-of-use-text ul {
  margin-bottom: 14px;
}
.privacy-policy-text a, .gdpr-content a, .terms-of-use-text a, .cookie-policy-text a {
  color: #F9B233;
  text-decoration: underline;
  transition: color 0.13s;
}

/* =============================
   RESPONSIVENESS
============================= */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .section, .testimonials, .features, .services, .footer-section {
    padding: 32px 6vw;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .section, .testimonials, .features, .services, .footer-section {
    padding: 22px 3vw 12px 3vw;
    margin-bottom: 42px;
  }
  header .container { flex-direction: row; padding-top: 7px; padding-bottom: 7px; }
  .hero {
    padding: 30px 0 12px 0;
    min-height: 250px;
    border-radius: 0;
  }
  .hero .content-wrapper {
    padding: 9px 4px 0 4px;
    border-radius: 13px;
  }
  .service-cards, .feature-grid, .guide-list, .tool-rental-list {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-cards {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid, .card-container,
  .testimonials .testimonial-cards,
  .features .feature-grid,
  .contact-box {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* =============================
   BUTTONS, LINKS & INTERACTIVITY
============================= */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  user-select: none;
  outline: none;
}
.button, button, .cta {
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s, border 0.16s;
}
.button:active, .cta:active, button:active {
  filter: brightness(0.93);
}

/* =============================
   ANIMATIONS & MICRO-INTERACTIONS
============================= */
.card, .service-card, .feature-item, .tool-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s, border 0.17s, background 0.19s;
}
.cta {
  transition: background 0.16s, color 0.15s, border 0.17s, box-shadow 0.24s;
}
.cta:active {
  background: #d18a05;
}

/*
===========================
COOKIE CONSENT BANNER
===========================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #225378;
  color: #fff;
  z-index: 120;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 18px;
  box-shadow: 0 -4px 32px #14213299;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.66,0,0.33,1), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 4 1 480px;
  margin-right: 8px;
  line-height: 1.5;
}
.cookie-banner .cookie-actions {
  flex: 1 1 210px;
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  background: #F9B233;
  color: #1d4663;
  border-radius: 27px;
  padding: 7px 17px;
  border: none;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  margin-left: 0;
  box-shadow: 0 1.5px 8px #1d466344;
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #225378;
  color: #F9B233;
  border: 2px solid #F9B233;
  outline: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.95rem;
    padding: 18px 7vw 16px 7vw;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }
}

/*
===========================
COOKIE MODAL SETTINGS
===========================*/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,22,38,0.93);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #142132;
  color: #fff;
  border-radius: 18px;
  min-width: 280px;
  max-width: 420px;
  padding: 36px 28px 26px 28px;
  box-shadow: 0 8px 40px #22537831, 0 1.5px 8px #F9B23344;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 150;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h2 {
  color: #F9B233;
  margin-bottom: 14px;
  font-size: 1.33rem;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
}
.cookie-modal input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #F9B233;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 11px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 11px;
  background: #F9B233;
  color: #1d4663;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 8px #1d466344;
  cursor: pointer;
  z-index: 151;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-modal-close:focus, .cookie-modal .cookie-modal-close:hover {
  background: #225378;
  color: #F9B233;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 23px 6vw 16px 6vw; }
}

/* =============================
   UTILS: .hide, .show
============================= */
.hide { display: none !important; }
.show { display: block !important; }

/* =============================
   MISCELLANEOUS
============================= */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #1d4663;
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #142132;
}

hr {
  border: none;
  border-bottom: 1.5px solid #1d4663;
  margin: 36px 0;
}

/* Highlighted text with neon accent glow */
.neon {
  color: #F9B233 !important;
  text-shadow: 0 0 14px #F9B23366, 0 0 2px #22537888;
}

/* Micro-interaction accent underline for links */
a.underline-animate {
  position: relative;
  color: #F9B233;
}
a.underline-animate:after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 2.5px;
  background: #F9B233;
  border-radius: 2.5px;
  transform: scaleX(0);
  transition: transform 0.18s;
}
a.underline-animate:hover:after { transform: scaleX(1); }
section {
  padding: 15px;
}
/* END */
