/* =======================
   CSS RESET & NORMALIZATION
   ======================= */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #E9F0F8;
  color: #233554;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(120deg, #E9F0F8 60%, #dbe5f3 100%);
}

/* =========================
   BRAND FONTS (Google Fonts)
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, .hero h1, .cta h2, .section > h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #233554;
  letter-spacing: 0.02em;
}
h1, .hero h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2, .section > h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-family: 'Oswald', Arial, sans-serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: #233554; }
h4, h5, h6 { font-family: 'Oswald', Arial, sans-serif; color: #233554; }
p, ul, li, table, th, td, blockquote { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; color: #233554; }
p { margin-bottom: 14px; }
strong, b { font-weight: 700; color: #233554; }

/* =========================
   UTILITY CLASSES
   ========================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 10px 0 rgba(35,53,84,0.05);
}

/* =================
   HEADER
   ================= */
header {
  background: linear-gradient(90deg, #233554 70%, #DAA520 100%);
  color: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 12px 0 rgba(35,53,84,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 20px;
  gap: 24px;
}
header img {
  height: 48px;
  max-width: 220px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 2px 6px;
}
header nav a:hover, header nav a:focus {
  color: #DAA520;
  outline: none;
}
.cta-btn {
  background: linear-gradient(90deg, #DAA520 75%, #E9F0F8 100%);
  color: #233554;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  text-decoration: none;
  box-shadow: 0 2px 14px 0 rgba(218,165,32,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #E9F0F8 30%, #DAA520 100%);
  color: #233554;
  box-shadow: 0 8px 24px 0 rgba(35,53,84,0.11);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu-toggle {
  display: none;
  background: #233554;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 50;
  box-shadow: 0 2px 8px 0 rgba(35,53,84,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #DAA520;
  color: #233554;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #233554;
  color: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.87,0,0.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 20px 26px;
  cursor: pointer;
  z-index: 121;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #DAA520;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 0 0;
  width: 100vw;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 14px;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DAA520;
  color: #233554;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none;
  }
}

/* ===================
   HERO SECTIONS
   =================== */
.hero {
  background: linear-gradient(100deg, #E9F0F8 60%, #d7e3f2 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 50px;
  padding: 60px 0 52px 0;
  box-shadow: 0 6px 28px 0 rgba(35,53,84,0.11);
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.hero .content-wrapper {
  max-width: 660px;
  align-items: flex-start;
}
.hero p {
  color: #233554;
  opacity: 0.91;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 28px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 32px;
  }
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero .content-wrapper { max-width: 100%; }
}

/* ========================
   FEATURES & SERVICES
   ======================== */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}
.feature, .service-card {
  background: linear-gradient(102deg, #fff 85%, #E9F0F8 100%);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,53,84,0.06);
  padding: 28px 20px 18px 20px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
  overflow: hidden;
}
.feature img, .service-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 2px #E9F0F8);
}
.feature h3, .service-card h3 {
  font-size: 1.17rem;
}
.feature p, .service-card p {
  font-size: 0.98rem;
  opacity: 0.95;
}
.feature:hover, .service-card:hover {
  box-shadow: 0 6px 18px 0 rgba(35,53,84,0.14);
  transform: translateY(-4px) scale(1.018);
}

@media (max-width: 768px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
    margin-top: 14px;
  }
  .feature, .service-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* ========================
   GENERAL FLEX UTILS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(35,53,84,0.07);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(35,53,84,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  max-width: 700px;
}
.testimonial-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E9F0F8;
  object-fit: cover;
}
.testimonial-card blockquote {
  color: #233554;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
  flex: 1 1 auto;
}
.testimonial-card p {
  color: #233554;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  opacity: 0.85;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(35,53,84,0.15);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   PRICING TABLES
   ========================= */
.pricing-table, .opening-hours-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 22px 0 12px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(35,53,84,0.07);
}
.pricing-table th, .pricing-table td, .opening-hours-table td {
  text-align: left;
  padding: 15px 14px;
}
.pricing-table th {
  background: #DAA520;
  color: #233554;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
}
.pricing-table tr:nth-child(even), .opening-hours-table tr:nth-child(even) {
  background: #E9F0F8;
}
.price-notes ul {
  margin: 8px 0;
  padding-left: 22px;
}
.price-notes li {
  font-size: 0.96rem;
  margin-bottom: 6px;
}

/***** FAQ LIST *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 24px 0 0 0;
}
.faq-item h3 {
  color: #233554;
  font-size: 1.1rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.faq-item p {
  padding-left: 2px;
}

/***** GUARANTEES AREA *****/
.guarantees {
  background: #E9F0F8;
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 20px;
  font-size: 1.08rem;
  color: #233554;
  box-shadow: 0 1px 10px 0 rgba(35,53,84,0.03);
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: linear-gradient(90deg, #233554 70%, #DAA520 100%);
  color: #fff;
  padding: 28px 0 10px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #DAA520;
  text-decoration: underline;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px #E9F0F8);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #DAA520;
  text-decoration: none;
  word-break: break-word;
}
.footer-contact a:hover, .footer-contact a:focus {
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ===============
   CARD DESIGN
   =============== */
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(35,53,84,0.08);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 34px 0 rgba(35,53,84,0.18);
  transform: translateY(-2px) scale(1.01);
}

/* ===============
   CTA STYLES
   =============== */
.cta {
  background: linear-gradient(96deg, #233554 76%, #DAA520 100%);
  border-radius: 24px;
  color: #fff;
  text-align: left;
  padding: 44px 0;
  margin-bottom: 62px;
  box-shadow: 0 2px 18px 0 rgba(35,53,84,0.09);
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  max-width: 600px;
  align-items: flex-start;
  color: #fff;
}
.cta h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 2rem;
}
.cta p {
  color: #E9F0F8;
  margin-bottom: 24px;
}
.cta .cta-btn {
  background: #DAA520;
  color: #233554;
  font-family: 'Oswald', Arial, sans-serif;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #DAA520;
}

@media (max-width: 768px) {
  .cta {
    padding: 22px 0;
    border-radius: 13px;
    margin-bottom: 38px;
  }
  .cta .container { padding: 0 10px; }
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #233554;
  color: #fff;
  padding: 18px 16px;
  box-shadow: 0 -2px 16px 0 rgba(35,53,84,0.13);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 1rem;
  animation: cookie-slidein 0.5s cubic-bezier(0.7,0,0.23,1);
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin: 0 8px 0 0;
  flex: 1 1 240px;
}
.cookie-banner .cookie-btn {
  background: #DAA520;
  color: #233554;
  border: none;
  border-radius: 17px;
  padding: 10px 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.12s;
}
.cookie-banner .cookie-btn:last-child { margin-right: 0; }
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #fff;
  color: #DAA520;
  box-shadow: 0 2px 8px 0 rgba(218, 165, 32, 0.13);
  outline: none;
}
.cookie-banner .cookie-link {
  color: #DAA520;
  text-decoration: underline;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.18s;
}
.cookie-banner .cookie-link:focus, .cookie-banner .cookie-link:hover {
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,53,84,0.48);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade 0.18s;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #233554;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(35,53,84,0.18);
  padding: 36px 24px 22px 24px;
  min-width: 310px;
  max-width: 98vw;
  max-height: 92vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-slide 0.3s cubic-bezier(0.87,0,0.13,1);
}
@keyframes cookie-modal-slide {
  from { transform: translateY(70px) scale(0.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #DAA520;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.cookie-category input[disabled] {
  filter: grayscale(1) opacity(0.67);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  background: #DAA520;
  color: #233554;
  border-radius: 19px;
  border: none;
  padding: 10px 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.12s;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: #fff;
  color: #DAA520;
  box-shadow: 0 2px 10px 0 rgba(218, 165, 32, 0.15);
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 84vw;
    padding: 16px 7vw 18px 7vw;
  }
}

/* ===================
   GENERAL ELEMENTS
   =================== */
ul, ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 7px;
}
a {
  color: #233554;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #DAA520;
  outline: none;
}
blockquote {
  border-left: 3px solid #DAA520;
  padding-left: 14px;
  margin-left: 0;
  color: #233554;
  font-style: italic;
  opacity: 0.95;
}
table { border-collapse: collapse; }
th, td { border: none; }

hr {
  border: none;
  border-top: 1.5px solid #E9F0F8;
  margin: 22px 0;
}

img {
  max-width: 100%;
  display: block;
}

.map-placeholder {
  background: #E9F0F8;
  border-radius: 12px;
  text-align: center;
  padding: 24px 14px 12px 14px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-placeholder img { margin: 0 auto 8px auto; width: 60px; }

/**** BUTTONS *****/
button, .btn, input[type="submit"], input[type="button"] {
  font-family: 'Oswald', Arial, sans-serif;
  cursor: pointer;
  border-radius: 19px;
  padding: 10px 28px;
  font-size: 1rem;
  border: none;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.12s;
  background: #DAA520;
  color: #233554;
  font-weight: 700;
}
button:focus, .btn:focus, input[type="submit"]:focus, input[type="button"]:focus {
  outline: 2px solid #233554;
  background: #fff;
  color: #DAA520;
}
button:hover, .btn:hover, input[type="submit"]:hover, input[type="button"]:hover {
  transform: translateY(-2px) scale(1.04);
  background: #fff;
  color: #DAA520;
}

/**** CARDS, SECTIONS & FLEX 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** RESPONSIVE: MOBILE-FIRST! *****/
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 24px 8px; margin-bottom: 30px; }
  header .container {
    flex-direction: row;
    padding: 0 8px;
    height: 60px;
  }
  .footer-contact { font-size: 0.91rem; }
  .cta h2 { font-size: 1.36rem; }
  h1, .hero h1 { font-size: 1.35rem; }
  h2, .section > h2 { font-size: 1.11rem; }
  h3 { font-size: 1rem; }
  .content-wrapper, .guarantees, .testimonial-card { gap: 12px; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 10px;
  }
}

/* ======================================
   VISUAL HIERARCHY, SPACING, MODERNITY
   ====================================== */
.section, .card, .feature, .service-card, .faq-item, .testimonial-card, .guarantees, .pricing-table, .opening-hours-table, .cta, .cookie-modal {
  box-shadow: 0 1px 10px 0 rgba(35,53,84,0.06);
}
.section, .card, .feature, .service-card, .testimonial-card, .guarantees, .cookie-modal {
  border-radius: 16px;
}
.cta, .footer, .hero {
  border-radius: 24px;
}
h1, .hero h1, h2, .section > h2, .cta h2 {
  margin-bottom: 12px;
}
p, ul, ol, table, .faq-list, .testimonial-card {
  margin-bottom: 12px;
}

/* ======================
   ANIMATIONS & TRANSITIONS
   ======================= */
.card, .feature, .service-card, .testimonial-card, .cta-btn, button, .btn {
  transition: box-shadow 0.15s, transform 0.12s, background 0.13s, color 0.13s;
}

/**** HIDE visually but keep accessible ****/
.sr-only {
  position: absolute!important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =============================
   ACCESSIBILITY IMPROVEMENTS
   ============================= */
*:focus {
  outline: 2px solid #DAA520;
  outline-offset: 2px;
  border-radius: 3px;
  z-index: 1;
}

/* ===== CUSTOM SCROLLBAR for MODERN FEEL ===== */
::-webkit-scrollbar { width: 8px; background: #E9F0F8; }
::-webkit-scrollbar-thumb { background: #DAA520; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #c9961a; }

/* END OF CSS */
