.faq-toggle i {
  transition: transform 0.3s cubic-bezier(.77,0,.18,1), color 0.2s;
}
/* FAQ Section Styles */
.faq-section {
  max-width: 800px;
  margin: 0 auto 60px auto;
  background: linear-gradient(120deg, #f7fafd 60%, #eaf6fb 100%);
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 24px 0;
  position: relative;
  z-index: 2;
}
.faq-section h2 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #48cae4;
  margin-bottom: 24px;
  text-align: center;
}
.faq-list {
  margin-top: 12px;
}
.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid #e3e8f0;
  padding-bottom: 8px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.18rem;
  font-weight: 600;
  color: #1a3556;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px 0;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #1976d2;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #1976d2;
  margin-left: 12px;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.77,0,.18,1), padding 0.25s, opacity 0.25s;
  color: #3a4a5d;
  font-size: 1.05rem;
  padding: 0;
  opacity: 0;
  box-sizing: border-box;
  line-height: 1.6;
  word-wrap: break-word;
}
.faq-item.active .faq-answer,
.faq-item .faq-answer[style*="max-height"]:not([style*="max-height: 0px"]) {
  border-left: 3px solid #1976d2;
  background: #f7fafd;
  padding: 12px 0px 12px 18px;
  margin-top: 2px;
  border-radius: 0 0 8px 8px;
  opacity: 1;
  overflow: visible;
  /* Ensure content is fully visible */
  min-height: fit-content;
}
.figures-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f7fafd 60%, #eaf6fb 100%);
  padding: 60px 0 60px 0;
  margin: 40px 0;
  z-index: 1;
}
.figures-section h1 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #48cae4;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
  z-index: 2;
  position: relative;
}
.figures-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}
.figure-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44,83,100,0.10);
  padding: 36px 28px 28px 28px;
  text-align: center;
  min-width: 220px;
  max-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
}
.figure-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,83,100,0.16);
  
}

.figure-card:hover .figure-icon {
  transform: rotate(-360deg);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  color: #ffd700;
}

.figure-icon {
  font-size: 2.6rem;
  color: #1f2937;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.figure-value {
  display: block;
  font-size: 2.7rem;
  font-weight: 800;
  color: #48cae4;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.figure-label {
  font-size: 1.13rem;
  color: #1a3556;
  font-weight: 500;
}
@media (max-width: 900px) {
  .orb-left, .orb-right {
    width: 180px;
    height: 180px;
    left: -60px;
    right: -60px;
    top: 40px;
  }
  .figures-row {
    gap: 18px;
  }
  .figure-card {
    min-width: 140px;
    max-width: 90vw;
    padding: 24px 10px 18px 10px;
  }
}
/* Figures Counter Section Styles (added for about section) */
.figures-section {
  background: linear-gradient(120deg, #eaf6fb 60%, #f7fafd 100%);
  padding: 40px 0;
  margin: 40px 0;
}

.figures-section h1 {
  font-family: 'Times New Roman', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #1a3556;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 0px;
  /* letter-spacing: 1px; */
}

.figures-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.figure-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px;
  text-align: center;
  min-width: 160px;
  transition: transform 0.2s;
}
.figure-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.figure-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #062648;
  margin-bottom: 8px;
}
.figure-label {
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.5px;
}
/* === Figures Counter Section === */
.figures-section {
  margin: 0 auto 40px auto;
  /* max-width: 900px; */
}
.figures-section .figures-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: unset;
  gap: 32px;
  padding: 0px 16px;
}
.figure-card {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
  background: #f7fafd;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,83,100,0.07);
  padding: 32px 12px 24px 12px;
  margin: 0 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.figure-card:hover {
  box-shadow: 0 6px 24px rgba(25,118,210,0.13);
  transform: translateY(-4px) scale(1.03);
}
.figure-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a3556;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.figure-label {
  font-size: 1.13rem;
  color: #092a4a;
  font-weight: 500;
}
@media (max-width: 700px) {
  .figures-section .figures-row {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
  }
  .figure-card {
    margin: 0 auto 12px auto;
    width: 90%;
  }
}

/* === FAQ Section === */
.faq-section {
  max-width: 800px;
  margin: 64px auto;
  background: #fff;
  /* border-radius: 18px; */
  /* box-shadow: 0 4px 24px rgba(44,83,100,0.10); */
  /* padding: 32px 24px 24px 24px; */
}
.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid #e3e8f0;
  padding-bottom: 8px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.18rem;
  font-weight: 600;
  color: #1a3556;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px 0;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #1976d2;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #1976d2;
  margin-left: 12px;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.77,0,.18,1), padding 0.25s, opacity 0.25s;
  color: #3a4a5d;
  font-size: 1.05rem;
  padding: 0;
  opacity: 0;
  box-sizing: border-box;
  line-height: 1.6;
  word-wrap: break-word;
}
.faq-item.active .faq-answer,
.faq-item .faq-answer[style*="max-height"]:not([style*="max-height: 0px"]) {
  border-left: 3px solid #1976d2;
  background: #f7fafd;
  padding: 12px 0px 12px 18px;
  margin-top: 2px;
  border-radius: 0 0 8px 8px;
  opacity: 1;
  overflow: visible;
  /* Ensure content is fully visible */
  min-height: fit-content;
}

/* Headings for Achievements and FAQ */
h2[style*="Our Achievements"],
h2[style*="Frequently Asked Questions"] {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 2.7rem !important;
  font-weight: 900;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
/* About Us Hero Section Styles */
.about-hero {
  width: 100%;
  background: #fff;
  padding: 80px 0 40px 0;
  margin-top: 32px;
}
.about-hero .container {
  max-width: 1200px;
  width: 95vw;
  margin: 0 auto;
  background: none;
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(44,83,100,0.13);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}


.about-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('../images/DHABAS/D-3.jpg') center center/cover no-repeat;
  z-index: 1;
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}
.about-hero-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
  min-height: 520px;
}

.about-hero-content {
  flex: 0 0 45%;
  text-align: left;
  padding: 0;
}

.about-hero-motto {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 4;
}

.about-hero-title,
.about-hero-subtitle,
.hero-badge {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Motto Section Inside About Hero */
.about-hero-motto .motto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #0096c7, #48cae4);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(72,202,228,0.20);
}

.about-hero-motto .motto-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0096c7;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.about-hero-motto .motto-text {
  font-size: 0.95rem;
  color: #1a3556;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.about-hero-motto .motto-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.about-hero-motto .motto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 10px;
  border-left: 3px solid #48cae4;
  box-shadow: 0 2px 6px rgba(72,202,228,0.10);
}

.about-hero-motto .motto-item i {
  font-size: 1.2rem;
  color: #48cae4;
  width: 24px;
  text-align: center;
}

.about-hero-motto .motto-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3556;
}

/* Our Motto Section - Below Achievements */
.motto-section {
  width: 100% !important;
  background: #ffffff !important;
  padding: 80px 20px !important;
  margin: 60px 0 !important;
  position: relative !important;
  z-index: 10 !important;
  display: block !important;
  visibility: visible !important;
  min-height: 400px !important;
  box-shadow: 0 4px 20px rgba(72,202,228,0.15) !important;
}

.motto-container {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  text-align: center !important;
  display: block !important;
  visibility: visible !important;
}

.motto-section .motto-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #0096c7, #48cae4) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(72,202,228,0.20);
  margin-bottom: 24px !important;
  width: fit-content;
  visibility: visible !important;
}

.motto-section .motto-badge i {
  font-size: 0.9rem;
}

.motto-section .motto-title {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #0096c7 !important;
  margin: 0 0 24px 0 !important;
  line-height: 1.2 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.motto-section .motto-text {
  font-size: 1.15rem !important;
  color: #1a3556 !important;
  line-height: 1.8 !important;
  margin: 0 auto 40px auto !important;
  max-width: 800px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-weight: 400 !important;
}

.motto-section .motto-highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.motto-section .motto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #48cae4;
  box-shadow: 0 2px 8px rgba(72,202,228,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 200px;
}

.motto-section .motto-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(72,202,228,0.20);
}

.motto-section .motto-item i {
  font-size: 1.5rem;
  color: #48cae4;
  width: 28px;
  text-align: center;
}

.motto-section .motto-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a3556;
}

.motto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #0096c7, #48cae4);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(72,202,228,0.20);
  margin-bottom: 24px;
  width: fit-content;
}

.motto-badge i {
  font-size: 0.9rem;
}

.motto-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0096c7;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.motto-text {
  font-size: 1.1rem;
  color: #3a4a5d;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.motto-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.motto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(120deg, #f7fafd 60%, #eaf6fb 100%);
  border-radius: 12px;
  border-left: 4px solid #48cae4;
  transition: transform 0.2s, box-shadow 0.2s;
}

.motto-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(72,202,228,0.15);
}

.motto-item i {
  font-size: 1.3rem;
  color: #48cae4;
  width: 24px;
  text-align: center;
}

.motto-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3556;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #0096c7, #48cae4);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1.1rem;
  /* margin-bottom: 18px; */
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(44,83,100,0.10);
}
.about-hero-title {
  font-size: 4rem;
    font-weight: 700;
    color: #48cae4;
    margin: 24px 0 16px 0;
    line-height: 0.90;
    margin-bottom: 32px;
}
.about-hero-title br {
  display: none;
}
.about-hero-subtitle {
  font-size: 1rem;
  color: #3a4a5d;
  margin: 0 auto 8px auto;
  line-height: 1.1;
  max-width: 600px;
}
@media (min-width: 640px) {
  .about-hero-title br {
    display: inline;
  }
}
@media (max-width: 968px) {
  .about-hero-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px;
  }
  .about-hero-content {
    flex: 1;
    text-align: center;
    width: 100%;
  }
  .about-hero-motto {
    width: 100%;
  }
  .motto-section {
    padding: 60px 0;
  }
  .motto-section .motto-title {
    font-size: 2rem;
  }
  .motto-section .motto-text {
    font-size: 1.05rem;
  }
  .motto-section .motto-highlights {
    flex-direction: column;
    align-items: center;
  }
  .motto-section .motto-item {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 40px 0 20px 0;
  }
  .about-hero .container {
    padding: 24px 8px 20px 8px;
  }
  .about-hero-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
    min-height: auto;
  }
  .about-hero-content {
    flex: 1;
    text-align: center;
    width: 100%;
  }
  .about-hero-motto {
    width: 100%;
    padding: 24px 20px;
  }
  .about-hero-title {
    font-size: 1.5rem;
  }
  .about-hero-subtitle {
    font-size: 1rem;
  }
  .about-hero-motto .motto-title {
    font-size: 1.5rem;
  }
  .about-hero-motto .motto-text {
    font-size: 0.9rem;
  }
  .motto-section {
    padding: 40px 0;
  }
  .motto-container {
    padding: 0 20px;
  }
  .motto-section .motto-title {
    font-size: 1.6rem;
  }
  .motto-section .motto-text {
    font-size: 1rem;
  }
  .motto-section .motto-item {
    padding: 12px 16px;
    min-width: auto;
  }
  .motto-section .motto-item span {
    font-size: 0.95rem;
  }
}
/* Header Styles (from main site) */
.site-header {
  background: linear-gradient(90deg, #0096c7, #48cae4);
  color: #fff;
  box-shadow: 0 2px 8px rgba(44,83,100,0.08);
  font-family: 'Segoe UI', Arial, sans-serif;
  animation: headerFadeIn 1.2s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}
.logo {
  flex: 0 0 auto;
  margin-right: 24px;
}
.logo-img {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.logo-img:hover {
  transform: scale(1.08) rotate(-6deg);
}
.nav {
  display: flex;
  gap: 24px;
}
.nav-left {
  flex: 1 1 auto;
}
.nav-link {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
  opacity: 0;
  animation: navLinkFadeIn 0.8s forwards;
}
.nav-link:nth-child(1) { animation-delay: 0.2s; }
.nav-link:nth-child(2) { animation-delay: 0.4s; }
.nav-link:nth-child(3) { animation-delay: 0.6s; }
.nav-link:nth-child(4) { animation-delay: 0.8s; }
.nav-link:nth-child(5) { animation-delay: 1s; }
  .nav-link-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-link-dropdown .dropdown-menu {
    margin-top: 12px;
  }
  .support-link {
    animation-delay: 1.2s;
  }
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.nav-link:hover {
  color: #ffd700;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  gap: 12px;
}
.header-btn {
  background: #fff;
  color: #48cae4;
  border: none;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,83,100,0.10);
  transition: background 0.2s, color 0.2s, transform 0.3s;
  opacity: 0;
  animation: btnFadeIn 1s forwards;
}
.login-btn { animation-delay: 1.1s; }
.register-btn { animation-delay: 1.3s; }
.header-btn:hover {
  background: #ffd700;
  color: #0096c7;
  transform: scale(1.08);
}
@keyframes headerFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes navLinkFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes btnFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Us Section */
.about-us-section {
  display: flex;
  align-items: stretch;
  min-height: 450px;
  background: #f5f7fa;
  margin: 60px 0 40px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.about-us-image {
  flex: 1 1 50%;
  background: url('../images/WATERPARKS/utl7ao3tyi1skbc4k83z5jv1aqrt_Cartoon Network amazone is the largest and the first cartoon themed park in the world.avif') center/cover no-repeat;
  position: relative;
}
.about-us-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 44, 92, 0.45);
}
.about-us-content {
  flex: 1 1 50%;
  padding: 48px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-us-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3556;
  margin-bottom: 18px;
}
.about-us-content p {
  font-size: 1.1rem;
  color: #3a4a5d;
  margin-bottom: 28px;
}
.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 16px;
}
.about-feature-text {
  flex: 1;
}
.about-feature-title {
  font-weight: 600;
  color: #1a3556;
  margin-bottom: 2px;
}
.about-feature-desc {
  color: #3a4a5d;
  font-size: 0.98rem;
}
.about-us-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #1976d2;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.12);
  transition: background 0.2s;
}
.about-us-btn:hover {
  background: #145ea8;
}
@media (max-width: 900px) {
  .about-us-section {
    flex-direction: column;
    min-height: 0;
  }
  .about-us-image {
    min-height: 220px;
  }
  .about-us-content {
    padding: 32px 16px;
  }
}

/* Footer Styles (from main site) */
.modern-footer {
  background: #111827;
  color: #d1d5db;
  font-family: Arial, sans-serif;
  padding: 50px 20px 0;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-col {
  flex: 1 1 calc(25% - 20px);
  min-width: 230px;
}
.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #60a5fa;
  padding-left: 5px;
}
.footer-col p {
  margin: 8px 0;
}
.footer-col a {
  color: #d1d5db;
  transition: 0.3s;
}
.footer-col a:hover {
  color: #60a5fa;
}
.social-links a {
  margin-right: 10px;
  font-size: 18px;
  padding: 8px;
  display: inline-block;
  background: #1f2937;
  border-radius: 50%;
  transition: 0.3s;
}
.social-links a:hover {
  background: #2563eb;
  color: white;
}
.newsletter-form {
  display: flex;
  margin-top: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 30px 0 0 30px;
  border: none;
}
.newsletter-form button {
  padding: 10px 15px;
  border: none;
  border-radius: 0 30px 30px 0;
  background: #2563eb;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-form button:hover {
  background: #1d4ed8;
}
.footer-bottom {
  background: #0f172a;
  margin-top: 30px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #374151;
}
.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
}
.back-to-top {
  font-size: 18px;
  padding: 10px;
  background: #2563eb;
  border-radius: 50%;
  transition: 0.3s;
}
.back-to-top:hover {
  background: #1d4ed8;
}
@media (max-width: 1024px) {
  .footer-col {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
  }
  .footer-col {
    flex: 1 1 100%;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .footer-title {
    font-size: 16px;
  }
  .footer-col p,
  .footer-links a {
    font-size: 14px;
  }
  .social-links a {
    font-size: 16px;
    padding: 6px;
  }
  .back-to-top {
    padding: 8px;
    font-size: 16px;
  }
  .modern-footer {
    padding: 35px 15px 0;
  }
}