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

:root {
  --primary: #2f7c50;
  --primary-dark: #2a6b46;
  --secondary: #6c757d;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, #2f7c50 0%, #2c5a3a 100%);
  --gradient-hover: linear-gradient(135deg, #2a6b46 0%, #275234 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Navbar Premium */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  height: 55px;
  transition: all 0.3s ease;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.05);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(13, 110, 253, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

/* Hero Section Premium */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  margin-top: 0;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  color: white;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
}

/* Stats Section Premium */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2f7c50 0%, #2c5a3a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 10s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Map Section Premium */
.map-section {
  padding: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(100%);
  transition: all 0.5s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(105%);
  transform: scale(1.02);
}

/* Footer Premium */
.footer {
  background: #0a0a0a;
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-widget h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-logo img {
  height: 150px;
  margin-bottom: 1.5rem;
  margin-top: -30px;
}

.footer-contact p {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    padding: 5rem 2rem 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .btn-hero {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}


/* Bootstrap 5 Navbar Overrides */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand .logo {
  height: 55px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.05);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-item.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: white;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.625rem 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(13, 110, 253, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-collapse {
    padding: 1rem 0;
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background: transparent;
  }
  
  .dropdown-item:hover {
    transform: none;
  }
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #2f7c50 0%, #2c5a3a 100%);
  padding: 4rem 0;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: white;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Sidebar Navigation */
.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0.75rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-link i {
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(13, 110, 253, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

.sidebar-link.active i {
  transform: translateX(3px);
}

/* Content Sections */
.content-section {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.lead-text {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(47, 124, 80, 0.1) 0%, rgba(44, 90, 58, 0.1) 100%);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-box i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  color: var(--dark);
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.mission-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2f7c50 0%, #2c5a3a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mission-icon i {
  font-size: 1.5rem;
  color: white;
}

.mission-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.mission-card p {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.5;
  margin: 0;
}

/* Document Cards */
.document-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.document-card:hover {
  box-shadow: var(--shadow-xl);
}

.document-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.document-icon {
  width: 48px;
  height: 48px;
  background: #dc3545;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-icon i {
  font-size: 1.5rem;
  color: white;
}

.document-info {
  flex: 1;
}

.document-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.document-meta {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.document-preview {
  padding: 1rem;
  background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
    margin-top: 60px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .document-header {
    flex-direction: column;
    text-align: center;
  }
  
  .document-info {
    text-align: center;
  }
  
  .sidebar-nav {
    position: relative !important;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .highlight-box {
    flex-direction: column;
  }
  
  .btn-download {
    width: 100%;
    justify-content: center;
  }
}

/* Director Message Page */
.director-message-card {
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.director-header {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(47, 124, 80, 0.05);
  border-radius: 24px;
  margin-bottom: 2rem;
}

.director-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.director-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2f7c50;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.director-image:hover {
  transform: scale(1.02);
}

.director-social {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background: #2f7c50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.director-image-wrapper:hover .social-link {
  opacity: 1;
  transform: translateY(0);
}

.social-link:hover {
  background: #1e5a3a;
  transform: scale(1.1);
}

.social-link i {
  font-size: 0.875rem;
}

.director-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.director-title {
  font-size: 1rem;
  color: #2f7c50;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.director-quote {
  background: rgba(47, 124, 80, 0.1);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.director-quote i {
  font-size: 2rem;
  color: #2f7c50;
  opacity: 0.5;
}

.director-quote p {
  margin: 0;
  font-style: italic;
  color: var(--dark);
  font-weight: 500;
}

/* Director Content */
.director-content {
  padding: 0;
}

.message-intro {
  margin-bottom: 2rem;
}

.message-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #4a5568;
}

.highlight-box,
.info-card {
  background: rgba(47, 124, 80, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.highlight-box:hover,
.info-card:hover {
  transform: translateX(10px);
  background: rgba(47, 124, 80, 0.08);
}

.highlight-box i,
.info-card i {
  font-size: 2rem;
  color: #2f7c50;
  flex-shrink: 0;
}

.highlight-box strong,
.info-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 1.125rem;
}

.highlight-box p,
.info-card p {
  margin: 0;
  line-height: 1.6;
}

.formation-continue {
  background: linear-gradient(135deg, #2f7c50 0%, #1e5a3a 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: justify;
}

.formation-continue h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.formation-continue h3 i {
  font-size: 2rem;
}

.formation-continue p {
  margin: 0;
  line-height: 1.8;
  opacity: 0.95;
  color: white;
}

/* Director Signature */
.director-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.signature-line {
  width: 60px;
  height: 3px;
  background: #2f7c50;
  margin-bottom: 1.5rem;
}

.signature-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-content i {
  font-size: 2rem;
  color: #2f7c50;
  opacity: 0.6;
}

.signature-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
  font-family: 'Georgia', serif;
}

.signature-note {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .director-header {
    flex-direction: column;
    text-align: center;
  }
  
  .director-image {
    width: 150px;
    height: 150px;
  }
  
  .director-image-wrapper {
    margin: 0 auto;
  }
  
  .director-social {
    right: 50%;
    transform: translateX(50%);
  }
  
  .director-name {
    font-size: 1.5rem;
  }
  
  .director-quote {
    text-align: left;
  }
  
  .highlight-box,
  .info-card {
    flex-direction: column;
  }
  
  .formation-continue h3 {
    font-size: 1.25rem;
  }
  
  .signature-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .director-header {
    padding: 1.5rem;
  }
  
  .formation-continue {
    padding: 1.5rem;
  }
}

/* Breadcrumb */
#breadcrumb {
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline-block;
  color: #6c757d;
}

.breadcrumb li a {
  color: #2f7c50;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb li a:hover {
  color: #1e5a3a;
  text-decoration: underline;
}

.breadcrumb .divider {
  margin: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb .active {
  color: #6c757d;
}

#subintro {
  margin-top: 76px;
  padding: 60px 0;
  background: linear-gradient(135deg, #2f7c50 0%, #1e5a3a 100%);
  color: white;
  text-align: center;
}

#subintro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}


/* Organigram Page */
.organigram-wrapper {
  margin: 40px 0;
  text-align: center;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
}

.organigram-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.organigram-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* Responsive */
@media (max-width: 768px) {
  #subintro {
    margin-top: 76px;
    padding: 40px 0;
  }
  
  #subintro h3 {
    font-size: 1.25rem;
  }
  
  .organigram-wrapper {
    margin: 20px 0;
  }
}

/* Institutes Cards */
#thumbnails {
  padding: 40px 0;
}

.institute-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.institute-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.institute-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.institute-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.institute-card:hover .institute-image img {
  transform: scale(1.05);
}

.institute-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.institute-code {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2f7c50;
  margin-bottom: 0.5rem;
}

.institute-name {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

.btn-institute {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #2f7c50;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-institute:hover {
  background: #1e5a3a;
  color: white;
  transform: translateX(5px);
}

.btn-institute i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.btn-institute:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  #thumbnails {
    padding: 20px 0;
  }
  
  .institute-image {
    height: 160px;
    padding: 1rem;
  }
  
  .institute-content {
    padding: 1rem;
  }
  
  .institute-code {
    font-size: 1.1rem;
  }
  
  .institute-name {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .btn-institute {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}


/* Institute Detail Page */
.institute-detail-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.institute-logo-wrapper {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.institute-detail-logo {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.institute-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.institute-detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.institute-detail-list li:last-child {
  border-bottom: none;
}

.institute-detail-list label {
  font-weight: 600;
  color: #2f7c50;
  margin: 0;
  flex-shrink: 0;
  width: 35%;
}

.institute-detail-list span,
.institute-detail-list a {
  color: #6c757d;
  text-align: right;
  word-break: break-word;
  flex: 1;
}

.institute-detail-list a {
  color: #2f7c50;
  text-decoration: none;
}

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

.institute-description {
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
}

.section-title-small {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2f7c50;
  display: inline-block;
}

/* Accordion Bootstrap 5 */
.accordion {
  margin-bottom: 1.5rem;
}

.accordion-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-btn i {
  font-size: 0.875rem;
  color: #2f7c50;
  transition: transform 0.3s ease;
}

.accordion-btn.active {
  background: #2f7c50;
  color: white;
}

.accordion-btn.active i {
  color: white;
}

.accordion-collapse {
  transition: all 0.3s ease;
}

.accordion-body {
  padding: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
}

.inscription-info {
  background: rgba(47, 124, 80, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid #2f7c50;
}

.inscription-info p {
  margin: 0;
  line-height: 1.8;
  color: #4a5568;
}

/* Responsive */
@media (max-width: 768px) {
  .institute-detail-list li {
    flex-direction: column;
  }
  
  .institute-detail-list label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  .institute-detail-list span,
  .institute-detail-list a {
    text-align: left;
  }
  
  .accordion-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .inscription-info {
    padding: 1rem;
  }
}



/* Inscription Page */
.inscription-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.inscription-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.inscription-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(47, 124, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inscription-icon i {
  font-size: 2rem;
  color: #2f7c50;
}

.inscription-text {
  flex: 1;
}

.inscription-text p {
  margin: 0;
  line-height: 1.8;
  color: #4a5568;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .inscription-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .inscription-icon {
    margin: 0 auto;
  }
  
  .inscription-text p {
    font-size: 1rem;
  }
}



/* Publications Page */
.month-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  margin-bottom: 1rem;
}

.btn-month {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #f8f9fa;
  color: #2f7c50;
  border: 1px solid #e9ecef;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-month:hover {
  background: #2f7c50;
  color: white;
  border-color: #2f7c50;
}

.current-month {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.publication-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.publication-image {
  position: relative;
  overflow: hidden;
}

.publication-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.publication-card:hover .publication-image img {
  transform: scale(1.05);
}

.publication-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  border-radius: 12px;
  padding: 0.5rem;
  text-align: center;
  min-width: 55px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.publication-date .day {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2f7c50;
  line-height: 1;
}

.publication-date .month {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
}

.publication-date .year {
  display: block;
  font-size: 0.6rem;
  color: #6c757d;
}

.publication-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.publication-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.publication-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.publication-title a:hover {
  color: #2f7c50;
}

.publication-excerpt {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #2f7c50;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
}

.btn-readmore:hover {
  gap: 0.75rem;
  border-bottom-color: #2f7c50;
}

.btn-readmore i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.btn-readmore:hover i {
  transform: translateX(3px);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  margin: 2rem 0;
}

.empty-state i {
  font-size: 4rem;
  color: #cbd5e0;
  margin-bottom: 1rem;
}

.empty-state h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
  .month-navigation {
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .btn-month {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .current-month {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .publication-image img {
    height: 180px;
  }
  
  .publication-title {
    font-size: 0.9rem;
  }
  
  .publication-excerpt {
    font-size: 0.8rem;
  }
}




/* Post Detail Page - Classes uniques */
.post-detail-wrapper {
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}

.post-detail-image {
  padding: 0 0 1.5rem 0;
}

.post-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 1rem 0;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.post-meta-item i {
  font-size: 1rem;
  color: #2f7c50;
}

.post-meta-item-right {
  margin-left: auto;
}

.post-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #2f7c50;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.post-btn-download:hover {
  background: #1e5a3a;
  color: white;
  transform: translateY(-2px);
}

.post-detail-content {
  padding: 1.5rem 0;
  line-height: 1.8;
  color: #4a5568;
  font-size: 1rem;
  background: transparent;
}

.post-detail-content p {
  margin-bottom: 1.25rem;
}

.post-detail-content h1,
.post-detail-content h2,
.post-detail-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.post-detail-document {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.post-doc-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-doc-title i {
  color: #dc3545;
  font-size: 1.25rem;
}

.post-pdf-viewer {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  background: #f8f9fa;
}

.post-doc-download {
  text-align: right;
}

.post-btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #dc3545;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.post-btn-download-pdf:hover {
  background: #c82333;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .post-detail-image {
    padding: 0;
  }
  
  .post-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .post-meta-item-right {
    margin-left: 0;
  }
  
  .post-detail-content {
    padding: 1rem 0;
    font-size: 0.95rem;
  }
  
  .post-detail-document {
    padding: 1rem 0;
  }
  
  .post-pdf-viewer {
    height: 400px;
  }
  
  .post-doc-download {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .post-pdf-viewer {
    height: 300px;
  }
}



/* Newsletter Page - Classes uniques */
.newsletter-section {
  padding: 2rem 0 3rem 0;
}

.newsletter-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.newsletter-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.newsletter-card:hover .newsletter-image img {
  transform: scale(1.05);
}

.newsletter-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex: 1;
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 1rem;
  background: #2f7c50;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #1e5a3a;
  color: white;
  transform: translateY(-2px);
}

.newsletter-btn i {
  font-size: 0.875rem;
}

.newsletter-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  margin: 2rem 0;
}

.newsletter-empty i {
  font-size: 4rem;
  color: #cbd5e0;
  margin-bottom: 1rem;
}

.newsletter-empty h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.newsletter-empty p {
  color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
  .newsletter-section {
    padding: 1.5rem 0 2rem 0;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 1rem 0 1.5rem 0;
  }
  
  .newsletter-image {
    height: 180px;
  }
  
  .newsletter-title {
    font-size: 0.9rem;
  }
  
  .newsletter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .newsletter-image {
    height: 160px;
  }
}




/* Contact Page - Classes uniques */
.contact-widget {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #2f7c50;
  display: inline-block;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  margin-bottom: 1.25rem;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info-list label i {
  color: #2f7c50;
  font-size: 1.125rem;
}

.contact-info-list p {
  margin: 0;
  color: #6c757d;
  line-height: 1.5;
  padding-left: 1.625rem;
}

.contact-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.contact-social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  color: #2f7c50;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-links li a:hover {
  background: #2f7c50;
  color: white;
  transform: translateY(-3px);
}

.contact-social-links li a i {
  font-size: 1.125rem;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-map iframe {
  width: 100%;
  height: 343px;
  border: 0;
}

.contact-spacer {
  height: 30px;
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.contact-form-control:focus {
  border-color: #2f7c50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 124, 80, 0.1);
}

textarea.contact-form-control {
  resize: vertical;
}

.contact-validation {
  display: none;
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #2f7c50;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #1e5a3a;
  transform: translateY(-2px);
}

.contact-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  animation: contactFadeIn 0.3s ease;
}

.contact-alert-success {
  background: #d4edda;
  border-left: 4px solid #28a745;
  color: #155724;
}

.contact-alert-error {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
  color: #721c24;
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-widget {
    padding: 1rem;
  }
  
  .contact-widget-title {
    font-size: 1rem;
  }
  
  .contact-info-list p {
    font-size: 0.875rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-submit-btn {
    width: 100%;
    padding: 0.625rem 1rem;
  }
  
  .contact-map iframe {
    height: 250px;
  }
}
/* Change the gradient to match with #2f7c50 */