* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* ===== NAVBAR BASE ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(160deg, #800000 0%, #4E0070 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: top 0.4s ease, background 0.3s ease;
}

/* Inner container */
.nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 4%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Michroma', serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-right: auto;
}

.logo img {
  height: auto;
  width: 4rem;
  object-fit: cover;
}

/* Desktop menu */
.primary ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.primary a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.primary a:hover {
  color: #ffcf56;
  transform: scale(1.05);
}

/* ===== HAMBURGER ICON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.3s ease;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animate hamburger to 'X' when active */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.92);
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  backdrop-filter: blur(6px);
}

.mobile-menu a {
  padding: 15px 0;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffcf56;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    height: 70px;
  }

  .logo img {
    height: auto;
    width: 3rem;
  }
}

/* ===== NAV HIDE ON SCROLL ===== */
#navbar.hidden {
  top: -90px;
  transition: top 0.4s ease;
}

/* ===== HERO SECTION ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.603), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: left;
  z-index: 3;
  animation: fadeUp 1.2s ease;
}

.hero-content h1 {
  font-family: 'Michroma', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: lighter;
  color: #ffcf56;
}

.hero-content p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f8f8f8;
}

.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ffcf56;
  color: #800000;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
  background: #a52a2a;
  color: #fff;
}

/* HERO DOTS — bottom right corner */
.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  /* move to right side */
  display: flex;
  flex-direction: column;
  /* stack vertically */
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(2, 2, 1, 0.8);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border 0.3s ease;
}

.hero-dot.active {
  background: #ffcf56;
  border-color: #240000;
  transform: scale(1.25);
}

/* Mobile tweak — align horizontally on smaller screens */
@media (max-width: 768px) {
  .hero-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 25px;
    flex-direction: row;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* SERVICES SECTION */
/* SERVICES SECTION */
.services-carousel {
  background: linear-gradient(180deg, #ffffff 0%, #fcf7ff 100%);
  color: #800000;
  font-family: "Michroma", sans-serif;
  padding: 80px 5%;
  overflow: hidden;
  position: relative;
}

.services-title {
  text-align: center;
  font-size: 2.2rem;
  color: #800000;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffcf56, #cf5c36);
  border-radius: 2px;
}

.services-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.services-track {
  display: flex;
  gap: 30px;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(128, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 0, 112, 0.15);
  border-color: rgba(128, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-info {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-info h3 {
  color: #800000;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: "Michroma", sans-serif;
  line-height: 1.4;
}

.service-info p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.learn-more {
  align-self: center;
  background: transparent;
  color: #800000;
  border: 2px solid #800000;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cf5c36, #ffcf56);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.learn-more:hover {
  color: #050517;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(207, 92, 54, 0.3);
}

.learn-more:hover::before {
  opacity: 1;
}

/* Dots */
.service-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.service-dots .dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-dots .dot.active {
  background: #cf5c36;
  transform: scale(1.2);
}

/* Animation for seamless auto-scroll */
@keyframes scrollServices {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* The magic that makes it loop seamlessly */
/* .services-track {
  animation: scrollServices 40s linear infinite;
} */

.services-track:hover {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 900px) {
  .service-card {
    flex: 0 0 85%;
  }

  .services-track {
    animation: scrollServices 55s linear infinite;
  }

  .services-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 92%;
  }

  .services-title {
    font-size: 1.7rem;
  }
}

/* PRODUCTS SECTION */
.products-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
  color: #333;
  padding: 100px 5%;
  overflow: hidden;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.products-section .section-title {
  font-family: 'Michroma', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #800000;
  text-shadow: none;
  position: relative;
  display: inline-block;
}

.products-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ffcf56;
  border-radius: 2px;
}



.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 4rem;
  z-index: 2;
  position: relative;
}

.product-tabs .tab {
  background: #fff;
  color: #555;
  border: 1px solid rgba(128, 0, 0, 0.15);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Michroma', sans-serif;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.product-tabs .tab:hover {
  background: #fff5f5;
  color: #800000;
  border-color: #800000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(128, 0, 0, 0.1);
}

.product-tabs .tab.active {
  background: linear-gradient(135deg, #800000 0%, #600000 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(128, 0, 0, 0.25);
  font-weight: 600;
}

.product-slider {
  position: relative;
  overflow: visible;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.product-slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.product-image {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: none;
  border: none;
  transition: transform 0.4s ease;
}

.product-slide:hover .product-image img {
  transform: scale(1.02);
}

.product-content {
  text-align: left;
  flex: 1;
  max-width: 500px;
}

.product-content h2 {
  font-family: 'Michroma', sans-serif;
  color: #800000;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.product-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

.product-content hr {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #800000;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Michroma', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 1px solid #800000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(128, 0, 0, 0.1);
}

.btn-learn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #800000, #5a0000);
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.btn-learn:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(128, 0, 0, 0.2);
  color: #fff;
}

.btn-learn:hover::before {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .product-slide {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .product-slide.active {
    flex-direction: column;
  }

  .product-content {
    text-align: center;
    max-width: 100%;
    padding: 0 1rem;
  }

  .product-image {
    max-width: 90%;
  }

  .product-tabs {
    gap: 0.8rem;
  }

  .product-tabs .tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .product-content h2 {
    font-size: 2rem;
  }
}





/* ===============================
   FADE-UP ANIMATIONS (MORREBS ICT)
   =============================== */

/* Animation keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base animation state (invisible until scrolled into view) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When element becomes visible */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 1s ease forwards;
}



/* VIDEO BACKGROUND SECTION */
.video-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Michroma", sans-serif;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.8);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(35, 0, 0, 0.894), rgba(0, 7, 146, 0.335));
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1.6s ease forwards;
}

.video-content h2 {
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: #ffcf56;
}

.video-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.4rem;
  color: #e7e7e7;
}

.video-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 30px;
  background: #80000059;
  color: #ffcf56;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background: #ffcf56;
  color: #ffffff;
  transform: scale(1.05);
}

/* fade-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .video-section {
    height: 60vh;
  }

  .video-content h2 {
    font-size: 1.8rem;
  }

  .video-content p {
    font-size: 0.95rem;
  }

  .video-btn {
    padding: 8px 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .video-section {
    height: 55vh;
  }

  .video-content h2 {
    font-size: 1.4rem;
  }

  .video-content p {
    font-size: 0.85rem;
  }
}

/* PARTNERS SECTION */
.partners-section {
  background: #EDEAD0;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.partners-section h2 {
  font-family: "Michroma", sans-serif;
  font-size: 1.8rem;
  color: #050517;
  margin-bottom: 10px;
}

.partners-section p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

/* Carousel Container */
.partners-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scrollPartners 35s linear infinite;
}

.partners-track img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .partners-track {
    gap: 40px;
    animation-duration: 25s;
  }

  .partners-track img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .partners-section h2 {
    font-size: 1.4rem;
  }

  .partners-section p {
    font-size: 0.9rem;
  }

  .partners-track {
    gap: 30px;
    animation-duration: 20s;
  }

  .partners-track img {
    height: 50px;
  }
}

/* GOOGLE REVIEWS SECTION */
.google-reviews {
  background-color: #fff;
  color: #222;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
}

.google-reviews h2 {
  font-family: "Michroma", sans-serif;
  color: #800000;
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 1.2px;
}

.reviews-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.review-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 330px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideUp 0.6s ease forwards;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
}

.review-info h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.stars {
  color: #fbbc04;
  /* Google's gold star */
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.8rem;
  color: #777;
}

/* Animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive */
@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 90%;
  }

  .google-reviews h2 {
    font-size: 1.8rem;
  }
}

footer {
  background: #0d0d0d;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  letter-spacing: 0.3px;
  overflow: hidden;
}

footer h2,
footer h3,
footer h5 {
  color: #ffffff;
  font-weight: lighter;
  letter-spacing: 0.5px;
  font-family: 'Michroma', sans-serif;
}

footer p,
footer li {
  color: #d6d6d6;
  line-height: 1.7;
  font-size: 0.95rem;
}

footer a {
  color: #800000;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #800000;
}

/* === CTA SECTION === */
.et_pb_row_0_tb_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0a0a0a 0%, #151515 100%);
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.et_pb_row_0_tb_footer h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: 'Michroma', sans-serif;
}

.et_pb_button_0_tb_footer {
  background: transparent;
  border: 2px solid #800000;
  color: #800000;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.et_pb_button_0_tb_footer:hover {
  background: #800000;
  color: #000;
  transform: translateY(-3px);
}

/* === MAIN GRID FOOTER SECTIONS === */
.et_pb_row_1_tb_footer,
.et_pb_row_2_tb_footer,
.et_pb_row_3_tb_footer,
.et_pb_row_4_tb_footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* === SUB SECTIONS & CONTENT === */
.et_pb_blurb_6_tb_footer ul {
  list-style: none;
  padding: 0;
}

.et_pb_blurb_6_tb_footer ul li {
  margin-bottom: 0.7rem;
  transition: all 0.3s ease;
}

.et_pb_blurb_6_tb_footer ul li:hover {
  transform: translateX(5px);
  color: #800000;
}

/* === SOCIAL MEDIA ICONS === */
.et_pb_social_media_follow_0_tb_footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.et_pb_social_icon a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.et_pb_social_icon a.icon:hover {
  background: #800000;
  color: #000;
  transform: scale(1.1);
}

/* === CONTACT & LOCATION === */
.et_pb_blurb_3_tb_footer h3,
.et_pb_blurb_4_tb_footer h3,
.et_pb_blurb_9_tb_footer h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #cfcfcf;
  margin-top: 0.4rem;
}

/* === COPYRIGHT === */
.et_pb_section_2_tb_footer {
  background: #0a0a0a;
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.et_pb_text_6_tb_footer {
  color: #aaa;
  font-size: 0.9rem;
}

/* === HOVER LINES === */
footer h3::after,
footer h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #800000;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .et_pb_row_0_tb_footer {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .et_pb_button_0_tb_footer {
    align-self: center;
  }
}

@media (max-width: 768px) {
  footer h2 {
    font-size: 1.5rem;
  }

  .et_pb_row_1_tb_footer,
  .et_pb_row_2_tb_footer,
  .et_pb_row_3_tb_footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .et_pb_social_media_follow_0_tb_footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  footer {
    font-size: 0.9rem;
  }

  .et_pb_button_0_tb_footer {
    width: 100%;
  }

  .et_pb_row_0_tb_footer {
    padding: 1.5rem;
  }
}

/* === SCROLL FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Footer icon fixes === */
.et_pb_main_blurb_image span.et-pb-icon {
  font-family: 'Michroma', sans-serif;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #800000;
  /* maroon accent */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  margin-right: 10px;
}

/* Replace icons manually */
.et_pb_blurb_0_tb_footer .et-pb-icon::before {
  content: "\f108";
}

/* Learn - monitor */
.et_pb_blurb_1_tb_footer .et-pb-icon::before {
  content: "\f091";
}

/* Achieve - trophy */
.et_pb_blurb_2_tb_footer .et-pb-icon::before {
  content: "\f0b1";
}

/* Build Career - briefcase */
.et_pb_blurb_3_tb_footer .et-pb-icon::before {
  content: "\f3c5";
}

/* Location - map marker */
.et_pb_blurb_5_tb_footer .et-pb-icon::before {
  content: "\f0e8";
}

/* Quick Links - sitemap */
.et_pb_blurb_8_tb_footer .et-pb-icon::before {
  content: "\f0e0";
}

/* Email */
.et_pb_blurb_9_tb_footer .et-pb-icon::before {
  content: "\f095";
}

/* Phone */

/* === Footer layout polish === */
footer {
  background: #111;
  /* deep charcoal background */
  color: #eee;
  padding: 3rem 2rem;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

footer h2,
footer h3,
footer h5 {
  color: #fff;
}

footer a {
  color: #ffcf56;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #cf5c36;
}

.et_pb_social_icon a.icon {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.et_pb_social_icon a.icon:hover {
  background: #800000;
  color: #fff;
  border-color: #800000;
}

/* ========= MORREBS FOOTER FIXED STYLING ========= */
footer.et-l--footer {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: "Cinzel", serif;
  padding-top: 3rem;
}

footer h2,
footer h3,
footer h5 {
  color: #ffcf56;
  font-weight: 600;
}

footer a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffcf56;
}

/* Remove default ET icons */
.et-pb-icon {
  display: none !important;
}

/* Add Font Awesome icons manually */
.et_pb_blurb_0_tb_footer .et_pb_main_blurb_image::before {
  content: "\f109";
  /* Monitor */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_1_tb_footer .et_pb_main_blurb_image::before {
  content: "\f091";
  /* Trophy */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_2_tb_footer .et_pb_main_blurb_image::before {
  content: "\f0b1";
  /* Briefcase */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_3_tb_footer .et_pb_main_blurb_image::before {
  content: "\f3c5";
  /* Location */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_4_tb_footer .et_pb_main_blurb_image::before {
  content: "\f041";
  /* Map marker */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_5_tb_footer .et_pb_main_blurb_image::before,
.et_pb_blurb_7_tb_footer .et_pb_main_blurb_image::before {
  content: "\f0e8";
  /* Network */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_8_tb_footer .et_pb_main_blurb_image::before {
  content: "\f0e0";
  /* Email */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

.et_pb_blurb_9_tb_footer .et_pb_main_blurb_image::before {
  content: "\f3ce";
  /* Phone */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcf56;
  font-size: 1.8rem;
}

/* ===== SOCIAL ICONS ===== */
.et_pb_social_media_follow {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.et_pb_social_media_follow .et_pb_social_icon a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ffcf56;
  color: #ffcf56;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.et_pb_social_media_follow .et_pb_social_icon a.icon:hover {
  background: #ffcf56;
  color: #0a0a0a;
}

/* Columns layout */
.et_pb_row_1_tb_footer,
.et_pb_row_2_tb_footer,
.et_pb_row_3_tb_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1rem;
}

.et_pb_column {
  flex: 1 1 300px;
  min-width: 250px;
}

/* Copyright */
.et_pb_section_2_tb_footer {
  background: #050517;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  footer.et-l--footer {
    text-align: center;
  }

  .et_pb_row_1_tb_footer,
  .et_pb_row_2_tb_footer,
  .et_pb_row_3_tb_footer {
    flex-direction: column;
    align-items: center;
  }

  .et_pb_social_media_follow {
    justify-content: center;
  }
}

/* === SOCIAL ICONS NEW STYLE === */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: #800000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.footer-socials a:hover {
  background: #fff;
  color: #800000;
  transform: scale(1.1);
}

/* ===== GOOGLE REVIEW CARDS ===== */
.review-card.google-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  padding: 1.5rem;
  text-align: left;
  border: none;
  transition: box-shadow 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.review-card.google-card:hover {
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.3), 0 8px 16px 6px rgba(60, 64, 67, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.reviewer-details h4 {
  font-family: 'Roboto', sans-serif;
  /* Google uses Roboto/Product Sans */
  font-size: 1rem;
  font-weight: 700;
  color: #202124;
  margin: 0;
}

.review-date {
  font-size: 0.8rem;
  color: #70757a;
  display: block;
}

.google-logo-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.star-rating {
  color: #fb8c00;
  /* Google Star Color */
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.review-text {
  font-family: 'Roboto', sans-serif;
  color: #4b4b4b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}