/* Color tokens live in assets/css/theme.css (loaded first). */
#toast-container > .toast-warning {
  background-color: var(--color-warning-dark) !important;
  color: var(--text-dark) !important;
}
#toast-container > .toast-info {
  background-color: var(--color-info) !important;
  color: var(--color-white) !important;
}
.content-margin {
  min-height: calc(100vh - 181px);
}
.font-small-allscreen {
  font-size: inherit;
}
/* <!--======== Scroll up and prograss css start ========--> */
#scrollUp {
  text-align: center;
  bottom: 20px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 10;
  border-radius: 50%;
  background: var(--primary-color) !important;
  padding: 1px;
  transition: all linear 0.3s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--primary-hover-color) !important;
}
#scrollUp .scrollprogress .progress-circle {
  transition: stroke-dashoffset 0.5s ease;
}
#scrollUp .arrowup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#scrollUp:hover {
  background: var(--ink) !important;
}
.scrollprogress {
  transform: rotate(-90deg);
}
/* <!--======== Scroll up and prograss css Ends ========--> */
/* toaster css*/
#toast-container > .toast-success {
  background-color: var(--color-success-dark);
  opacity: 1 !important;
  /* background-color: #48fc079f; Custom green */
  color: white;
}
#toast-container > .toast-error {
  background-color: var(--color-danger-dark); /* Custom red */
  color: white;
}
.flight-pesenger-count {
  min-width: 11px !important;
}
/* toaster css end */
.profile_btn_navber {
  background-color: var(--coral);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  transition: var(--transition);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  line-height: 1.5;
  border-radius: 10px;
}
.user-img-fluid {
  width: 30px;
  height: 30px;
  margin-top: 3px;
  border-radius: 50%;
}
/* service css */
.enquiry-btn {
  color: #fffdfd !important;
  background-color: var(--primary-color) !important;
}
.enquiry-btn:hover {
  color: rgb(0, 0, 0) !important;
  background-color: var(--primary-hover-color) !important;
}

/*------------------------------ TOp Booking Box ------------------------------*/
.booking-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.booking-box:hover {
  box-shadow: 5px 5px 8px 8px rgba(0.5, 0.5, 0.5, 0.5) !important;
  transform: translateY(-4px);
}

.booking-box .booking-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  bottom: 0px;
  display: block;
  transition: transform 0.4s ease;
}

.booking-box .booking-img:hover {
  transform: scale(1.1);
}

/* h5 and p overlayed on image */
.booking-box h5,
.booking-box p {
  position: absolute;
  left: 0;
  width: 100%;
  color: var(--ink);
  /* background: rgba(255, 107, 74, 0.16); */
  background: #ffc15e8c;
  margin: 0;
  padding: 5px 0;
  transition: all 0.4s ease;
}

.booking-box h5 {
  bottom: 38px;
  font-size: 20px;
  font-weight: 600;
}

.booking-box p {
  bottom: 0px;
}

/* Animate position on hover */
.booking-box:hover h5 {
  bottom: 73px;
}

.booking-box:hover p {
  bottom: 35px;
}

/* Button initially hidden */
.booking-box .btn {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
  bottom: 0px;
  width: 100%;
  transform: translateX(-50%);
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    bottom 0.4s ease;
  z-index: 2;
  border-radius: 0px;
}

/* Show button on hover */
.booking-box:hover .btn {
  opacity: 1;
  bottom: 0px;
  border-radius: 0px;
  background-color: var(--primary-color) !important;
}

/* .booking-box .btn:hover {
  color: var(--ink);
  background-color: var(--secondary-color) !important;
} */

.cab-img {
  height: 200px;
  object-fit: cover;
}

.other-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.other-card:hover {
  transform: translateY(-7px);
  box-shadow: 10px 10px 10px 25px rgba(0.25, 0.25, 0.25, 0.25);
}

.other-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.other-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.other-text {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.btn-outline-primary {
  border-radius: 50px;
  padding: 0.4rem 1rem;
}

/* @media (max-width: 768px) {
      .cab-img {
        height: 180px;
      }
    } */

/* =========================================================
       HOLIDAY PACKAGE MOSAIC
    ========================================================= */

.holiday-mosaic-section {
  --holiday-gap: 2px;
}

.holiday-mosaic-section .section_heading_center {
  margin-bottom: 25px;
}

.holiday-mosaic-section .section_heading_center h2 {
  font-family: "Fraunces", serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.holiday-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--holiday-gap);
  width: 100%;
}

.holiday-mosaic-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  font-family: "Manrope", sans-serif;
}

.holiday-card-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.holiday-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.03) 35%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.88) 100%
  );
  transition: background 0.4s ease;
}

.holiday-mosaic-card:hover .holiday-card-bg {
  transform: scale(1.06);
}

.holiday-mosaic-card:hover .holiday-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.03) 35%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.94) 100%
  );
}

.holiday-card-top {
  position: absolute;
  top: 13px;
  left: 13px;
  right: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}

.trip-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.holiday-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.holiday-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.holiday-meta i {
  font-size: 8px;
}

.holiday-card-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.holiday-card-description {
  min-width: 0;
}

.holiday-location {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 5px;
}

.holiday-card-description h3 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 94%;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.holiday-card-description p {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  max-width: 90%;
  margin: 6px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.holiday-card-action {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  pointer-events: auto;
}

.holiday-price {
  background: var(--white);
  color: var(--ink);
  border-radius: 100px;
  padding: 7px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 0 1 auto;
}

.holiday-price small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1;
}

.holiday-price strong {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
}

.holiday-book-btn {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  outline: 0;
  padding: 9px 14px;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.holiday-book-btn:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateX(3px);
}

.holiday-book-btn i {
  font-size: 8px;
}

.holiday-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/*------------------------------ holiday package ------------------------------*/
/* Domestic card enhancements old */
.Domestic-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  /* cursor: pointer; */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.Domestic-card:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px 8px 10px rgba(0.5, 0.5, 0.5, 0.5) !important;
}

.Domestic-card:hover .card-img-top {
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

/* Smooth hover zoom for image */
.Domestic-card .card-img-top {
  height: 180px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.Domestic-card .submit-btn {
  color: white;
  background-color: var(--primary-color) !important;
}
.Domestic-card .submit-btn:hover {
  color: var(--ink);
  background-color: var(--primary-hover-color) !important;
}
.Domestic-card .submit-btn-s {
  color: var(--ink);
  background-color: var(--primary-hover-color) !important;
}
.Domestic-card .submit-btn-s:hover {
  color: white;
  background-color: var(--primary-color) !important;
}
/* Testimonials styles live under #testimonials_main_arae at the end of this file */
/* app download start */
.app-box {
  background: linear-gradient(135deg, #c6e0ff, #e9eef5);
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
}

.app-phone {
  max-width: 280px;
  max-height: 330px;
  animation: float 4s ease-in-out infinite;
}

/* floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* app download end */

/* ====================== all enquiry module ===========================*/
.all-enquiry-btn .submit-btn {
  color: var(--ink);
  background-color: var(--primary-hover-color) !important;
}
.all-enquiry-btn .submit-btn:hover {
  color: white;
  background-color: var(--primary-color) !important;
}

.error {
  color: red;
  font-size: 13px;
}

.theme_common_box_two {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.theme_two_box_content {
  flex-grow: 1; /* Makes content stretch to fill card */
}

/*###################### hotel and flight css #########################*/
/* .banner_one_text {
  margin-top: 0px !important;
} */
.toggle-tabs {
  background: #f8f9fa5b;
  padding: 10px;
}

.tab-btn {
  border: none;
  /* background: var(--secondary-light-color); */
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}
.tab-btn.active {
  background: var(--secondary-color);
  color: var(--color-white);
}
.trip-type {
  background-color: var(--primary-light-color);
  border-radius: 50px;
  width: 350px;
}
.trip-btn,
.fare-btn {
  border: none;
  background: var(--color-surface);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.trip-btn.active {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.fare-btn {
  background: var(--secondary-light-color);
  /* background-color: rgb(246, 247, 252); */
}

.fare-btn.active {
  background: var(--secondary-color);
  color: var(--color-white);
}
.tab-content-box {
  max-width: 1080px;
}
.form-check-direct {
  background: white;
  border-color: var(--sun) !important;
}
.input-box {
  /* background: #fff; */
  background: var(--cream) !important;
  border: 1px solid var(--input-border-color);
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 2px 2px 2px 4px #dbe2fb;
}
.input-label {
  display: block;
  font-size: 12px;
  /* color: #777; */
  margin-bottom: 2px;
  text-align: start;
}
.input-box input {
  background: var(--color-surface) !important;
  /* border: 1px solid #f4a261; */
  /* border: none; */
  outline: none;
  font-weight: 600;
  /* color: #000; */
  background: transparent;
}
.input-box input:focus {
  border-color: var(--gold) !important;
  background: var(--color-input-focus-bg) !important;
  box-shadow:
    0 0 0 3px var(--color-input-focus-ring),
    0 1px 4px rgba(15, 25, 35, 0.06) !important;
}
.swap-icon {
  position: absolute;
  top: 50%;
  left: 19%;
  transform: translate(-50%, -50%);
  background: var(--color-surface);
  color: var(--coral);
  border-radius: 50%;
  width: 34px !important;
  height: 34px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light-color);
  box-shadow: 0 2px 6px var(--shadow-color);
  cursor: pointer;
  z-index: 5;
}
.swap-icon-2 {
  left: 27% !important;
}
.swap-icon:hover {
  background: var(--coral);
  color: var(--color-white);
}
.swapped {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  background-color: var(--color-sidebar-active);
  transform: scale(1.05);
}

.rotate {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

/* flight Details Page css */
.noUi-target,
.noUi-base {
  height: 8px !important; /* thinner line */
  border-radius: 5px;
}

.noUi-connect {
  background: orange !important;
  height: 8px !important;
}

/* Circle handles */
.noUi-handle {
  background: orange !important;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  width: 34px; /* slightly larger */
  height: 34px;
  top: 50%; /* center handle vertically */
  transform: translateY(-50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

/* Improve handle alignment inside small containers */
.noUi-horizontal .noUi-handle {
  right: -17px;
}

.flight-page-icon {
  width: 30px;
}

.flight-page-btn {
  transition: all 0.2s ease-in-out;
}

.flight-page-btn:hover {
  transform: translateY(-2px);
  background-color: var(--ocean) !important;
}

.flight-page-btn.active {
  background-color: var(--ocean) !important;
  color: var(--color-white) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 255, 0.15);
}

.card-flight-box {
  border: none !important; /* No visible border */
  border-radius: 1rem; /* Rounded corners */
  background-color: var(--color-section-bg); /* Soft background */
  transition: all 0.3s ease-in-out;
}

.card-flight-box:hover {
  border: 1px solid var(--coral) !important;
  background-color: rgba(255, 107, 74, 0.08); /* Light highlight on hover */
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 14px var(--shadow-color); /* Smooth shadow */
}
.card-flight-box.active {
  border: 2px solid var(--secondary-color) !important;
  background-color: rgba(255, 193, 94, 0.18) !important;
  color: black !important;
  transition: 0.3s;
}

.card-flight-box-sp {
  border: none !important; /* No visible border */
  border-radius: 1rem; /* Rounded corners */
  background-color: var(--color-section-bg); /* Soft background */
  transition: all 0.3s ease-in-out;
}

.card-flight-box-sp:hover {
  border: 1px solid var(--coral) !important;
  background-color: rgba(255, 107, 74, 0.08); /* Light highlight on hover */
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 14px var(--shadow-color); /* Smooth shadow */
}
.card-flight-box-sp.active {
  border: 2px solid var(--secondary-color) !important;
  background-color: rgba(255, 193, 94, 0.18) !important;
  color: black !important;
  transition: 0.3s;
}
/* .card-flight-box:hover {
  border: 2px solid #ff9d00 !important;
  background-color: #f8f9fa;
} */

/* flight booking details page */
.addon-btn {
  min-width: 150px;
  text-align: center;
  margin-right: 10px;
  border-radius: 40px;
  padding: 6px 12px;
}
.addon-btn:hover {
  border: 2px solid black !important;
  background-color: var(--coral) !important;
  color: black !important;
}
.addon-btn.active {
  background-color: var(--coral) !important;
  color: var(--color-text) !important;
}
.baggage-btn:hover {
  background-color: var(--coral) !important;
  color: black !important;
}

.veg-nonveg-img {
  width: 70px;
  height: 65px;
}
/* Remove Flight Button */
.remove-flight {
  width: 28px !important;
  height: 28px;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: var(--coral) !important;
  /* your given yellow/orange */
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-flight i {
  color: white;
  font-size: 14px;
  line-height: 1;
}
.multicity-flight-content .multicity-flight-summary,
.roundtrip-flight .round-flight-summary {
  background-color: var(--secondary-color);
  color: var(--color-text);
  display: none;
  border: 1px solid var(--line-strong);
  bottom: 20px;
  position: fixed;
  width: 50%;
  z-index: 2;
}

/* ===== Responsive ===== */
@media (min-width: 1200px) and (max-width: 1300px) {
  .multicity-flight-content .multicity-flight-summary,
  .roundtrip-flight .round-flight-summary {
    width: 50%;
  }
  .total-next-btn {
    margin-right: 30px;
  }
}
@media (max-width: 1199px) {
  .multicity-flight-content .multicity-flight-summary,
  .roundtrip-flight .round-flight-summary {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .swap-icon {
    top: 80px !important;
    left: 50% !important;
    margin: 0px;
  }
  .multicity-flight-content .multicity-flight-summary,
  .roundtrip-flight .round-flight-summary {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .swap-icon {
    top: 50px;
    left: 50% !important;
    margin: 0px;
  }
  .input-box {
    width: 100%;
  }

  .info-details h6 {
    font-size: 13px;
  }

  .info-details p {
    font-size: 11px;
  }
  .flight-edit-btn {
    font-size: 12px !important;
  }
  /* Sidebar behavior */
  #filterSidebar,
  #spFilterSidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100vh;
    background: var(--color-surface);
    z-index: 1050;
    overflow-y: auto;
    transition: left 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: block;
  }

  #filterSidebar.active,
  #spFilterSidebar.active {
    left: 0;
  }

  /* Dark overlay */
  .filter-overlay,
  .filter-overlay-sp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
    z-index: 1040;
    display: none;
  }

  .filter-overlay.active,
  .filter-overlay-sp.active {
    display: block;
  }

  /* 🔶 Vertical FILTERS tab */
  .filter-tab,
  .filter-tab-sp {
    position: fixed;
    top: 40%;
    left: 0;
    background: var(--coral);
    color: var(--color-text);
    font-weight: 700;
    padding: 10px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    width: 32px !important;
    height: 80px;
  }

  /* .filter-tab, .filter-tab-sp i {
    transform: rotate(180deg);
    font-size: 1rem;
  } */

  /* Hover effect */
  .filter-tab:hover,
  .filter-tab-sp:hover {
    background: var(--coral-dark);
  }
}
@media (max-width: 667px) {
  #filterSidebar,
  #spFilterSidebar {
    width: 70%;
  }
}

/* ===== New Index page CSS ===== */
/* Verified badge (custom, not IG's) */
.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  margin-left: 6px;
}

.verified::after {
  content: "✓";
}

/* PROFILE HEADER — mimics IG profile */
.profile-section {
  padding: 50px 0 40px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.avatar-wrap {
  display: flex;
  justify-content: center;
  padding: 8px;
}

.avatar-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--story-ring);
  padding: 4px;
  position: relative;
}

.avatar-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--off-white);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--coral) 0%,
    var(--sun) 60%,
    var(--ocean) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 96px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 1;
}

.live-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  border: 2px solid var(--off-white);
}

.profile-info {
  padding-top: 12px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.profile-handle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.profile-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-book {
  background: var(--coral);
  color: var(--white);
  padding: 10px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-book::after {
  content: "↗";
}

.btn-follow {
  background: var(--ink);
  color: var(--white);
  padding: 10px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
}

.btn-message {
  background: var(--white);
  color: var(--ink);
  padding: 10px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
}

.btn-icon {
  background: var(--white);
  color: var(--ink);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
}

.profile-name {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.profile-name .italic {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.profile-bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 520px;
}

.profile-bio b {
  font-weight: 700;
}

.profile-bio .handle-link {
  color: var(--ocean);
  font-weight: 600;
}

.profile-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.profile-meta .link {
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
}

.profile-meta .pin::before {
  content: "📍 ";
}

.profile-stats {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.stat {
  font-size: 15px;
}

.stat b {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline;
}

.stat span {
  color: var(--grey);
  font-weight: 600;
}

/* HIGHLIGHTS — story circles that are actually trip previews */
.highlights-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.highlights-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.highlights-see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
}

.highlights-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-behavior: smooth;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.highlight-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--story-ring);
  padding: 3px;
  position: relative;
}

.highlight-circle::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--off-white);
  z-index: 1;
}

.highlight-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1;
}

.highlight-inner .price-chip {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0;
  border: 2px solid var(--off-white);
}

.highlight-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.highlight-label .sub {
  display: block;
  color: var(--grey);
  font-weight: 500;
  font-size: 11px;
}

/* Highlight colours per destination — built from theme tokens */
.h-bali .highlight-inner {
  background: linear-gradient(135deg, var(--coral), var(--sun));
}

.h-peru .highlight-inner {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
}

.h-iceland .highlight-inner {
  background: linear-gradient(135deg, var(--ocean), var(--sage));
}

.h-japan .highlight-inner {
  background: linear-gradient(135deg, var(--sakura), var(--sun));
}

.h-portugal .highlight-inner {
  background: linear-gradient(135deg, var(--ocean), var(--ink-2));
  color: var(--off-white);
}

.h-morocco .highlight-inner {
  background: linear-gradient(135deg, var(--sun), var(--coral));
}

.h-vietnam .highlight-inner {
  background: linear-gradient(135deg, var(--sage), var(--ocean));
}

.h-georgia .highlight-inner {
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
}

.h-add .highlight-circle {
  background: var(--white);
  border: 1px dashed var(--line-strong);
  padding: 0;
}

.h-add .highlight-circle::before {
  display: none;
}

.h-add .highlight-inner {
  background: var(--white);
  color: var(--grey);
  font-size: 32px;
  font-weight: 300;
  font-family: "Manrope", sans-serif;
  font-style: normal;
}

/* TAB BAR — like IG tabs */
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 12px;
  margin-bottom: -21px;
  border-top: 2px solid transparent;
  padding-top: 12px;
}

.tab.active {
  color: var(--ink);
  border-top-color: var(--ink);
}

.tab .count {
  background: var(--coral);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0;
}

/* FEED GRID */
.feed-section {
  padding-bottom: 60px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--white);
}

.tile.trip {
  color: var(--white);
}

.tile.trip::before {
  content: "TRIP";
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  z-index: 2;
}

.tile.post::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><rect x='4' y='4' width='16' height='16' rx='2'/><rect x='9' y='9' width='16' height='16' rx='2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.tile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.tile-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.tile-icons {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.tile-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 6px;
}

.tile-body {
  margin-top: auto;
}

.tile-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}

.tile-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 36px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.tile-title .italic {
  font-style: italic;
  font-weight: 400;
}

.tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.tile-price {
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.tile-price .from {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: -2px;
}

.tile-book {
  background: var(--coral);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Tile backgrounds */
.t-bali {
  background: linear-gradient(155deg, #ff6b4a 0%, #ffa347 55%, #ffc15e 100%);
}

.t-peru {
  background: linear-gradient(145deg, #c46a34 0%, #8f3e2a 100%);
}

.t-iceland {
  background: linear-gradient(155deg, #b8d4dc 0%, #6ba3b0 60%, #3d6e7a 100%);
}

.t-japan {
  background: linear-gradient(155deg, #f0b8c4 0%, #e88b9e 100%);
  color: #3d2530;
}

.t-japan .tile-price {
  background: #3d2530;
  color: #f0b8c4;
}

.t-portugal {
  background: linear-gradient(155deg, #2b6e9a 0%, #1f4b6e 100%);
}

.t-morocco {
  background: linear-gradient(155deg, #d4a24c 0%, #b8543d 60%, #8f3e2a 100%);
}

.t-vietnam {
  background: linear-gradient(155deg, #5f9e6b 0%, #2b5f5f 100%);
}

/* Content post tiles */
.p-packing {
  background: linear-gradient(155deg, #2a2d38 0%, #12141b 100%);
}

.p-lisbon {
  background: linear-gradient(155deg, #f5e6c8 0%, #ebd9b0 100%);
  color: #3d2530;
}

.p-cost {
  background: linear-gradient(155deg, #eae7da 0%, #d4d3c4 100%);
  color: #12141b;
}

.p-content-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-caption {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
}

.post-icons {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
}

.post-icons .heart::before {
  content: "♡ ";
  font-size: 13px;
}

.post-icons .comment::before {
  content: "💬 ";
  font-size: 11px;
}

/* SEARCH SECTION — styled as a big "post" */
.search-section {
  padding: 40px 0 50px;
}

.search-post {
  background: var(--ink);
  /* color: var(--off-white); */
  border-radius: 20px;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}

.search-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-post-header .mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}

.search-post-header .who {
  display: flex;
  flex-direction: column;
}

.search-post-header .who .handle {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.search-post-header .who .time {
  font-size: 12px;
  color: rgba(250, 250, 245, 0.5);
  font-weight: 500;
}

.search-post-header .pin {
  margin-left: auto;
  background: var(--coral);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-post-body {
  padding: 35px 35px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  text-align: center;
}

.search-post-body h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.search-post-body h2 .italic {
  font-style: italic;
  color: var(--sun);
  font-weight: 400;
}

.search-post-body p {
  font-size: 16px;
  color: rgba(250, 250, 245, 0.7);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-tab {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 250, 245, 0.7);
  padding: 10px 20px;
  border: none;
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-tab.active {
  background: var(--coral);
  color: var(--white);
}

.search-panel {
  background: var(--white);
  color: var(--ink);
  padding: 8px;
  border-radius: 100px;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.search-field {
  padding: 10px 20px;
  border-right: 1px solid var(--line);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 2px;
}

.search-field .input {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.search-btn {
  background: var(--coral);
  color: var(--white);
  padding: 16px 28px;
  border: none;
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-post-footer {
  padding: 16px 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 250, 245, 0.7);
  font-weight: 600;
}

.search-post-footer .actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.search-post-footer .likes {
  font-weight: 700;
  color: var(--off-white);
}

/* STORY */
.story-section {
  padding: 40px 0;
  /* background: var(--white); */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.story-left {
  background: linear-gradient(155deg, var(--coral) 0%, var(--sun) 100%);
  color: var(--white);
  padding: 6px 6px;
  border-radius: 10px;
  /* aspect-ratio: 1; */
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.story-left img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-left .quote-mark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 160px;
  line-height: 0.8;
  opacity: 0.4;
}

.story-left .pull-quote {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-left .attribution {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.9;
}

.story-right .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.story-right h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}

.story-right h2 .italic {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.story-right p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 16px;
}

.story-right p b {
  font-weight: 700;
  opacity: 1;
}

.press-row {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.press-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 800;
  margin-bottom: 16px;
  display: block;
}

.press-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: baseline;
}

.press-logo {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.press-logo:nth-child(2n) {
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
}

/* CTA — styled as a subscribe post */
.cta-section {
  padding: 100px 0;
  background: var(--off-white);
}

.cta-post {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cta-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.cta-post-header .mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}

.cta-post-header .who {
  display: flex;
  flex-direction: column;
}

.cta-post-header .who .handle {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.cta-post-header .who .time {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
}

.cta-post-body {
  padding: 40px 32px;
  text-align: center;
  background: linear-gradient(155deg, var(--sun) 0%, var(--coral) 100%);
  color: var(--white);
}

.cta-post-body h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-post-body h2 .italic {
  font-style: italic;
  font-weight: 400;
}

.cta-post-body p {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 24px;
}

.cta-form {
  display: flex;
  background: var(--white);
  border-radius: 100px;
  padding: 4px;
  max-width: 380px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.cta-form input:focus {
  outline: none;
}

.cta-form button {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-post-footer {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--grey);
  font-weight: 600;
}

.cta-post-footer .likes {
  color: var(--ink);
  font-weight: 700;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--off-white);
  padding: 10px 0 10px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  font-size: 24px;
}

.footer-brand .dot {
  color: var(--coral);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(250, 250, 245, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.powered {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.55);
  font-weight: 700;
}

.powered .biz {
  color: var(--brand-coral);
  font-weight: 800;
}

/* =========================================================
   TESTIMONIALS — scoped to #testimonials_main_arae
   ========================================================= */
.testimonials_view_more .view-more {
  background-color: var( --coral-dark) !important;
  color: var(--ink) !important;
  padding: 10px 20px 10px 20px !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: 2px solid var(--sun) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.testimonials_view_more .view-more:hover {
  background-color: var(--coral) !important;
  transform: scale(1.05) !important;
  box-shadow: 5px 5px 5px 5px rgba(0.4, 0.4, 0.4, 0.4);
  text-decoration: none !important;
  border: 2px solid var(--sun) !important;
}
#testimonials_main_arae {
  --testimonial-bg: #fcfaf7;
  --testimonial-dark: #121820;
  --testimonial-orange: #f4511e;
  --testimonial-text: #202633;
  --testimonial-muted: #555b66;
  --testimonial-border: #e9e5df;
  --testimonial-light-orange: #fff3e9;
  --testimonial-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --testimonial-sans: "Manrope", Arial, Helvetica, sans-serif;
  background: var(--testimonial-bg);
  /* padding: 90px 0 100px !important; */
  font-family: var(--testimonial-sans);
}

#testimonials_main_arae .tm-heading {
  text-align: center;
  margin-bottom: 48px;
}

#testimonials_main_arae .tm-eyebrow {
  margin: 0 0 14px;
  color: var(--testimonial-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--testimonial-sans);
}

#testimonials_main_arae .tm-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

#testimonials_main_arae .tm-heading-divider span {
  display: block;
  width: 42px;
  height: 1.5px;
  background: var(--testimonial-orange);
}

#testimonials_main_arae .tm-heading-divider i {
  color: var(--testimonial-orange);
  font-size: 11px;
  line-height: 1;
}

#testimonials_main_arae .tm-title {
  margin: 0 0 16px;
  color: var(--testimonial-dark);
  font-family: var(--testimonial-serif);
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

#testimonials_main_arae .tm-title em {
  color: var(--testimonial-orange);
  font-style: italic;
  font-weight: 400;
  font-family: var(--testimonial-serif);
}

#testimonials_main_arae .tm-subtitle {
  margin: 0 auto;
  max-width: 620px;
  color: var(--testimonial-muted);
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--testimonial-sans);
}

#testimonials_main_arae .tm-cards {
  align-items: flex-start;
}

#testimonials_main_arae .tm-cards > [class*="col-"] {
  align-self: flex-start;
}

#testimonials_main_arae .tm-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid var(--testimonial-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 24, 32, 0.05);
  padding: 28px 26px 22px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#testimonials_main_arae .tm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 24, 32, 0.08);
}

#testimonials_main_arae .tm-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

#testimonials_main_arae .tm-quote {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--testimonial-light-orange);
  color: var(--testimonial-orange);
  font-size: 18px;
}

#testimonials_main_arae .tm-meta {
  text-align: right;
  min-width: 0;
}

#testimonials_main_arae .tm-date {
  color: var(--testimonial-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--testimonial-sans);
}

#testimonials_main_arae .tm-stars {
  display: flex;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 6px;
}

#testimonials_main_arae .tm-stars i {
  font-size: 13px;
  line-height: 1;
}

#testimonials_main_arae .tm-star-filled {
  color: var(--testimonial-orange);
}

#testimonials_main_arae .tm-star-empty {
  color: #e8c4b5;
}

#testimonials_main_arae .tm-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

#testimonials_main_arae .tm-avatar {
  width: 100px;
  height: 100px;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(18, 24, 32, 0.12);
  background: var(--testimonial-light-orange);
}

#testimonials_main_arae .tm-profile-info {
  min-width: 0;
}

#testimonials_main_arae .tm-name {
  margin: 0 0 4px;
  color: var(--testimonial-dark);
  font-family: var(--testimonial-serif);
  /* font-size: 28px; */
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
}

#testimonials_main_arae .tm-designation {
  margin: 0 0 10px;
  color: var(--testimonial-muted);
  font-size: 18px;
  line-height: 1.35;
  font-family: var(--testimonial-sans);
}

#testimonials_main_arae .tm-name-line {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--testimonial-orange);
}

#testimonials_main_arae .tm-message {
  flex: 1 1 auto;
  margin: 0 0 15px;
  color: var(--testimonial-text);
  font-size: 17px;
  line-height: 24px;
  font-family: var(--testimonial-sans);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#testimonials_main_arae .tm-message.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

#testimonials_main_arae .tm-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--testimonial-border);
}

#testimonials_main_arae .tm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--testimonial-orange);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--testimonial-sans);
  line-height: 1;
  box-shadow: none;
}

#testimonials_main_arae .tm-read-more:hover {
  color: #d84315;
}

#testimonials_main_arae .tm-read-more-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--testimonial-light-orange);
  color: var(--testimonial-orange);
  font-size: 13px;
}

#testimonials_main_arae .tm-read-more-arrow {
  font-size: 13px;
}

#testimonials_main_arae .tm-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

#testimonials_main_arae .tm-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 390px;
  height: 80px;
  background: var(--testimonial-dark);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(18, 24, 32, 0.18);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

#testimonials_main_arae .tm-view-all:hover {
  color: #ffffff;
  background: #1b232c;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 24, 32, 0.22);
}

#testimonials_main_arae .tm-view-all-icon,
#testimonials_main_arae .tm-view-all > .fa-arrow-right {
  color: var(--testimonial-orange);
  font-size: 18px;
}

#testimonials_main_arae .tm-view-all-text {
  color: #ffffff;
  font-family: var(--testimonial-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1199px) {
  #testimonials_main_arae .tm-avatar {
    width: 110px;
    height: 110px;
  }

  #testimonials_main_arae .tm-name {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  #testimonials_main_arae {
    padding: 72px 0 80px !important;
  }

  #testimonials_main_arae .tm-heading {
    margin-bottom: 36px;
  }

  #testimonials_main_arae .tm-card {
    padding: 24px 22px 20px;
  }

  #testimonials_main_arae .tm-avatar {
    width: 100px;
    height: 100px;
  }

  #testimonials_main_arae .tm-name {
    font-size: 22px;
  }

  #testimonials_main_arae .tm-designation {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  #testimonials_main_arae {
    padding: 56px 0 64px !important;
  }

  #testimonials_main_arae .tm-title {
    font-size: 30px;
  }

  #testimonials_main_arae .tm-subtitle {
    font-size: 15px;
    padding: 0 8px;
  }

  #testimonials_main_arae .tm-card {
    padding: 22px 18px 18px;
  }

  #testimonials_main_arae .tm-quote {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  #testimonials_main_arae .tm-date {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  #testimonials_main_arae .tm-profile {
    gap: 14px;
  }

  #testimonials_main_arae .tm-avatar {
    width: 88px;
    height: 88px;
  }

  #testimonials_main_arae .tm-name {
    font-size: 22px;
  }

  #testimonials_main_arae .tm-designation {
    font-size: 15px;
  }

  #testimonials_main_arae .tm-message {
    font-size: 16px;
    line-height: 1.8;
  }

  #testimonials_main_arae .tm-view-all {
    width: 100%;
    max-width: 390px;
    height: 70px;
    gap: 12px;
  }

  #testimonials_main_arae .tm-view-all-text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  #testimonials_main_arae .tm-card-top {
    margin-bottom: 18px;
  }

  #testimonials_main_arae .tm-profile {
    align-items: flex-start;
  }

  #testimonials_main_arae .tm-avatar {
    width: 80px;
    height: 80px;
  }

  #testimonials_main_arae .tm-view-all-wrap {
    margin-top: 28px;
    padding: 0 8px;
  }
}
