/* --- 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,
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fbfbfc;
  color: #25416b;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25416b;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #e9b765;
  outline: none;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', 'Roboto', Arial, sans-serif;
  color: #25416b;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  margin-top: 32px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p, li, blockquote, cite, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25416b;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong, b {
  font-weight: bold;
}

blockquote {
  font-style: italic;
  color: #25416b;
  background: #f4f4f6;
  padding: 16px 22px;
  border-left: 4px solid #e9b765;
  margin-bottom: 8px;
  border-radius: 8px 18px 18px 8px;
}
cite {
  font-style: normal;
  color: #6b7b92;
  margin-top: 4px;
  font-size: 14px;
  display: block;
  padding-left: 6px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(55,60,80,.04);
  /* soft, subtle shadow */
}

/* --- FLEXBOX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(37,65,107,0.05);
  padding: 28px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f4f4f6;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(37, 65, 107, 0.07);
}

/* --- HERO SECTIONS --- */
.hero {
  background: #f4f4f6 url('../assets/hero-bg.svg') top right no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  border-radius: 0 0 36px 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero h1 {
  font-size: 2.4rem;
  color: #25416b;
}
.hero p {
  font-size: 1.19rem;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(37,65,107,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 10px 0;
}
nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav ul li a {
  font-family: 'IBM Plex Sans', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25416b;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #f4f4f6;
  color: #e9b765;
}
nav a.cta-btn {
  background: #25416b;
  color: #fff !important;
  font-family: 'IBM Plex Sans', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 10px 26px;
  margin-left: 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(37,65,107,0.07);
  transition: background 0.18s, color 0.18s, box-shadow .22s;
  border: 2px solid #25416b;
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: #e9b765;
  color: #25416b !important;
  border-color: #e9b765;
  box-shadow: 0 4px 18px 0 rgba(233,183,101,.11);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #25416b;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 105;
  border: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e9b765;
  color: #25416b;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,52,82,0.96);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.54,.04,.55,1.46);
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 20px 8px 0;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #e9b765;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 40px 32px 40px 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.26rem;
  font-weight: 600;
  padding: 8px 8px 8px 4px;
  border-radius: 10px;
  transition: background .18s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #e9b765;
  color: #25416b;
}


/* --- MAIN --- */
main {
  margin-top: 24px;
  min-height: 54vh;
}
.section + .section {
  margin-top: 0;
}

/* --- CARDS, BADGES, HIGHLIGHTS --- */
.project-features,
.award-highlights ul,
.event-schedule,
.event-summary-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.project-features li,
.award-highlights ul li,
.event-schedule li,
.event-summary-list li,
section ul li {
  background: #f4f4f6;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(37,65,107,0.02);
  padding: 22px 20px 20px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.project-features li h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge {
  display: inline-block;
  font-size: 0.79rem;
  padding: 3px 10px;
  border-radius: 16px;
  font-weight: 500;
  margin-left: 12px;
}
.badge-active {
  background: #e9b765;
  color: #25416b;
}
.badge-completed {
  background: #25416b;
  color: #fff;
}
.badge-ongoing {
  background: #feeedd;
  color: #7d6c42;
}


/* --- BUTTONS --- */
.cta-btn {
  display: inline-block;
  background: #25416b;
  color: #fff;
  font-family: 'IBM Plex Sans', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 32px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(37,65,107,0.10);
  transition: background .18s, color .18s, box-shadow .2s;
  border: 2px solid #25416b;
  text-align: center;
}
.cta-btn:focus, .cta-btn:hover {
  background: #e9b765;
  color: #25416b;
  border-color: #e9b765;
  box-shadow: 0 4px 14px 0 rgba(233,183,101,.18);
}

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Sans', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #25416b;
  color: #fff;
  padding: 10px 24px;
  transition: background .18s, color .18s, border-color .18s;
}
button:focus, .btn:focus, button:hover, .btn:hover {
  background: #e9b765;
  color: #25416b;
  border-color: #e9b765;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(37,65,107,0.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  justify-content: center;
  z-index: 200;
  padding: 28px 20px;
  transition: transform 0.4s cubic-bezier(.54,.04,.55,1.16);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.cookie-banner.hide {
  transform: translateY(102%);
}
.cookie-banner-message {
  flex: 1 1 360px;
  color: #25416b;
  font-size: 1.02rem;
  padding-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn {
  background: #e9b765;
  color: #25416b;
  border-color: #e9b765;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
}
.cookie-banner .btn:focus, .cookie-banner .btn:hover {
  background: #25416b;
  color: #fff;
  border-color: #25416b;
}
.cookie-banner .btn.settings {
  background: #fff;
  color: #25416b;
  border: 2px solid #25416b;
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: #25416b;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,65,107,0.44);
  z-index: 250;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .4s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 28px rgba(37,65,107,0.14);
  max-width: 420px;
  width: 88vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: fadeInModal .33s cubic-bezier(.54,.04,.55,1.16);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.98) translateY(26px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #25416b;
  cursor: pointer;
}
.cookie-modal-content h3 {
  color: #25416b;
  font-size: 1.11rem;
  margin-bottom: 8px;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #f4f4f6;
  border-radius: 10px;
  padding: 8px 16px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #e9b765;
}
.cookie-category label {
  color: #25416b;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
}
.cookie-category .essential {
  color: #6b7b92;
  font-size: 0.92rem;
  margin-left: 6px;
}
.cookie-save-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  padding: 38px 0 8px 0;
  box-shadow: 0 -2px 10px rgba(37,65,107,0.04);
  border-radius: 36px 36px 0 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
footer ul {
  display: flex;
  gap: 16px;
  margin: 8px 0;
  flex-wrap: wrap;
}
footer ul li a {
  color: #6b7b92;
  font-size: 1.01rem;
  transition: color .15s;
}
footer ul li a:hover, footer ul li a:focus {
  color: #e9b765;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #25416b;
  font-size: 0.98rem;
}
.footer-legal {
  color: #6b7b92;
  font-size: 0.92rem;
  margin-top: 14px;
  text-align: center;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  nav ul {
    gap: 12px;
  }
  .card {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  nav ul,
  nav a.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero,
  .section {
    border-radius: 0;
    padding: 28px 0 24px 0;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .project-features,
  .event-schedule,
  .event-summary-list,
  .award-highlights ul {
    gap: 12px;
  }
  .card-container {
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding: 22px 12px;
  }
  footer .container, footer .content-wrapper {
    gap: 10px;
  }
}
@media (max-width: 485px) {
  .hero h1 {
    font-size: 1.1rem;
  }
  h1, .hero h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  nav {
    gap: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, .hero {
    padding: 18px 0 16px 0;
    margin-bottom: 18px;
  }
  .card, .testimonial-card {
    padding: 13px 7px 10px 7px;
    min-width: 130px;
    border-radius: 12px;
  }
  .cookie-modal-content {
    padding: 20px 8px 16px 8px;
    border-radius: 10px;
  }
}

/* --- VISUAL HIERARCHY, SHADOWS & EFFECTS --- */
.section, .card, .testimonial-card, .project-features li, .event-schedule li, .award-highlights ul li {
  box-shadow: 0 2px 16px 0 rgba(37,65,107,0.05);
}
img, svg {
  border-radius: 8px;
}

/* --- MICRO-INTERACTIONS & FOCUS --- */
.cta-btn, .btn, nav ul li a, .mobile-nav a, button, .cookie-banner .btn {
  outline: none;
}
.cta-btn:focus-visible, .btn:focus-visible, nav ul li a:focus-visible, .mobile-nav a:focus-visible, button:focus-visible, .cookie-banner .btn:focus-visible {
  box-shadow: 0 0 0 3px #e9b76555;
}

/* --- CUSTOM UTILITIES --- */
.text-section p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.text-section a {
  word-break: break-all;
}
.text-section img {
  width: 22px;
  height: 22px;
}

.award-highlights {
  background: #f4f4f6;
  border-radius: 12px;
  padding: 18px 12px 12px 12px;
  margin-top: 18px;
}
.award-highlights h4 {
  margin-bottom: 8px;
  color: #25416b;
}
.innovation-snippets {
  margin-top: 24px;
  background: #e9b76511;
  border-radius: 10px;
  padding: 14px 18px 12px 14px;
}

/* --- COLOR & CONTRAST for TESTIMONIALS --- */
.testimonial-card,
blockquote, cite {
  color: #25416b;
  background: #f4f4f6;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #e9b765;
  margin-bottom: 0;
  padding: 0;
}

/* --- COLOR UTILITIES --- */
.bg-primary { background: #25416b; color: #fff !important; }
.bg-secondary { background: #e9b765; color: #25416b !important; }
.bg-accent { background: #f4f4f6; color: #25416b; }
.text-accent { color: #e9b765; }
.text-secondary { color: #6b7b92; }
.text-primary { color: #25416b; }

/* --- MISC --- */
::-webkit-scrollbar {
  width: 8px; background: #f4f4f6;
}
::-webkit-scrollbar-thumb {
  background: #e9b76588; border-radius: 5px;
}

/* --- END OF STYLE.CSS --- */
