/* CTA section start */

   /* ===== CTA SECTION ===== */
.Get-in-touch {
  background: linear-gradient(135deg, black, #3b2a14);
  color: var(--gold-light);
  text-align: center;
  padding: 80px 20px;
  margin-top:50px;
}
.Get-in-touch h2 {
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.Get-in-touch p {
  color: #f3e58d;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px){
      .Get-in-touch h2 {
      text-align: center;
        font-size: 24px;
        margin-bottom: 10px;
        text-transform: uppercase;
      }
      .Get-in-touch p {
      text-align: center;
        color: #f3e58d;
        margin-bottom: 25px;
      }
}
.Get-in-touch a {
  background: transparent;
  color: #f3e58d;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* section end */

/* =================footer code============ */


/* ===== Footer ===== */
.footer {
  background: black;
  padding: 40px 80px;
}

/* ===== Top Newsletter ===== */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 1.2s ease;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter{
  color: white;
}
.newsletter h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  padding: 12px 16px;
  border: none;
  outline: none;
  background: transparent;
  color: black;
  width: 250px;
}

.newsletter-form button {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  border: none;
  padding: 12px 18px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}


hr {
  border: none;
  border-top: 1px solid #9c5c1c;
  margin: 30px 0;
}

/* ===== Main Columns ===== */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  animation: slideUp 1.2s ease;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #9c5c1c;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: white;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #9c5c1c;
}

/* Hotline */
.hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: white;
}

.hotline i {
  font-size: 30px;
  color: #9c5c1c;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
 background: transparent;
 border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.social-icons a:hover {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  color: black;
  border: 1px solid transparent;
  box-shadow: 0px 0px 10px 0px white;
  transform: translateY(-4px);
}

/* Recent Posts */
.recent-post .post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: center;
}

.recent-post img {
  border-radius: 6px;
}

.recent-post a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.recent-post a:hover {
  color: #9c5c1c;
}

.recent-post p {
  font-size: 13px;
  color: #aaa;
  margin: 3px 0 0;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: white;
  font-style: bold;
}
.f2{
  margin-left: 110px;
}
.f3{
  margin-left: 60px;
}
@media only screen and (max-width: 768px) {
  .f2, .f3{
    margin-left: 0px;
  }
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .newsletter-form input {
    width: 180px;
  }
}
/* footer end */