
/*--------------------------------------------------------------
# 19. UTILITY CLASSES
--------------------------------------------------------------*/
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*--------------------------------------------------------------
# 20. RESPONSIVE DESIGN
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .section, section {
    scroll-margin-top: 100px;
  }
  
  .contact-card {
    gap: 20px;
    padding: 18px 25px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .logo-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .contact-card {
    justify-content: center;
  }
  
  .logo-text h1 {
    font-size: 1.8rem;
  }
  
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
  
  .contact-buttons {
    justify-content: flex-start;
    margin-top: 15px;
  }
  

}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

    .contact-info {
    display: none !important;
  }
  
  .navbar-content {
    justify-content: flex-end !important;
    gap: 15px;
  }
  
  .mobile-nav-wrapper {
    order: 1;
    display: block !important;
  }
  
  .navbar-actions {
    order: 2;
    margin-left: 15px;
  }
  
  .logo-section {
    padding: 20px 0;
  }
  
  .logo-image img {
    width: 70px;
    height: 70px;
  }
  
  .logo-text h1 {
    font-size: 1.5rem;
  }
  
  .logo-text p {
    font-size: 1rem;
  }
  
  .contact-card {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
  
  .language-selector .nav-link {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .hero {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero .btn {
    text-align: center;
    justify-content: center;
  }
  
  .hero .carousel-control {
    width: 50px;
    height: 50px;
  }
  
  .hero .carousel-control-prev {
    left: 1rem;
  }
  
  .hero .carousel-control-next {
    right: 1rem;
  }
  
  .featured-services {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-content {
    padding: 30px 20px;
  }
  
  .icon {
    width: 70px;
    height: 70px;
  }
  
  .icon i {
    font-size: 1.7rem;
  }
  
  .service-item h4 {
    font-size: 1.2rem;
  }
  
  .contact .php-email-form {
    padding: 20px;
  }

  
  .contact-bar-wrapper {
    padding: 20px;
  }
  
  .contact-title {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .contact-buttons {
    justify-content: center;
  }
  
  .contact-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
  
 
}

@media (max-width: 480px) {
  .logo-image img {
    width: 60px;
    height: 60px;
  }
  
  .logo-text h1 {
    font-size: 1.3rem;
  }
  
  .logo-text p {
    font-size: 0.9rem;
  }
  
  .contact-item {
    gap: 10px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .mobile-nav-content {
    width: 100%;
  }
  
  .hero {
    height: 65vh;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-content {
    padding: 25px 15px;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .contact-btn {
    width: 100%;
  }
  

}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .enhanced-footer {
    background: var(--footer-primary-color) !important;
    color: white !important;
  }
}/*--------------------------------------------------------------
# Modern About Section
--------------------------------------------------------------*/
.modern-about {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(34, 179, 175, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.modern-about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(34, 179, 175, 0.05), transparent 60%);
  pointer-events: none;
}

.modern-about .title-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.1), rgba(34, 179, 175, 0.1));
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(17, 105, 103, 0.2);
}

.modern-about .title-badge i {
  color: #116967;
  font-size: 1.2rem;
}

.modern-about .title-badge span {
  color: #116967;
  font-weight: 600;
  font-size: 0.95rem;
}

.modern-about .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid #22b3af;
  border-radius: 30px;
  z-index: -1;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.05);
}

.modern-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #116967, #22b3af);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(17, 105, 103, 0.4);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-badge i {
  font-size: 2rem;
  color: #fff;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.mission-card {
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.05), rgba(34, 179, 175, 0.05));
  border-radius: 25px;
  padding: 35px;
  margin-bottom: 30px;
  border: 2px solid rgba(17, 105, 103, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #116967, #22b3af);
  transition: width 0.4s ease;
}

.mission-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(17, 105, 103, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(17, 105, 103, 0.3);
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #116967;
  margin-bottom: 15px;
}

.card-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.goals-section {
  background: white;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.goals-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(17, 105, 103, 0.1);
}

.goals-header i {
  font-size: 1.8rem;
  color: #22b3af;
}

.goals-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #116967;
  margin: 0;
}

.modern-goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-goals-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  padding: 15px;
  background: rgba(17, 105, 103, 0.03);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.modern-goals-list li:hover {
  background: rgba(17, 105, 103, 0.08);
  transform: translateX(-5px);
}

.goal-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goal-icon i {
  color: white;
  font-size: 0.9rem;
}

.modern-goals-list li span {
  color: #444;
  line-height: 1.6;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Modern Stats Section
--------------------------------------------------------------*/
.modern-stats {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #116967 0%, #22b3af 100%);
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.stat-card:hover::before {
  transform: translateX(100%);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.stat-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.stat-icon i {
  font-size: 2.5rem;
  color: white;
}

.stat-decoration {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  animation: rotateBorder 20s linear infinite;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin: 0;
}

.stat-line {
  width: 0;
  height: 3px;
  background: white;
  margin: 20px auto 0;
  transition: width 0.6s ease;
  border-radius: 2px;
}

.stat-card:hover .stat-line {
  width: 60%;
}

/*--------------------------------------------------------------
# Modern Tabs Section
--------------------------------------------------------------*/
.modern-tabs {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(17, 105, 103, 0.03) 100%);
}

.modern-nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-nav-item {
  position: relative;
}

.tab-nav-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 25px;
  background: white;
  border: 2px solid rgba(17, 105, 103, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: right;
}

.tab-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #116967, #22b3af);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tab-nav-link:hover::before,
.tab-nav-link.active::before {
  transform: scaleY(1);
}

.tab-nav-link:hover,
.tab-nav-link.active {
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.05), rgba(34, 179, 175, 0.05));
  border-color: #22b3af;
  transform: translateX(-10px);
  box-shadow: 0 10px 30px rgba(17, 105, 103, 0.15);
}

.tab-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.1), rgba(34, 179, 175, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tab-nav-link.active .tab-icon,
.tab-nav-link:hover .tab-icon {
  background: linear-gradient(135deg, #116967, #22b3af);
}

.tab-icon i {
  font-size: 1.5rem;
  color: #116967;
  transition: color 0.3s ease;
}

.tab-nav-link.active .tab-icon i,
.tab-nav-link:hover .tab-icon i {
  color: white;
}

.tab-content-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}

.tab-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.tab-nav-link.active .tab-title,
.tab-nav-link:hover .tab-title {
  color: #116967;
}

.tab-subtitle {
  font-size: 0.85rem;
  color: #999;
}

.modern-tab-content {
  padding: 0;
}

.tab-content-card {
  background: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(17, 105, 103, 0.1);
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-header {
  margin-bottom: 25px;
}

.tab-badge {
  display: inline-block;
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #116967;
  margin: 0;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.tab-text-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tab-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 105, 103, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(17, 105, 103, 0.1);
}

.feature-item i {
  color: #22b3af;
  font-size: 1rem;
}

.feature-item span {
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.tab-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.tab-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-image-wrapper:hover::before {
  opacity: 1;
}

.tab-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tab-image-wrapper:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Modern News Section
--------------------------------------------------------------*/
.modern-news-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.02) 0%, #ffffff 50%, rgba(34, 179, 175, 0.02) 100%);
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(17, 105, 103, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(17, 105, 103, 0.15);
  border-color: #22b3af;
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image-wrapper img {
  transform: scale(1.1);
}

.news-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(17, 105, 103, 0.4);
}

.news-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  margin-bottom: 15px;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 0.85rem;
}

.news-date i {
  color: #22b3af;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .news-title {
  color: #116967;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #116967;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  gap: 12px;
  color: #22b3af;
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(-3px);
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(17, 105, 103, 0.3);
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(17, 105, 103, 0.4);
  color: white;
}

.modern-btn i {
  transition: transform 0.3s ease;
}

.modern-btn:hover i {
  transform: translateX(-5px);
}

/*--------------------------------------------------------------
# Modern Gallery Section
--------------------------------------------------------------*/
.modern-gallery {
  padding: 100px 0;
  background: white;
}

.gallery-item-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item-modern img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.8), rgba(34, 179, 175, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-modern:hover img {
  transform: scale(1.15);
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item-modern:hover .gallery-overlay i {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Modern CTA Section
--------------------------------------------------------------*/
.modern-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #116967 0%, #22b3af 100%);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-icon-wrapper {
  margin-bottom: 30px;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-icon i {
  font-size: 3rem;
  color: white;
}

.modern-cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #116967;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #116967;
}

.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  color: white;
}

/*--------------------------------------------------------------
# Modern FAQ Section
--------------------------------------------------------------*/
.modern-faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(17, 105, 103, 0.02) 100%);
}

.modern-faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(17, 105, 103, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #22b3af;
  box-shadow: 0 15px 40px rgba(17, 105, 103, 0.12);
}

.faq-question-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-q-icon i {
  font-size: 1.3rem;
  color: white;
}

.faq-question-wrapper h3 {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question-wrapper h3,
.faq-item.faq-active .faq-question-wrapper h3 {
  color: #116967;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #116967;
  transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 70px 0 70px;
}

.faq-item.faq-active .faq-answer {
  max-height: 500px;
  padding: 20px 70px 0 70px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Responsive Design for New Sections
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .modern-about { padding: 70px 0; }
  .modern-stats { padding: 60px 0; }
  .modern-tabs { padding: 70px 0; }
  .modern-news-section { padding: 70px 0; }
  .modern-gallery { padding: 70px 0; }
  .modern-cta { padding: 70px 0; }
  .modern-faq { padding: 70px 0; }
  
  .stat-number { font-size: 3rem; }
  .modern-nav-tabs { gap: 10px; }
  .tab-nav-link { padding: 20px; }
  .tab-content-card { padding: 30px; }
  .modern-cta h3 { font-size: 2rem; }
  .modern-cta p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .about-image-wrapper { margin-bottom: 40px; }
  .floating-badge { bottom: 15px; right: 15px; padding: 15px 20px; }
  .badge-number { font-size: 1.5rem; }
  .stat-card { padding: 30px 20px; }
  .stat-number { font-size: 2.5rem; }
  .tab-nav-link { flex-direction: row; text-align: right; }
  .tab-title { font-size: 1rem; }
  .tab-content-card { padding: 25px; }
  .tab-header h3 { font-size: 1.6rem; }
  .news-image-wrapper { height: 200px; }
  .modern-cta h3 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; }
  .cta-primary-btn, .cta-secondary-btn { width: 100%; justify-content: center; }
  .faq-answer { padding: 0 20px; }
  .faq-item.faq-active .faq-answer { padding: 20px 20px 0; }
}

@media (max-width: 480px) {
  .mission-card, .goals-section { padding: 25px; }
  .card-icon { width: 60px; height: 60px; }
  .card-icon i { font-size: 1.5rem; }
  .stat-icon { width: 70px; height: 70px; }
  .stat-icon i { font-size: 2rem; }
  .tab-icon { width: 45px; height: 45px; }
  .tab-icon i { font-size: 1.2rem; }
  .gallery-item-modern img { height: 250px; }
  .cta-icon { width: 80px; height: 80px; }
  .cta-icon i { font-size: 2.5rem; }
  .faq-q-icon { width: 40px; height: 40px; }
  .faq-question-wrapper h3 { font-size: 1rem; }
}


/* ********************************** */

/*---------------------------------------------
 Modern Enhanced Footer Design
----------------------------------------------*/
.elegant-footer {
  background: linear-gradient(135deg, #116967 0%, #22b3af 100%);
  color: #f8fafa;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  margin-top: 100px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
  background-size: cover;
  opacity: 0.1;
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 0%, transparent 50%);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
}


/* Footer sections with proper column spans */
.footer-brand-section {
  grid-column: span 4;
  padding-right: 20px;
}

.footer-quick-links {
  grid-column: span 2;
}

.footer-services {
  grid-column: span 3;
}

.footer-contact {
  grid-column: span 3;
}

/* Enhanced Brand Section */

.footer-logo-container {
  position: relative;
  margin-bottom: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  
  
  justify-content: center;

}


.footer-logo img {
  width: 160px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.footer-logo:hover::after {
  opacity: 0.3;
}

.footer-logo:hover img {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.footer-brand-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  background: linear-gradient(45deg, #fff, #e0f7fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 250, 250, 0.9);
  margin-bottom: 30px;
  text-align: center;
}

/* Enhanced Social Media */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.footer-socials a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.footer-socials a:hover::before {
  left: 100%;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #1cc7b5, #22b3af);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 30px rgba(28, 199, 181, 0.4);
  border-color: transparent;
}

/* Enhanced Section Headers */

.footer-section-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right; 
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0; 
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1cc7b5, #22b3af);
  border-radius: 3px;
  transition: width 0.3s ease;
}


.footer-section-title:hover::after {
  width: 80px;
}

/* Enhanced Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
  position: relative;
}

.footer-links-list a {
  color: rgba(248, 250, 250, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.footer-links-list a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: #1cc7b5;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: #fff;
  padding-left: 25px;
  transform: translateX(5px);
}

.footer-links-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Contact Section */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.footer-contact-list li:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.footer-contact-icon {
  background: linear-gradient(135deg, #1cc7b5, #22b3af);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(28, 199, 181, 0.3);
}

.footer-contact-icon i {
  color: #fff;
  font-size: 1rem;
}

.footer-contact-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(248, 250, 250, 0.9);
}

/* Enhanced Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(248, 250, 250, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.footer-bottom-links a {
  color: rgba(248, 250, 250, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-bottom-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Scroll to Top Button */
.footer-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1cc7b5, #22b3af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(28, 199, 181, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.footer-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(28, 199, 181, 0.6);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-main > div {
  animation: fadeInUp 0.6s ease-out;
}

.footer-main > div:nth-child(2) { animation-delay: 0.1s; }
.footer-main > div:nth-child(3) { animation-delay: 0.2s; }
.footer-main > div:nth-child(4) { animation-delay: 0.3s; }

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
  
  .footer-brand-section {
    grid-column: span 6;
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .footer-quick-links {
    grid-column: span 3;
  }
  
  .footer-services {
    grid-column: span 3;
  }
  
  .footer-contact {
    grid-column: span 6;
    margin-top: 20px;
  }
  
  .footer-contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .elegant-footer {
    padding-top: 60px;
    margin-top: 50px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand-section,
  .footer-quick-links,
  .footer-services,
  .footer-contact {
    grid-column: span 1;
    padding-right: 0;
    margin-bottom: 0;
  }
  
  .footer-brand-section {
    margin-bottom: 20px;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact-list {
    grid-template-columns: 1fr;
  }
  
  .footer-contact-list li {
    justify-content: center;
    text-align: left;
  }
  
  .footer-section-title {
    text-align: center;
  }
  
  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-logo img {
    width: 120px;
  }
  
  .footer-socials a {
    width: 42px;
    height: 42px;
  }
  
  .footer-contact-list li {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-contact-icon {
    margin: 0 auto;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-container {
    padding: 0 10px;
  }
}