/* Shared styles for inner pages (About, Services, Contact, News & Media) */
:root {
  --bg: #013a55;
  --text: #333;
  --muted: #666;
}

/* Fade Transition Overlay - page-to-page navigation */
html.transition-overlay-visible,
body.transition-overlay-visible {
  overflow: hidden !important;
}
.fade-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0A2647;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
}
.fade-transition-overlay.active {
  display: flex;
  animation: fadeInOverlay 0.4s ease-in-out forwards;
}
.fade-transition-overlay.active.enter {
  animation: fadeOutOverlay 0.8s ease-in-out forwards;
}
.fade-transition-overlay__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%) translateZ(0);
  width: auto;
  height: 120px;
  max-width: 80%;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  flex-shrink: 0;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutOverlay {
  from { opacity: 1; }
  to { opacity: 0; }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto; /* Lenis handles smooth scroll — native smooth causes double-scroll jank on hosted servers */
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f5f5f5;
}

/* Scroll progress bar - bottom line that fills as you scroll */
.scroll-progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(1, 58, 85, 0.15);
  z-index: 9998;
  overflow: hidden;
}
.scroll-progress-bar__fill {
  height: 100%;
  width: 0%;
  background: var(--bg);
  transition: width 0.1s linear;
}

/* Nav - always white on inner pages */
.page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(1, 58, 85, 0.12);
  z-index: 100;
  transition: all 0.3s ease;
}
.page-nav__logo {
  height: 85px;
  width: auto;
  display: block;
}
.page-nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.page-nav__links a {
  color: var(--bg);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.page-nav__links a:hover { opacity: 0.8; }

/* Split-line underline (same as homepage) */
.page-nav__links a::after,
.page-nav__links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}
.page-nav__links a::after {
  left: 50%;
  width: 50%;
  transform-origin: left;
  transform: scaleX(0);
}
.page-nav__links a::before {
  right: 50%;
  width: 50%;
  transform-origin: right;
  transform: scaleX(0);
}
.page-nav__links a:hover::after,
.page-nav__links a:hover::before {
  transform: scaleX(1);
}
.page-nav__links a.is-active {
  font-weight: 600;
}
.page-nav__links a.is-active::after,
.page-nav__links a.is-active::before {
  transform: scaleX(1);
}
.page-nav__cta {
  background: var(--bg);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-nav__cta:hover { 
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 58, 85, 0.4);
}

/* Main content */
.page-main {
  padding-top: 95px;
  min-height: 100vh;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, #014a6b 50%, var(--bg) 100%);
  color: #fff;
  padding: 80px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.content-section {
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(1, 58, 85, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-section:hover {
  box-shadow: 0 8px 40px rgba(1, 58, 85, 0.15);
  transform: translateY(-2px);
}
.content-section h2 {
  color: var(--bg);
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 12px;
}
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bg), rgba(1, 74, 107, 0.4));
  border-radius: 2px;
}
.content-section p {
  line-height: 1.7;
  color: #555;
  margin: 0 0 16px 0;
}
.placeholder-img {
  width: 100%;
  max-width: 600px;
  height: 320px;
  background: linear-gradient(135deg, #e8eef3 0%, #d4dde6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  margin: 24px 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.08);
  border: 1px solid rgba(1, 58, 85, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.placeholder-img:hover {
  box-shadow: 0 8px 24px rgba(1, 58, 85, 0.15);
  transform: translateY(-2px);
}
.placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.placeholder-img:hover img {
  transform: scale(1.05);
}
.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.img-grid .placeholder-img { margin: 0; height: 220px; }

/* ── Hamburger Button ── */
.page-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.page-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.page-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.page-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.page-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Overlay ── */
.page-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(1, 30, 48, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.page-nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.page-nav__overlay-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
}
.page-nav__overlay.is-open .page-nav__overlay-links a {
  opacity: 1;
  transform: translateY(0);
}
.page-nav__overlay.is-open .page-nav__overlay-links a:nth-child(1) { transition-delay: 0.08s; }
.page-nav__overlay.is-open .page-nav__overlay-links a:nth-child(2) { transition-delay: 0.14s; }
.page-nav__overlay.is-open .page-nav__overlay-links a:nth-child(3) { transition-delay: 0.20s; }
.page-nav__overlay.is-open .page-nav__overlay-links a:nth-child(4) { transition-delay: 0.26s; }
.page-nav__overlay.is-open .page-nav__overlay-links a:nth-child(5) { transition-delay: 0.32s; }
.page-nav__overlay-links a:hover { color: rgba(255,255,255,0.75); }
.page-nav__overlay-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.40s, transform 0.3s ease 0.40s, background 0.2s;
}
.page-nav__overlay.is-open .page-nav__overlay-cta {
  opacity: 1;
  transform: translateY(0);
}
.page-nav__overlay-cta:hover { background: rgba(255,255,255,0.88); }
.page-nav__overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

@media (max-width: 767px) {
  .page-nav { padding: 0 16px; height: 64px; min-height: 64px; flex-wrap: nowrap; }
  .page-nav__logo { height: 44px; }
  .page-nav__right { display: none !important; }
  .page-nav__hamburger { display: flex; }
  .container, .page-hero { padding-left: 16px; padding-right: 16px; }
  .content-section { padding: 24px 16px; }
}

/* ── Service Page: CTA buttons below hero image ── */
.service-image-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.service-image-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.service-image-cta__btn--primary {
  background: var(--bg);
  color: #ffffff;
  border: 2px solid var(--bg);
  box-shadow: 0 4px 16px rgba(1,58,85,0.2);
}
.service-image-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,58,85,0.35);
}
.service-image-cta__btn--outline {
  background: #ffffff;
  color: var(--bg);
  border: 2px solid var(--bg);
}
.service-image-cta__btn--outline:hover {
  background: var(--bg);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ISO Certificate Styles */
.certificate-container {
  text-align: center;
  margin: 32px 0;
}

.certificate-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(1, 58, 85, 0.15), 0 0 0 1px rgba(1, 58, 85, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-image:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(1, 58, 85, 0.25), 0 0 0 2px rgba(1, 58, 85, 0.1);
}

.certificate-details {
  background: #f8f9fa;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.certificate-details h3 {
  color: var(--bg);
  margin-bottom: 16px;
  font-size: 1.2em;
}

.certificate-details ul {
  list-style: none;
  padding: 0;
}

.certificate-details li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
}

.certificate-details li:last-child {
  border-bottom: none;
}

.certificate-details strong {
  color: var(--bg);
  min-width: 140px;
  display: inline-block;
}

/* Contact Information Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.contact-item[data-email] {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(1, 58, 85, 0.08);
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.06);
}

.contact-item:not([data-email]) {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(1, 58, 85, 0.08);
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.06);
}

.contact-item[data-email]::after {
  content: '✉';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-item[data-email]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(1, 58, 85, 0.15);
  border-color: rgba(1, 58, 85, 0.15);
}

.contact-item h3 {
  color: var(--bg);
  margin-bottom: 12px;
  font-size: 1.1em;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--bg);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0a2647;
  text-decoration: underline;
}

/* Team Grid Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.team-member {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(1, 58, 85, 0.08);
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.06);
}

.team-member::after {
  content: '✉';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-member:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.team-member:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(1, 58, 85, 0.15);
  border-color: rgba(1, 58, 85, 0.15);
}

.member-photo {
  width: 200px;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.12);
  border: 2px solid rgba(1, 58, 85, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-photo {
  box-shadow: 0 8px 24px rgba(1, 58, 85, 0.2);
  border-color: rgba(1, 58, 85, 0.15);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  flex: 1;
  width: 100%;
}

.member-info h3 {
  color: var(--bg);
  margin-bottom: 4px;
  font-size: 1.2em;
  font-weight: 600;
}

.position {
  color: #666;
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

.contact-details {
  margin: 0;
  line-height: 1.6;
  font-size: 0.9em;
}

.contact-details strong {
  color: #333;
  font-weight: 600;
}

.contact-details a {
  color: var(--bg);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0a2647;
  text-decoration: underline;
}

.contact-details small {
  color: #28a745;
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

/* Page Hero Title Bar with Wave - Used on all inner pages */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg) 0%, #014a6b 100%);
  padding: 50px 48px 70px 48px;
  margin-bottom: 48px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(1, 58, 85, 0.15);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.services-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.services-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 40px 24px 50px 24px;
    margin-bottom: 32px;
  }
  
  .services-hero-wave {
    height: 60px;
  }
}

/* News & Media Page Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(1, 58, 85, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(1, 58, 85, 0.05);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 58, 85, 0.15);
}

.news-card-image-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
.news-card-image-link:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card-content {
  padding: 24px;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.news-date, .news-category {
  font-weight: 500;
}

.news-category {
  color: var(--bg);
}

.news-card h3 {
  font-size: 22px;
  color: var(--bg);
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.4;
}

.news-card p {
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.news-read-more {
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.news-read-more:hover {
  gap: 8px;
}

/* Media Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(1, 58, 85, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 58, 85, 0.95), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  color: #fff;
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

/* Press Contact Section */
.press-contact-section {
  background: linear-gradient(135deg, var(--bg) 0%, #014a6b 100%);
  border-radius: 16px;
  padding: 64px 48px;
  color: #fff;
}

.press-contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.press-contact-info h2 {
  color: #fff;
  margin-bottom: 16px;
}

.press-contact-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
}

.press-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.press-detail svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
}

.press-detail strong {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.press-detail a,
.press-detail span {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.press-detail a:hover {
  text-decoration: underline;
}

.press-contact-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.press-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #fff;
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.press-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.press-cta-button svg {
  transition: transform 0.3s ease;
}

.press-cta-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .certificate-image {
    max-height: 400px;
  }
  
  .certificate-details {
    padding: 20px;
    margin: 24px 0;
  }
  
  .certificate-details li {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .certificate-details strong {
    min-width: auto;
    margin-bottom: 4px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
  }
  
  .contact-item {
    padding: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
  }
  
  .team-member {
    padding: 20px;
  }
  
  .member-photo {
    width: 160px;
    height: 160px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-gallery {
    grid-template-columns: 1fr;
  }

  .press-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .press-contact-cta {
    justify-content: center;
  }

  .press-cta-button {
    width: 100%;
    justify-content: center;
  }
}
