.page-hero-title, .page-hero-subtitle {
  color: #fff !important;
  background: none !important;
}
.red-bg-white, .stat-label, .error-msg, .nav-brand, .navbar.scrolled .nav-brand, .nav-link.active, .navbar.scrolled .nav-link.active {
  /* background: var(--accent-red) !important; */
  color: var(--accent-red) !important;
  padding: 2px 8px;
  border-radius: 4px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #00247D;
  --accent-red: #CE1126;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-navy: #001F5B;
  --soft-black: #1E1E1E;
  --success: #28a745;
  --error: #dc3545;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--soft-black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark-navy);
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.btn {
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 86, 166, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-link {
  background: none;
  color: var(--primary-blue);
  padding: 0;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--accent-red);
}

nav.navbar {
  /* Solid white navbar */
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav.navbar.scrolled {
  /* Add white background on scroll */
  background-color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Navbar styling consistent across all pages */

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
}

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-red);
}

.navbar.scrolled .nav-brand {
  color: var(--accent-red);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--soft-black);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link.active {
  color: var(--accent-red);
}

.nav-link.active::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  /* keep links dark on white navbar */
  color: var(--soft-black);
}

.navbar.scrolled .nav-link.active {
  color: var(--accent-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-red);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--soft-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background-color: var(--soft-black);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.01);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  padding-bottom: 100px;
  margin-bottom: 0;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.95;
  display: none;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.about {
  padding: 80px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 86, 166, 0.15);
  transition: var(--transition);
}

.about-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.25);
}

.about-subtitle {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.timeline {
  margin-bottom: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-marker {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: fit-content;
}

.timeline-item p {
  color: #666;
  font-size: 0.95rem;
}

.mission-quote {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-red);
  padding: 20px;
  border-radius: 5px;
  font-style: italic;
  color: var(--dark-navy);
  font-size: 1.1rem;
}

.services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-blue);
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 36, 125, 0.15);
  border-left-color: var(--accent-red);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 36, 125, 0.2);
}

.service-card h3 {
  color: var(--dark-navy);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.service-card p {
  color: #555;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.vision-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.vision-section h3 {
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  display: block;
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--soft-black);
  font-weight: 600;
}

.agenda {
  padding: 80px 0;
  background-color: var(--white);
}

.agenda-grid {
  display: grid;
  /* Force single-column layout so each agenda card sits on its own row */
  grid-template-columns: 1fr;
  gap: 30px;
}

.agenda-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-red);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.agenda-card:hover {
  box-shadow: 0 10px 30px rgba(0, 36, 125, 0.15);
  transform: translateX(5px);
}

.agenda-number {
  display: inline-flex;
  background: var(--accent-red);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
}

.agenda-card h3 {
  color: var(--dark-navy);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.agenda-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.gallery {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1;
  background-color: #e0e0e0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 15px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent-gold);
}

.modal-content-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.news {
  padding: 80px 0;
  background-color: var(--white);
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--light-gray);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
  border-top: 4px solid var(--primary-blue);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 36, 125, 0.15);
}

.news-thumbnail {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--primary-blue);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0, 36, 125, 0.2);
}

.news-card h3 {
  color: var(--dark-navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.news-date {
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(0, 86, 166, 0.1);
}

.error-msg {
  display: block;
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 5px;
}

.success-msg {
  background-color: var(--success);
  color: var(--white);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.info-item p {
  color: #666;
  line-height: 1.8;
}

.info-item a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-blue);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor !important;
}

.social-link .social-name {
  margin-left: 0;
  display: inline-block;
  color: var(--white) !important;
  font-size: 0.95rem;
  white-space: nowrap;
}

.social-link:hover {
  background-color: var(--accent-red);
  color: var(--white);
}

.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 20px;
  border-top: 3px solid var(--accent-red);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  /* background: var(--accent-red); */
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
}

.footer-col h4 {
  /* background: var(--accent-red); */
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  display: inline-block;
}

.footer-col p {
  color: var(--white);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 20px;
  opacity: 1;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.footer-links a:hover::before {
  left: 5px;
  color: #ffffff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon {
  display: inline-block;
  padding: 8px 0;
  font-weight: 600;
  color: #666;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 568px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
  border: 3px solid var(--white);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.whatsapp-btn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    /* mobile menu matches the white + gold theme */
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-link {
    color: var(--soft-black);
  }

  .hamburger {
    display: flex;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    display: none;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .agenda-grid,
  .news-grid,
  .vision-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-section {
    padding: 30px;
  }

  .contact-form,
  .info-item {
    padding: 20px;
  }

  .modal-content-box {
    padding: 20px;
    margin: 20px;
    max-height: 90vh;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero-roles {
    gap: 8px;
  }

  .role-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .agenda-grid,
  .services-grid {
    gap: 20px;
  }

  .service-card,
  .agenda-card {
    padding: 20px;
  }

  .modal-close {
    font-size: 30px;
    top: 10px;
    right: 15px;
  }
}

/* Divider */
.gold-divider {
  width: 100px;
  height: 5px;
  background: var(--accent-red);
  margin: 0 auto 30px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(206, 17, 38, 0.3);
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background-color: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: var(--transition);
  display: block;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: var(--transition);
}

.intro-image:hover::after {
  opacity: 1;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.intro-content {
  text-align: left;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--soft-black);
  font-weight: 400;
}

/* Inquiry Section */
.inquiry-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

/* Inquiry content: form (left) + image (right) */
.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inquiry-form-wrap {
  width: 100%;
}

.inquiry-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-content {
    text-align: center;
  }

  .inquiry-content {
    padding: 30px 20px;
  }

  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive: stack form and image on smaller viewports */
@media (max-width: 992px) {
  .inquiry-content {
    grid-template-columns: 1fr 320px;
    padding: 30px;
  }
  .inquiry-image img {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .inquiry-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .inquiry-image {
    margin-top: 20px;
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--primary-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 3px solid var(--accent-red);
  margin-left: auto;
  margin-right: auto;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-red);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

/* Roles Section */
.roles-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.role-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 36, 125, 0.03);
  transition: var(--transition);
  z-index: 0;
}

.role-card:hover::before {
  width: 100%;
}

.role-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 36, 125, 0.15);
  border-top-color: var(--accent-red);
}

.role-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--accent-red);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--white);
}
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition), transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.role-card p {
  color: #555;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  background: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(206, 17, 38, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-large {
  padding: 16px 45px;
  font-size: 1.1rem;
  background-color: var(--accent-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(206, 17, 38, 0.3);
}

.btn-large:hover {
  background-color: var(--white);
  color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(206, 17, 38, 0.4);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .roles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Page Hero */
.page-hero {
  background: var(--primary-blue);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(206, 17, 38, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float linear infinite;
}

.particle-star {
  animation-name: floatStar;
}

.particle-check {
  animation-name: floatCheck;
}

.particle-leaf {
  animation-name: floatLeaf;
}

@keyframes floatStar {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-500px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatCheck {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-550px) translateX(-120px) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-480px) translateX(150px) rotate(360deg);
    opacity: 0;
  }
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 1.3rem;
  color: var(--accent-red);
  font-weight: 400;
}

/* About Bio Section */
.about-bio {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
  margin-top: 15px;
  text-align: center;
}

.image-caption p {
  color: #666;
  font-style: italic;
}

.about-subtitle {
  font-size: 2rem;
  color: var(--dark-navy);
  margin-bottom: 25px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* Journey Section */
.journey-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.journey-content {
  display: grid;
  gap: 50px;
  margin-top: 40px;
}

.journey-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-blue);
  transition: var(--transition);
}

.journey-item:nth-child(even) {
  grid-template-columns: 1fr 80px;
  border-left: none;
  border-right: 5px solid var(--primary-blue);
}

.journey-item:nth-child(even) .journey-icon {
  order: 2;
}

.journey-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 36, 125, 0.15);
  border-left-color: var(--accent-red);
}

.journey-item:nth-child(even):hover {
  border-right-color: var(--accent-red);
}

.journey-icon {
  font-size: 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(206, 17, 38, 0.3);
  color: var(--white);
}

.journey-item h3 {
  font-size: 1.8rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
}

.journey-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Timeline Section */
.timeline-section {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-red);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-year {
  order: 2;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-year {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.timeline-year::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-red);
  border: 4px solid var(--white);
  border-radius: 50%;
  top: 50%;
  box-shadow: 0 0 0 4px var(--primary-blue);
}

.timeline-item:nth-child(odd) .timeline-year::after {
  right: -50px;
}

.timeline-item:nth-child(even) .timeline-year::after {
  left: -50px;
}

.timeline-content {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 36, 125, 0.15);
}

.timeline-content h4 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  line-height: 1.7;
}

/* Quote Section */
.quote-section {
  padding: 100px 0;
  background: var(--primary-blue);
  text-align: center;
}

.large-quote {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.large-quote p {
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.large-quote p::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent-red);
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.3;
}

.large-quote cite {
  font-size: 1.3rem;
  color: var(--accent-red);
  font-style: normal;
  font-weight: 600;
}

/* Responsive for About Page */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-year,
  .timeline-item:nth-child(even) .timeline-content {
    order: initial;
    text-align: left;
  }

  .timeline-year::after {
    left: -50px !important;
    right: auto !important;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .large-quote p {
    font-size: 1.5rem;
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-card:nth-child(even) .service-icon,
.service-card:nth-child(even) h3,
.service-card:nth-child(even) p,
.service-card:nth-child(even) .service-list {
  order: 2;
}

.service-card-content {
  padding: 30px;
}

.service-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  color: #666;
  line-height: 2;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Vision 2035 */
.vision-2035 {
  padding: 100px 0;
  background: var(--light-gray);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.vision-item {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.vision-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 36, 125, 0.15);
}

.vision-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: var(--primary-blue);
  border-radius: 18px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 36, 125, 0.25);
}

.vision-item h3 {
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.vision-item p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: var(--accent-red);
  border-radius: 10px;
  transition: width 1.5s ease-in-out;
  width: 0;
}

.progress-label {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* Agenda Section */
.agenda {
  padding: 80px 0;
  background: var(--white);
}

.agenda-grid {
  display: grid;
  /* Force single-column layout so agenda cards stack vertically */
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.agenda-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.agenda-list li {
  color: #666;
  line-height: 2;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.agenda-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 86, 166, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 43, 92, 0.95), transparent);
  color: var(--white);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: #bdc2cf;
}

/* Contact Map */
.map-container {
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  /* Force a single row of contact details on wide screens */
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Responsive: stack contact cards on smaller viewports */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.1);
}

.contact-info-icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--accent-red);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(206, 17, 38, 0.25);
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #666;
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--accent-red);
}

@media (max-width: 968px) {
  .services-grid .service-card {
    grid-template-columns: 1fr;
  }

  .journey-item,
  .journey-item:nth-child(even) {
    grid-template-columns: 1fr;
    border-left: 5px solid var(--primary-blue);
    border-right: none;
  }

  .journey-item:nth-child(even) .journey-icon {
    order: 0;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .agenda-grid {
    gap: 30px;
  }

  .services-grid {
    gap: 30px;
  }

  .service-card {
    padding: 25px;
  }
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: var(--white);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.blog-grid {
  display: grid;
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}

.blog-card.featured {
  grid-template-columns: 1fr;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 86, 166, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card.featured .blog-image {
  aspect-ratio: 21/9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 30px;
}

.blog-date {
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h2,
.blog-card h3 {
  color: var(--dark-navy);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-card.featured h2 {
  font-size: 2rem;
}

.blog-card h3 {
  font-size: 1.4rem;
}

.blog-excerpt {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-card.featured .blog-excerpt {
  font-size: 1.05rem;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: var(--dark-navy);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-red);
}

.recent-posts {
  list-style: none;
}

.recent-posts li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.recent-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.recent-posts h4 {
  color: var(--dark-navy);
  font-size: 1rem;
  margin-bottom: 5px;
  transition: var(--transition);
}

.recent-posts a:hover h4 {
  color: var(--primary-blue);
}

.widget-date {
  font-size: 0.85rem;
  color: #999;
}

.categories {
  list-style: none;
}

.categories li {
  margin-bottom: 12px;
}

.categories a {
  text-decoration: none;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: var(--transition);
}

.categories a:hover {
  color: var(--primary-blue);
  padding-left: 10px;
}

.categories span {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-widget {
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
}

.cta-widget h3 {
  color: var(--white);
  border-bottom-color: var(--accent-red);
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .blog-card.featured h2 {
    font-size: 1.5rem;
  }

  .blog-card h3 {
    font-size: 1.2rem;
  }

  .blog-content {
    padding: 20px;
  }
}
