@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@100..900&family=League+Spartan:wght@100..900&display=swap");

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

:root {
  --red: #ff0000;
  --black: #111111;
  --white: #ffffff;
  --muted: #cccccc;
  --radius: 16px;
}

/* ================= BASE ================= */
.offline-page {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}
.offline-page * {
  color: #fff;
}

body.offline-page-active #smooth-wrapper {
  height: auto;
  overflow: visible;
}

body.offline-page-active #smooth-content {
  transform: none !important;
}

footer {
  color: #111;
}

/* ================= HERO ================= */
.offline-hero {
  /* margin: 4rem 6rem; */
  overflow: visible;
}

/* IMAGE AREA */
.offline-hero-visual {
  height: 80vh;
  overflow: hidden;
  position: relative;
  /* border-radius: 10px; */
}

/* SLIDE TRACK */
.offline-hero-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

/* INDIVIDUAL SLIDE */
.offline-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  flex-shrink: 0;
}

.offline-hero-slide1 {
  background-position-y: 5px;
}

.offline-hero-slide2 {
  background-position-y: -180px;
}

.offline-hero-header {
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 5px;
}

/* .offline-hero-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
} */

/* .offline-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
} */

/* ================= FORM ================= */
.offline-form-section {
  margin: 0.5rem 0;
  padding: 40px 20px;
  background-color: #eee;
}

.offline-form-card {
  max-width: 720px;
  margin: auto;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.offline-form-card h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
}

.offline-form-subtext {
  text-align: center;
  color: var(--black);
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif !important;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
  display: block;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif !important;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  /* box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25); */
  border: 1px solid #333;
  color: #000;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif !important;
  transition: all 0.25s ease-in-out;
}

.form-group .error {
  color: var(--red);
  font-family: "League Spartan", sans-serif !important;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.25);
}

.offline-form-pair {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group input {
  box-shadow: none;
}

.radio-group label {
  font-size: 0.9rem;
}

.offline-submit-btn {
  width: 100%;
  border-radius: 8px !important;
  margin-top: 25px;
}

.offline-submit-btn:hover {
  box-shadow: 1px 1px 10px black !important;
}

/* TESTIMONIALS */
.offline-testimonials {
  padding: 40px 6%;
  text-align: center;
}

.offline-testimonials__title {
  text-align: center;
  font-size: 48px;
  color: black;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  margin-bottom: 30px;
}

.offline-testimonials__title span {
  color: red;
}

.offline-testimonials__wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.offline-testimonials__viewport {
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.offline-testimonials__track {
  display: flex;
  gap: 15px;
  transition: transform 0.6s ease;
}

.offline-testimonials__card {
  min-width: calc(33.83% - 20px);
  /* max-height: fit-content; */
  background: #eee;
  border-radius: 22px;
  padding: 20px 30px;
  text-align: center;
}

.offline-testimonials__quote i {
  font-size: 50px;
  color: red;
  text-align: start;
  width: 100%;
}

.offline-testimonials__card p {
  font-size: 18px;
  color: black;
  font-style: italic;
  line-height: 1.6;
  font-family: "Poppins", sans-serif !important;
}

.offline-testimonials__stars {
  color: #ffb400;
  font-size: 22px;
  margin-bottom: 10px;
}

.offline-testimonials__card h4 {
  font-size: 20px;
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif !important;
  color: black;
}

/* Avatar */
.offline-testimonials__avatar img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid red;
  object-fit: cover;
}

/* Arrows */
.offline-testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: var(--white);
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.offline-testimonials__arrow--left {
  left: -10px;
  transition: all 0.3s ease-in-out;
}

.offline-testimonials__arrow--right {
  right: -10px;
  transition: all 0.3s ease-in-out;
}

.offline-testimonials__arrow--left:hover,
.offline-testimonials__arrow--right:hover {
  background-color: var(--red);
  width: 52px;
  height: 52px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: black;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  width: 22px;
  border-radius: 10px;
  background: var(--red);
}

/* Disable theme smooth scroll safely */
#smooth-wrapper {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

#smooth-content {
  transform: translate3d(0, 0, 0) !important;
  will-change: auto !important;
}

@media (max-width: 912px) {
  .offline-testimonials__card {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 778px) {
  .offline-testimonials__card {
    min-width: 100%;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .offline-hero-content h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 900px) {
  .offline-hero-visual {
    height: 70vh;
  }

  .offline-hero-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .offline-hero-visual {
    border-radius: 0px;
  }

  .offline-hero-slide1 {
    background-position: 30% center;
  }

  .offline-hero-slide2 {
    background-position: 35% center;
  }

  .offline-hero-slide3 {
    background-position: 60% center;
  }

  .offline-hero-header {
    padding: 10px 20px;
  }

  .offline-hero-header h1 {
    font-size: 1.3rem;
  }
  .offline-form-section {
    padding: 0;
    margin-top: 0;
  }

  .offline-form-card {
    box-shadow: none;
  }

  .offline-hero-content p {
    font-size: 1rem;
  }
  .offline-form-pair {
    flex-direction: column;
    align-items: start;
  }

  .offline-testimonials {
    padding: 20px 6%;
  }

  .offline-testimonials__title {
    font-size: 34px;
    text-align: center;
  }
}
