/* Base reset */
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-section {
  background: #151414;
  position: relative;
  color: #fff;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.footer-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 40px 0 10px 0;
  align-items: center;
}

.footer-top-left h2 {
  margin: 0 0 10px 0;
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
}

.footer-top-sub {
  margin: 0;
  color: #ff5e14;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-top-right {
  text-align: right;
}

.footer-telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  background: #2E2E2E;
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid #3a3a3a;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-telegram-link i {
  color: #ff5e14;
}

.footer-telegram-link:hover {
  background: #1f1f1f;
  transform: translateY(-2px);
}

.footer-cta {
  border-bottom: 1px solid #373636;
  padding: 30px 0;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 100px !important;
  height: auto;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.footer-mini-list p {
  margin: 0 0 8px 0;
  color: #bfbfbf;
  font-size: 14px;
}

.footer-mini-list i {
  color: #ff5e14;
  margin-right: 8px;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li,
.footer-list li {
  margin-bottom: 12px;
  color: #bfbfbf;
  font-size: 14px;
}

.footer-list i {
  color: #ff5e14;
  margin-right: 8px;
}

.footer-link {
  color: #bfbfbf;
  text-decoration: none;
}

.footer-link:hover {
  color: #ff5e14;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 20px 0;
}

.footer-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.footer-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.footer-image-box:hover img {
  transform: scale(1.07);
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 10px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-top-right {
    text-align: left;
  }
  .footer-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .single-cta i {
    float: none;
    margin-top: 0;
    margin-bottom: 8px;
  }
  .cta-text {
    padding-left: 0;
  }
}
