/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ========== REUSABLE COMPONENTS ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  display: inline-block;
}

.header-underline {
  width: 60px;
  height: 3px;
  background-color: #e67e22;
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

.section-subheadline {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #0a3d62;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e67e22;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #0a3d62;
  transition: 0.2s;
}

/* ========== DROPDOWN MENU ========== */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #e67e22;
  padding-left: 1.5rem;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tagline-icon i {
  font-size: 2.5rem;
  color: #e67e22;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero-content-centered h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content-centered p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-dots-horizontal {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255,255,255,0.9);
  transform: scale(1.2);
}

.hero-dot.active {
  width: 30px;
  border-radius: 10px;
  background-color: #e67e22;
}

/* ========== NEWS PAGE - FEATURED NEWS ========== */
.featured-news {
  padding: 5rem 0;
  background: #ffffff;
}

.featured-wrapper {
  display: flex;
  gap: 3rem;
  background: #f8fafc;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.featured-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #e67e22;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content {
  flex: 1;
  padding: 2.5rem;
}

.featured-content h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.featured-meta span {
  font-size: 0.8rem;
  color: #94a3b8;
}

.featured-meta i {
  margin-right: 0.3rem;
}

/* ========== NEWS PAGE - LATEST NEWS ========== */
.latest-news {
  padding: 5rem 0;
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e67e22;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.75rem;
  color: #e67e22;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 1.1rem;
  color: #0a3d62;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-meta span {
  font-size: 0.7rem;
  color: #94a3b8;
}

.news-meta i {
  margin-right: 0.25rem;
}

/* News Buttons */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e67e22;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.btn-news {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e67e22;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.btn-news:hover {
  gap: 0.75rem;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background-color: #e67e22;
  border-color: #e67e22;
  color: white;
}

.page-btn.next {
  gap: 0.5rem;
}

/* ========== MEDIA PAGE - TABS SECTION ========== */
.media-tabs-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.tabs-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eef2f6;
  background: #f8fafc;
}

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
}

.tab-btn:hover {
  color: #e67e22;
}

.tab-btn.active {
  color: #e67e22;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e67e22;
}

.tab-content {
  display: none;
  padding: 2.5rem;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Photo Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 61, 98, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.gallery-overlay i {
  font-size: 2rem;
}

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-card {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-overlay i {
  font-size: 3.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-thumbnail:hover .play-overlay {
  opacity: 1;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.video-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.video-duration {
  font-size: 0.75rem;
  color: #e67e22;
  font-weight: 600;
}

/* Press Releases */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.press-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eef2f6;
}

.press-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.press-date {
  text-align: center;
  min-width: 80px;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 12px;
}

.press-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e67e22;
  line-height: 1;
}

.press-date .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a3d62;
  text-transform: uppercase;
}

.press-date .year {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
}

.press-content {
  flex: 1;
}

.press-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.press-content p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e67e22;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.press-link:hover {
  gap: 0.75rem;
}

/* Downloads */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.download-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: #e67e22;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.download-card i {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.download-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.download-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.file-size {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e67e22;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

/* ========== SUSTAINABILITY PAGE - INTRO ========== */
.sustainability-intro {
  padding: 5rem 0;
  background: #ffffff;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2rem;
  color: #0a3d62;
  margin-bottom: 0.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

/* ========== SUSTAINABILITY PAGE - PILLARS ========== */
.pillars-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
  border-color: #e67e22;
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: #fef3e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pillar-icon i {
  font-size: 2rem;
  color: #e67e22;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}

.pillar-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========== SUSTAINABILITY PAGE - INITIATIVES ========== */
.initiatives-section {
  padding: 5rem 0;
  background: #ffffff;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.initiative-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.initiative-card:hover {
  transform: translateY(-5px);
  border-color: #e67e22;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.initiative-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.initiative-icon i {
  font-size: 1.5rem;
  color: #e67e22;
}

.initiative-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #0a3d62;
}

.initiative-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.initiative-impact {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f6;
  font-size: 0.8rem;
}

.impact-label {
  font-weight: 600;
  color: #e67e22;
}

.impact-value {
  color: #475569;
}

/* ========== SUSTAINABILITY PAGE - METRICS ========== */
.metrics-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 1rem;
}

.metric-progress {
  width: 100%;
  height: 6px;
  background: #eef2f6;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #d35400);
  border-radius: 3px;
}

/* ========== SUSTAINABILITY PAGE - CERTIFICATIONS ========== */
.certifications-section {
  padding: 5rem 0;
  background: #ffffff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cert-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: #e67e22;
}

.cert-card i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.cert-card p {
  font-size: 0.85rem;
  color: #64748b;
}

/* ========== SUSTAINABILITY PAGE - REPORT ========== */
.report-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.report-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.report-content i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.report-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0a3d62;
}

.report-content p {
  font-size: 0.95rem;
  color: #64748b;
}

.btn-report {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #e67e22;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-report:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter {
  padding: 4rem 0;
  background: #0f172a;
  color: white;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-content {
  text-align: left;
}

.newsletter-content i {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.newsletter-content p {
  color: rgba(255,255,255,0.8);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: none;
  width: 300px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter-form button:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-col p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e67e22;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .news-grid,
  .gallery-grid,
  .pillars-grid,
  .initiatives-grid,
  .certifications-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(70vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: left 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .nav-links.active { left: 0; }
  .hamburger { display: flex; }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }
  
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown.active .dropdown-trigger i { transform: rotate(180deg); }
  .dropdown-menu a { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .dropdown-menu a:hover { padding-left: 1.5rem; background: transparent; }
  
  .featured-wrapper {
    flex-direction: column;
  }
  
  .featured-image {
    min-height: 50px;
  }
  
  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-content {
    text-align: center;
  }
  
  .hero-content-centered h1 {
    font-size: 2rem;
  }
  
  .report-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .news-grid,
  .gallery-grid,
  .pillars-grid,
  .initiatives-grid,
  .certifications-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-header {
    flex-direction: column;
  }
  
  .tab-btn {
    text-align: left;
    padding: 0.75rem 1.5rem;
  }
  
  .tab-btn.active::after { display: none; }
  .tab-btn.active { background: #fef3e8; }
  
  .tab-content {
    padding: 1.5rem;
  }
  
  .press-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .press-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
    width: fit-content;
  }
  
  .press-date .day,
  .press-date .month,
  .press-date .year {
    display: inline;
  }
  
  .press-date .day { font-size: 1rem; }
  
  .featured-content h2 {
    font-size: 1.4rem;
  }
  
  .featured-meta {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content-centered h1 {
    font-size: 2.0rem;
  }
  
  .hero-dots-horizontal {
    bottom: 80px;
    gap: 10px;
  }
  
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-dot.active {
    width: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    font-size: 0.75rem;
  }
  
  .social-links {
    justify-content: left;
  }
  
  .contact-info li {
    justify-content: left;
    font-size: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
  
  .footer-bottom a {
    font-size: 0.75rem;
  }
}