/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#preloader .preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#preloader img {
  width: 120px;
  opacity: 0;
  transform: translateY(-100px);
  animation: logoIn 1s ease forwards;
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#preloader h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(100px);
  animation: titleIn 1s ease 0.3s forwards;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#preloader.hide img {
  animation: logoOut 1s ease forwards;
}

#preloader.hide h1 {
  animation: titleOut 1s ease forwards;
}

#preloader.hide {
  animation: fadeBgOut 1s ease forwards;
}

@keyframes logoOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes titleOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}

@keyframes fadeBgOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.visually-off {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.contact-nav-links a {
  color: #f60404;
  font-weight: bold;
}
.contact-nav-links a:hover {
  color: black;
  font-weight: bold;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 0rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbaritems {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  z-index: 2;
}
.navbaritems img {
  width: 100px;
  height: auto;
  image-rendering: auto;
  display: block;
}

.navbaritems a {
  font-size: 25px;
}

.navbar .logo {
  width: 90px;
  height: auto;
}

.navbar h1 {
  font-size: 1.5rem;
  color: #111;
}

.navbar ul {
  display: flex;
  gap: 1.5rem;
}

.navbar li a {
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.navbar li a.active {
  color: #f60404;
  font-weight: bold;
}
.navbar li a:hover {
  font-weight: bold;
}

/* Hamburger icon */
.hamburger-menu {
  position: relative;
  display: inline-block;
}
#hamburger-nav {
  position: relative;
  z-index: 10000;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}
.menu-links {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 12px 12px;
  box-shadow: none !important;
  border: none !important;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-links.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-links.closing {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
}
.menu-main {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-main li {
  border-bottom: 1px solid #e5e5e5;
}

.menu-main li:last-child {
  border-bottom: none;
}

.menu-main a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease;
}

.menu-main a:hover {
  background: #fff !important;
  color: black !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
  transition: all 0.2s ease;
  color: #f60404 !important;
}

.arrow {
  font-size: 1rem;
  opacity: 0.7;
}
.menu-extra {
  margin-top: 8px;
  border-top: 1px solid #ddd;
  padding: 1rem 1.5rem;
}

.socials {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.socials a {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #111;
}
.socials a:hover {
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.socials a i {
  font-size: 1.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.socials a:hover i {
  transform: translateY(-2px);
  color: #f60404;
}
.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}
.hamburger-icon span:first-child {
  transform: none;
}
.hamburger-icon span:first-child {
  opacity: 1;
}
.hamburger-icon span:first-child {
  transform: none;
}
.quote-button-wrapper {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  background: #f60404;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 2s ease forwards;
}

.quote-button {
  display: inline-block;
  padding: 0.2rem 4.5rem;
  background-color: #f60404;
  color: #fff;
  font-size: 1rem !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

/*home Section */
.home {
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-width: 100vw;
  padding: 6rem 2rem 2rem;
  background: url("media/jas.jpeg") center center / cover no-repeat;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 160%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease-in-out, transform 4s ease-in-out;
}

.home-bg.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.home-grid {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home-text {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.home-text h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  text-wrap: none;
  letter-spacing: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  animation: fadeInDown 1.2s ease forwards;
}

.home-text p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  animation: fadeInUp 1.5s ease forwards;
}

.home-text .btn {
  display: inline-block;
  background: #f60404;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 2s ease forwards;
}

.home-text .btn:hover {
  background: #fff;
  color: #f60404;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 4, 4, 0.5);
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulseZoom 1.5s infinite ease-in-out;
  z-index: 20;
}
.scroll-down::before {
  content: "↓";
  position: absolute;
  top: 5px;
  left: 13px;
  font-size: 1.2rem;
  color: white;
}

@keyframes pulseZoom {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Section styling*/
section {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* About Page */
.about {
  position: relative;
  padding: 5rem 2rem;
  background: #f9f9f9;
  min-width: 100vw;
}
.about-break-tags {
  background-color: #f9f9f9;
}
br.line {
  border: 10px solid green;
}

.about-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2.75rem;
  padding-left: 12rem;
}

.about-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
}

.feature-row.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
}

/* Text styling */
.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f60404;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  max-width: 550px;
}
/* Partners section */
.partners-header {
  margin-top: 70px;
  margin-bottom: 30px;
  margin-left: 25px;
}

.partners {
  background: #fff;
  padding: 0rem 0;
  min-width: 100vw;
  overflow: hidden;
  margin-bottom: -30px;
  position: relative;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: calc(250px * 26);
  animation: scroll 40s linear infinite;
}

.logo-track img {
  height: 150px;
  margin: 0 2rem;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services */
.services {
  background: #f9f9f9;
  min-width: 100vw;
  padding: 5rem 13rem;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.services-header .view-all {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-header .view-all:hover {
  color: #f60404;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
  opacity: 0;
  transform: translateY(40px);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin: 1.2rem 1.5rem 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 1.5rem 1.5rem;
}

.service-card .view-more {
  display: inline-block;
  margin: auto 1.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f60404;
  text-decoration: none;
  position: relative;
  padding-right: 1.2rem;
  transition: color 0.3s ease;
}

.service-card .view-more::after {
  content: "›";
  position: absolute;
  right: 0;
  font-size: 1rem;
  top: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-right: 4px solid black;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-right 0.3s ease;
}

.services-divider {
  margin: 0;
  padding: 0;
}

.services article {
  border-right: 4px solid #f60404;
}
/* Home stagings section */
.stagings {
  padding: 5rem 2rem;
  background: #fff;
  text-align: left;
  min-width: 100vw;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 4px;
  animation: slideIn 1s ease-out;
}

.masonry-grid {
  columns: 3 300px;
  column-gap: 0.3rem;
}

.masonry-item {
  margin-bottom: 0.3rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.lightbox.show .lightbox-img {
  transform: scale(1);
}
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #f60404;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  user-select: none;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  color: #f60404;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reviews section */
.reviews {
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.overlay {
  position: absolute;
  top: 510px;
  left: 680px;
  width: 220px;
  height: 50px;
  z-index: 9999;
  background-color: #fff;
  color: #fff;
  pointer-events: none;
}

/* Listings */
.listings {
  max-width: 1200px;
  margin: auto;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.listings h2 {
  text-align: start;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-left: 40px;
}

.listing-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-right: 4px solid #f60404;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-right 0.5s ease;
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-right-color: black;
}
.listing-card h3,
.listings-location p,
.listings-price-date p,
.listings-info p {
  font-size: 1rem;
  font-weight: 500;
}
.listings-img img {
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.listings-price-date {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  color: #333;
}

.price {
  color: #00a6c9;
  font-weight: 600;
}

.listings-location {
  font-size: 14px;
  padding: 0 15px 10px;
  color: #444;
}

.listings-info {
  display: flex;
  gap: 15px;
  padding: 10px 15px;
  border-top: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.listings-info div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing-info-icon {
  color: #00a6c9;
}
.listing-info-icon p {
  color: black;
}
.listing-sold .price-listed .price-cut {
  color: #f60404;
  text-decoration: line-through;
}
.listings .swiper {
  padding: 20px 40px;
}

.listings .swiper-slide a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.listings .swiper-button-prev {
  left: 0px;
}

.listings .swiper-button-next {
  right: 0px;
}

.listings .swiper-slide {
  width: 350px !important;
  min-height: 450px;
}

.listings .swiper-button-prev,
.listings .swiper-button-next {
  color: #333;
}

/* Contact section */
.contact-form {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
  min-width: 100vw;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 36px;
}

.contact-form form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  opacity: 0;
  transform: translateY(-20px);
}

.input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  color: black;
  background: rgb(241, 241, 241);
  border-radius: 0.8rem;
  border: 1px solid #ccc;
  resize: none;
}

.flex-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flex-row .input-group {
  flex: 1;
  min-width: 250px;
}

input.btn-1 {
  display: inline-block;
  background: #f60404;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.btn-1:hover {
  background-color: white;
  color: black;
  border: 2px solid #f60404;
  transform: scale(1.05);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-group.animate {
  animation: fadeInDown 0.8s ease forwards;
}

.input-group.animate:nth-child(1) {
  animation-delay: 0.1s;
}
.input-group.animate:nth-child(2) {
  animation-delay: 0.2s;
}
.input-group.animate:nth-child(3) {
  animation-delay: 0.3s;
}
.input-group.animate:nth-child(4) {
  animation-delay: 0.4s;
}
.input-group.animate:nth-child(5) {
  animation-delay: 0.5s;
}
.input-group.animate:nth-child(6) {
  animation-delay: 0.6s;
}
.input-group.animate:nth-child(7) {
  animation-delay: 0.7s;
}
.btn-1.animate {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

/* CSS for pop up messages */
.popup {
  position: fixed;
  top: 120px;
  padding: 12px 20px;
  border-radius: 10px;
  max-width: 350px;
  word-wrap: break-word;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1000;
}

.success-popup {
  background: #4caf50;
  color: #fff;
}

.error-popup {
  background: #e53935;
  color: #fff;
}

.popup.show {
  right: 20px;
  opacity: 1;
}

.popup.hide {
  right: -400px;
  opacity: 0;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
/* Footer */
.footer {
  background: #f1f1f1;
  color: #222;
  padding: 40px 20px 20px;
}
.footer-top {
  text-align: center;
  padding: 40px 20px 20px;
  background: #f1f1f1;
}

.footer-top .help-text {
  font-size: 1.6rem;
  color: #444;
  margin-bottom: 10px;
}

.footer-top .cta-link {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  border-bottom: 3px solid #111;
  transition: 0.3s ease;
}

.footer-top .cta-link:hover {
  color: #f60404;
  border-color: #f60404;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.mobile {
  display: none;
}
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #f60404;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer .social a {
  font-size: 24px;
  color: black;
  border: 2px solid #f60404;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  transition: 0.3s ease;
}
.bx-phone,
.bx-envelope {
  font-weight: bolder;
}

.footer .social a:hover {
  transform: scale(1.2) translateY(-5px);
  color: #f60404;
  border: 2px solid #f60404;
}

.footer-col p {
  font-size: 0.95rem;
  margin: 5px 0;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  border-top: 2px solid #f60404;
  padding-top: 10px;
}

.footer-name {
  color: #f60404;
  font-weight: bold;
}
.eric-tumu {
  position: fixed;
  bottom: 5px;
  right: 10px;
  font-family: "Great Vibes", cursive;
  font-size: 8px;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.2;
  letter-spacing: 1px;
}
