/* ============================================================
   RCK Clone — Main Stylesheet
   Brand color: #3552a7 | Font: Open Sans
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #666;
  background: #fff;
  line-height: 1.7em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: #3552a7; text-decoration: none; }
a:hover { opacity: .8; }

h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.2em;
  padding-bottom: 10px;
}
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { padding-bottom: 1em; }
p:last-child { padding-bottom: 0; }

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

/* --- Container --- */
.container {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   TOP HEADER BAR
   ============================================================ */
#top-header {
  background-color: #3552a7;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  z-index: 100000;
  position: fixed;
  top: 0; left: 0; right: 0;
}
#top-header .container {
  padding: .75em 0;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#top-header a { color: #fff; }
#top-header a:hover { opacity: .7; }

/* Language switcher in top bar */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.lang-switcher img { width: 18px; height: 12px; display: inline-block; }
.lang-switcher span { color: #fff; }
.lang-switcher .lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-switcher .lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #cdcdcd;
  min-width: 140px;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-switcher .lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: #444;
  font-size: 12px;
}
.lang-switcher .lang-dropdown a:hover { background: #eee; color: #000; }

/* ============================================================
   MAIN HEADER / NAV
   ============================================================ */
#main-header {
  background: rgba(255,255,255,0.95);
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 99999;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  transition: background .4s, box-shadow .4s;
}
#main-header .container {
  display: flex;
  align-items: stretch;
  min-height: 82px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  padding: 12px 0;
  flex-shrink: 0;
}
.logo-container a { display: flex; align-items: center; }
.logo-container img {
  height: 44px;
  width: auto;
  transition: all .4s ease-in-out;
}

/* Navigation */
#top-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
#top-nav ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0; padding: 0;
}
#top-nav ul li {
  display: flex;
  align-items: stretch;
  position: relative;
}
#top-nav ul li a {
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,.6);
  text-decoration: none;
  transition: color .3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
#top-nav ul li a:hover,
#top-nav ul li.active a {
  color: #2b4764;
  border-bottom-color: #3552a7;
  opacity: 1;
}
#top-nav ul li a:hover { opacity: .7; }
#top-nav ul li.active a { opacity: 1; }

/* Search icon area */
.nav-extras {
  display: flex;
  align-items: center;
  padding-left: 22px;
}
.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: rgba(0,0,0,.6);
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-icon svg { width: 18px; height: 18px; }
.search-icon:hover { color: #3552a7; }

/* Mobile hamburger */
#mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin-left: 10px;
}
#mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #3552a7;
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid #3552a7;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  z-index: 99998;
  padding: 20px 5%;
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 14px;
  font-weight: 600;
  color: #565656;
}
#mobile-menu ul li a:hover,
#mobile-menu ul li.active a { color: #3552a7; }

/* Page container offset for fixed header */
#page-container { padding-top: 112px; }

/* ============================================================
   HERO / FULLWIDTH SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-bg.jpg') center top / cover no-repeat;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
}
.hero-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff !important;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  padding-bottom: 0;
  line-height: 1.2;
}

/* ============================================================
   QUICK LINKS SECTION (4 icon boxes)
   ============================================================ */
.quick-links-section {
  background: #fff;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  padding: 0 0 60px;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: #fff;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-radius: 4px;
}
.quick-link-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.quick-link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #424a55;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
  text-decoration: none;
}
.quick-link-icon:hover {
  background: #3552a7;
  transform: translateY(-3px);
  opacity: 1;
}
.quick-link-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}
.quick-link-item h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  padding-bottom: 0;
  letter-spacing: .5px;
}
.quick-link-item h4 a {
  color: #333;
  text-decoration: none;
}
.quick-link-item h4 a:hover { color: #3552a7; opacity: 1; }

/* ============================================================
   PAGE HEADER BANNER (inner pages)
   ============================================================ */
.page-header-banner {
  position: relative;
  min-height: 240px;
  background: url('images/hero-bg.jpg') center top / cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 0;
  width: 100%;
  border-bottom: 2px solid #3552a7;
  background: rgba(255,255,255,0.92);
}
.page-header-content h1 {
  font-size: 45px;
  color: #4d515c !important;
  font-weight: 300;
  padding: 20px 0;
  margin: 0;
}

/* ============================================================
   MAIN CONTENT SECTIONS
   ============================================================ */
.main-section {
  padding: 60px 0;
  background: #fff;
}
.main-section.alt-bg {
  background: #f3f4f8;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.two-col-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}
.two-col-text p strong {
  font-weight: 700;
}
.two-col-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

/* Full-width text */
.full-text {
  max-width: 100%;
}
.full-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.full-text ul {
  list-style: square;
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.9;
}
.full-text ul li {
  padding: 4px 0;
  color: #666;
  font-size: 15px;
}
.full-text .cta-text {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-top: 30px;
  color: #3552a7;
}

/* ============================================================
   ABOUT PAGE — Mission / Values cards
   ============================================================ */
.mission-section {
  background: #f3f4f8;
  padding: 60px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-top: 3px solid #3552a7;
  transition: transform .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(53,82,167,.12);
}
.card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #3552a7;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.card p { font-size: 14px; color: #666; padding-bottom: 0; }

/* Team section */
.team-section { padding: 60px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.team-member {
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: box-shadow .3s;
}
.team-member:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3552a7;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.team-member h4 { font-size: 16px; font-weight: 700; padding-bottom: 4px; }
.team-member p { font-size: 13px; color: #888; padding-bottom: 0; }

/* Timeline */
.timeline-section { padding: 60px 0; background: #f3f4f8; }
.timeline { position: relative; padding-left: 30px; margin-top: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: #3552a7;
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 26px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3552a7;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #3552a7;
}
.timeline-item .year {
  font-size: 13px;
  font-weight: 700;
  color: #3552a7;
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 16px; font-weight: 700; padding-bottom: 4px; }
.timeline-item p { font-size: 14px; color: #666; padding-bottom: 0; }

/* Section headings */
.section-heading {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  padding-bottom: 16px;
  border-bottom: 2px solid #3552a7;
  margin-bottom: 30px;
  display: inline-block;
}

/* ============================================================
   ABOUT PAGE — Stats section
   ============================================================ */
.stats-section {
  background: #3552a7;
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Team bio text */
.team-role {
  font-size: 13px;
  font-weight: 700;
  color: #3552a7;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.team-bio {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  padding-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
.contact-details-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #3552a7;
}
.contact-blurb {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-blurb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #424a55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-blurb-icon svg { width: 18px; height: 18px; fill: #fff; }
.contact-blurb h4 {
  font-size: 15px;
  font-weight: 700;
  color: #3552a7;
  padding-bottom: 2px;
}
.contact-blurb p { font-size: 14px; color: #666; padding-bottom: 0; }
.contact-blurb a { color: #3552a7; }

/* Contact logo display */
.contact-logo-display {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.contact-logo-display img { max-width: 100%; height: auto; }

/* Map section */
.map-section {
  width: 100%;
  height: 420px;
  background: #e8ecf4;
  position: relative;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 0;
  background: #f3f4f8;
}
.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.contact-form-wrapper h2 {
  font-size: 26px;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
}
.contact-form-wrapper p.subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  padding-bottom: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #444;
  background: #fff;
  transition: border-color .3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #3552a7; }
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.btn-submit {
  display: inline-block;
  background: #3552a7;
  color: #fff;
  border: none;
  padding: 13px 36px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 3px;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-submit:hover {
  background: #2b4189;
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
#formStatus { margin-top: 12px; }
#formStatus p { padding-bottom: 0; font-size: 14px; }

/* Working hours */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #666;
}
.hours-table td:first-child {
  font-weight: 600;
  color: #444;
  width: 55%;
}

/* Department contacts section */
.dept-section {
  padding: 60px 0;
  background: #f3f4f8;
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.dept-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-top: 3px solid #3552a7;
  transition: transform .3s, box-shadow .3s;
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(53,82,167,.12);
}
.dept-icon {
  width: 54px;
  height: 54px;
  background: #3552a7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.dept-icon svg { width: 26px; height: 26px; fill: #fff; }
.dept-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  padding-bottom: 8px;
}
.dept-card p { font-size: 13px; color: #888; padding-bottom: 12px; }
.dept-email {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3552a7;
  word-break: break-all;
}
.dept-email:hover { text-decoration: underline; opacity: 1; }

/* How to Find Us section */
.find-us-section {
  padding: 60px 0;
  background: #fff;
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.find-us-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.transport-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8ecf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.transport-icon svg { width: 20px; height: 20px; fill: #3552a7; }
.transport-item strong { display: block; font-size: 14px; font-weight: 700; color: #333; margin-bottom: 3px; }
.transport-item p { font-size: 13px; color: #888; padding-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
  background: #ededed;
}
#footer-bottom {
  background: rgba(0,0,0,.32);
  padding: 15px 0 10px;
}
#footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#footer-info {
  color: #fff;
  font-size: 13px;
}
#footer-info a {
  color: #fff;
  font-weight: 700;
}
.et-social-icons {
  display: flex;
  gap: 16px;
}
.et-social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .3s;
}
.et-social-icon a:hover { background: #3552a7; opacity: 1; }
.et-social-icon a svg { width: 15px; height: 15px; fill: #fff; }
.footer-vibe-link {
  width: 100%;
  text-align: center;
  padding: 6px 0 4px;
}
.footer-vibe-link a {
  opacity: .5;
  font-weight: 300;
  color: #ccc;
  font-size: 12px;
  text-decoration: none;
}

/* ============================================================
   COMPETENCES PAGE — styled list
   ============================================================ */
.competences-section { padding: 60px 0; }
.competences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.competence-item {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-left: 4px solid #3552a7;
  padding: 20px 22px;
  border-radius: 0 4px 4px 0;
  transition: box-shadow .3s;
}
.competence-item:hover { box-shadow: 0 4px 16px rgba(53,82,167,.1); }
.competence-item h4 { font-size: 15px; font-weight: 700; color: #3552a7; padding-bottom: 6px; }
.competence-item p { font-size: 14px; color: #666; padding-bottom: 0; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { padding: 60px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e8ecf4;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(53,82,167,0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ecf4, #d0d8ef);
  color: #3552a7;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-section { padding: 60px 0; }
.projects-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}
.project-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: box-shadow .3s;
}
.project-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.project-number {
  width: 50px;
  height: 50px;
  background: #3552a7;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-card h4 { font-size: 17px; font-weight: 700; color: #3552a7; padding-bottom: 6px; }
.project-card p { font-size: 14px; color: #666; padding-bottom: 0; }
.project-tag {
  display: inline-block;
  background: #e8ecf4;
  color: #3552a7;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 8px;
}

/* ============================================================
   COOPERATION PAGE
   ============================================================ */
.cooperation-section { padding: 60px 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.partner-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow .3s, border-color .3s;
}
.partner-card:hover {
  box-shadow: 0 4px 16px rgba(53,82,167,.1);
  border-color: #3552a7;
}
.partner-icon {
  width: 56px;
  height: 56px;
  background: #3552a7;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-icon svg { width: 28px; height: 28px; fill: #fff; }
.partner-card h4 { font-size: 15px; font-weight: 700; color: #3552a7; padding-bottom: 6px; }
.partner-card p { font-size: 13px; color: #888; padding-bottom: 0; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .container { width: 90%; }
  #top-nav { display: none; }
  .nav-extras { display: none; }
  #mobile-toggle { display: flex; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .competences-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header-content h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .find-us-grid { grid-template-columns: 1fr; }
  .find-us-photo { order: -1; }
}

@media (max-width: 600px) {
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content h2 { font-size: 24px; }
  .contact-form-wrapper { padding: 24px 18px; }
  #footer-bottom .container { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 32px; }
  .dept-grid { grid-template-columns: 1fr; }
}
