@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #00695c;
  --secondary: #00bfa5;
  --accent: #ff8f00;
  --dark: #004d40;
  --light: #f8f9fa;
  --light-gray: #f5f5f5;
  --gray: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header Styles */
#mainHeader {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--accent);
}

.header-scrolled {
  background: rgba(0, 51, 102, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--accent);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.logo-icon {
  font-size: 2.2rem;
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--secondary), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#mainNav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mainNav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.8rem;
}

.mainNav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.mainNav-links li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.mainNav-links li a:hover:after {
  width: 100%;
}

.mainNav-links li a:hover {
  color: var(--secondary);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.login-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  background-color: transparent;
  color: white;
  border: 2px solid var(--accent);
}

.login-btn:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #00ccff4d;
  border: 2px solid var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

@media (max-width: 1200px) {
  #mainHeader {
    padding: 1rem 1.5rem;
  }

  .mainNav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 992px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .mainNav-links li a {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  #mainNav.active {
    right: 0;
  }

  .mainNav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .mainNav-links li a {
    font-size: 1.1rem;
    text-align: center;
    padding: 0.5rem 0;
    display: block;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
    color: white;
    font-size: 1.8rem;
    z-index: 1002;
  }

  .mobile-menu-btn:hover {
    color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 576px) {
  #mainHeader {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 2rem;
  }

  #mainNav {
    width: 85%;
  }
}

@keyframes slideIn {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

@keyframes slideOut {
  from {
    right: 0;
  }
  to {
    right: -100%;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(#000000b3, #000000b3),
    url("images/anstel-articles-1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 143, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.hero-image {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 600px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1s ease forwards 1s;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 25s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 15%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.floating-element:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 10%;
  animation-delay: 6s;
  animation-duration: 22s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Home about Section */
.home-about-section {
  padding: 30px 0px 40px 0px;
  background-color: var(--light);
}

.home-about-section-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.home-about-image,
.home-about-text {
  flex: 1;
  min-width: 300px;
}

.home-about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-about-subtext {
  color: var(--secondary) !important;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
  animation: fadeInUp 0.6s ease;
}

.home-about-text h2 {
  font-size: 1.9rem;
  margin: 0;
  color: var(--dark);
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.home-about-text p {
  color: var(--gray);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.home-about-item-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.home-about-item {
  min-width: 250px;
  flex: 1;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

.home-about-item:hover {
  transform: translateY(-5px);
}

.home-about-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-top: 5px;
}

.home-about-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.home-about-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.home-about-text a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease 0.8s forwards;
  opacity: 0;
}

.home-about-text a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 191, 165, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .home-about-section-container {
    gap: 30px;
  }

  .home-about-text h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .home-about-section {
    padding: 20px 0 30px;
  }

  .home-about-section-container {
    flex-direction: column;
    gap: 20px;
  }

  .home-about-image,
  .home-about-text {
    flex: auto;
    width: 100%;
  }

  .home-about-text h2 {
    font-size: 1.6rem;
  }

  .home-about-item {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .home-about-text h2 {
    font-size: 1.4rem;
  }

  .home-about-item-container {
    flex-direction: column;
    gap: 15px;
  }

  .home-about-item {
    min-width: 100%;
  }

  .home-about-text a {
    padding: 10px 25px;
    width: 100%;
    text-align: center;
  }
}

/* Facts Section */
.facts {
  padding: 40px 0;
  background-color: var(--light);
}

.facts-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.facts-content h5 {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.facts-content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.facts-content p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.2;
}

.call {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call i {
  padding: 10px;
  background-color: var(--accent);
  color: white;
  font-size: 30px;
}

.call p {
  font-size: 13px;
  margin-bottom: 5px;
}

.call h4 {
  font-size: 20px;
  color: var(--accent);
}

.facts-section-box {
  margin-bottom: 30px;
}

.fact-box {
  padding: 30px;
  text-align: center;
  color: white;
  width: 250px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-10px);
}

.fact-box i {
  font-size: 30px;
  margin-bottom: 5px !important;
}

.fact-box h2 {
  font-size: 20px;
  margin-bottom: 5px !important;
}

.fact-box p {
  font-size: 12px;
  margin-bottom: 5px !important;
}

.red {
  background-color: var(--primary);
}

.blue {
  background-color: var(--secondary);
}

.green {
  background-color: var(--accent);
}

/* Mission Section */
.mission {
  background-color: var(--light-gray);
  padding: 40px 0px 40px 0px;
}

.mission-section-title {
  margin-bottom: 30px;
}

.mission-section-title h2 {
  position: relative;
  padding-bottom: 5px;
  font-size: 2rem;
}

.mission-section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  border-radius: 20px;
  background-color: var(--accent);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: white;
  padding: 40px 30px;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary);
}

.mission-card p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .mission-grid {
    gap: 25px;
  }

  .mission-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .mission {
    padding: 50px 15px;
  }

  .mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .mission-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .mission {
    padding: 40px 10px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mission-card {
    padding: 30px 20px;
    border-left-width: 3px;
  }

  .mission-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .mission-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Stats Section */
.stats {
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/footer.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  position: relative;
}

.stats .container {
  z-index: 2;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  padding: 30px 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex: 1;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
  transition: color 0.3s ease;
}

.stat-item:hover h3 {
  color: var(--secondary);
}

.stat-item p {
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
}

@media (max-width: 992px) {
  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 40px 0;
  }

  .stat-item h3 {
    font-size: 32px;
  }

  .stat-item p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .stats {
    padding: 30px 0;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stat-item {
    flex: 0 0 100%;
    padding: 20px 10px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 16px;
  }

  .stat-item:hover {
    transform: translateY(-5px);
  }
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #f9fffe;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-img iframe {
  width: 100%;
  height: 100%;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contactsection-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  text-align: start !important;
}

.contact-info p {
  color: var(--gray);
  margin: 0;
  padding: 0;
}

.contact-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #004d4063;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--secondary);
}

.send-btn {
  padding: 0.75rem 2rem;
  background-color: var(--accent);
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.send-btn:hover {
  color: var(--light);
  background-color: var(--dark);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
  }

  .contact-img {
    flex: 1;
    height: auto;
    min-height: 400px;
  }

  .contact-grid {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(#00c6a57a, #004d406f),
    url("images/anstel-articles-1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
}

.cta-buttons a {
  text-decoration: none;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.cta-btn {
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 143, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cta {
    padding: 50px 15px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
  }
}

/* Footer Styles */
footer {
  position: relative;
  background-color: var(--dark);
  color: var(--light);
  padding-top: 60px;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--secondary), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links-container {
  flex: 1 1 300px;
  display: flex;
  gap: 30px;
}

.footer-links-container > div {
  flex: 1;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: var(--secondary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
  min-width: 20px;
  text-align: center;
}

.footer-bottom {
  background-color: var(--primary);
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-bus {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--secondary);
  animation: floatBus 8s ease-in-out infinite;
}

@keyframes floatBus {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-20px) translateY(-10px);
  }
  50% {
    transform: translateX(-40px) translateY(0);
  }
  75% {
    transform: translateX(-20px) translateY(10px);
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: span 2;
  }

  .floating-bus {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: span 1;
  }
}
