/* Overwrite style css */
section#controller_area {
  padding: 0 !important;
}

.color-secondary {
  color: #f59e0b;
}
/* Hero */

section.home-content h1 {
  text-align: left;
}

.main-menu-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#user-navbar .default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2f6df6 0%, #1f5be8 100%);
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(47, 109, 246, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 18px 36px;
}

#user-navbar .default span {
  color: #fff;
}

.login-nav-btn {
  min-width: 200px;
}

/* theme color #1252E9 */
/* ============================================================
   AllTimate — Modern Theme  (modern-theme.css)
   Layered on top of the existing Flynax template.
   Load AFTER the template's own stylesheet so it wins.
   Grows one section per converted .tpl file.
   ------------------------------------------------------------
     1. Design tokens   2. Base typography   3. Header
   ============================================================ */

/* ---------------------------------------------------------- *
 * 1. DESIGN TOKENS
 * ---------------------------------------------------------- */

/* ---------------------------------------------------------- *
 * 2. BASE TYPOGRAPHY
 * Optional site-wide font. Comment out `body` if you only want
 * to restyle specific sections rather than the whole site.


/* ---------------------------------------------------------- *
 * 3. HEADER  (single modern bar: logo | nav | actions)
 * ---------------------------------------------------------- */
.at-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--at-bg);
  border-bottom: 1px solid var(--at-border);
  box-shadow: var(--at-shadow-sm);
}
.at-header .at-bar {
  max-width: var(--at-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

/* logo (left) */
.at-header .at-logo {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.at-header .at-logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* primary nav (centered) — .main-menu > .menu > ul from main_menu.tpl */
.at-header .at-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.at-header .menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.at-header .menu li {
  list-style: none;
  position: relative;
}
.at-header .menu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--at-ink);
  text-decoration: none;
  border-radius: var(--at-radius-sm);
  transition:
    color 0.15s,
    background 0.15s;
}
.at-header .menu a:hover {
  color: var(--at-primary);
}
.at-header .menu li.active > a,
.at-header .menu li.selected > a,
.at-header .menu li.current > a {
  color: var(--at-primary);
}
.at-header .menu li.active > a::after,
.at-header .menu li.selected > a::after,
.at-header .menu li.current > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--at-primary);
}

/* dropdown caret on menu items that have a submenu (e.g. "Services") */
.at-header .menu li:has(> ul) > a::after,
.at-header .menu li.has-sub > a::after,
.at-header .menu li.parent > a::after,
.at-header .menu li.sub > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}

/* user actions (right): language selector + user navbar + hook */
.at-header .at-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.at-header .at-actions .fright {
  float: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.at-header .at-actions [class*="lang"] {
  font-size: 14px;
}

/* sign-in / login -> outlined pill (selectors finalize with user_navbar.tpl) */
.at-header .at-actions a.login,
.at-header .at-actions a.signin,
.at-header .at-actions a.sign-in,
.at-header .at-actions .login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--at-primary);
  color: var(--at-primary);
  font-weight: 600;
  border-radius: var(--at-radius-pill);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.at-header .at-actions a.login:hover,
.at-header .at-actions a.signin:hover,
.at-header .at-actions a.sign-in:hover,
.at-header .at-actions .login-link:hover {
  background: var(--at-primary);
  color: #fff;
}

/* responsive — mobile nav toggle comes from main_menu.tpl + template JS */
@media (max-width: 980px) {
  .at-header .at-bar {
    gap: 16px;
    padding: 12px 16px;
  }
  .at-header .at-logo img {
    height: 34px;
  }
}

/* ---------------------------------------------------------- *
 * 4. HOME HERO  (home content tpl)
 * The dynamic home image (#home_content_image_container) is
 * stretched to a full-width cover background; heading + trust
 * sit on the left, the search box (#home_content_search_form)
 * on the right. Works whether Flynax applies the image as a CSS
 * background on the container OR swaps the inner <img> source.
 * ---------------------------------------------------------- */
.at-hero {
  position: relative;
  width: 100%;
  text-align: left;
}
.at-hero .at-hero-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #eef3f8;
}

/* dynamic image fills the stage */
.at-hero .at-hero-media {
  position: absolute !important;
  inset: 0;
  float: none;
  margin: 0;
  padding: 0;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  background-color: #dbe7f6; /* fallback tint if no home image is set */
}
.at-hero .at-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* left-to-right white scrim keeps the heading readable over any photo */
.at-hero .at-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(18, 82, 233, 0.7) 55%,
    rgba(15, 23, 42, 0.55) 100%
  );
}

/* overlay content sits above the image */
.at-hero .at-hero-overlay {
  max-width: 1400px !important;
  position: relative;
  z-index: 2;
  max-width: var(--at-container);
  margin: 0 auto;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px 30px;
}

/* left: heading + trust */
.at-hero .at-hero-text {
  flex: 1 1 0;
  max-width: 540px;
}
.at-hero .at-hero-text h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
}
.at-hero .at-hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--at-text);
  font-weight: 500;
  max-width: 320px;
}
.at-hero .at-hero-check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--at-primary);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.at-hero .at-hero-check svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* right: search box card (inner form modernised when we restyle side_bar_search.tpl) */
.at-hero .at-hero-search {
  flex: 0 0 500px;
  max-width: 500px;
  float: none;
  background: #dbe0ee;
  border-radius: 16px;
  box-shadow: var(--at-shadow-lg);
  padding: 6px;
}

@media (max-width: 900px) {
  .at-hero .at-hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.93) 6%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 0.25)
    );
  }
  .at-hero .at-hero-stage {
    min-height: 0;
  }
  .at-hero .at-hero-overlay {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    gap: 22px;
    padding: 32px 18px;
  }
  .at-hero .at-hero-text {
    max-width: none;
  }
  .at-hero .at-hero-search {
    flex: 1 1 auto;
    max-width: none;
  }
}

/* Badge pill */
.at-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.2px;
}

.at-hero-badge svg {
  stroke: #f59e0b;
  fill: #f59e0b;
  flex-shrink: 0;
}

/* H1 */
.at-hero-h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: none;
}

/* Orange highlighted words */
.at-hero-highlight {
  color: #f59e0b;
}

/* Subtitle paragraph */
.at-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 32px 0;
}

/* Trust line — hide since subtitle replaces it on desktop */
.at-hero-trust {
  display: none;
}

/* Stats row */
.at-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
}

.at-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.at-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  margin-right: 32px;
  flex-shrink: 0;
}

.at-hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.at-hero-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 767px) {
  .at-hero-h1 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .at-hero-stats {
    margin-top: 24px;
  }

  .at-hero-stat {
    padding-right: 18px;
  }

  .at-hero-stat-divider {
    margin-right: 18px;
  }

  .at-hero-stat-num {
    font-size: 20px;
  }
}

/* Search form */
/* ============================================================
   Search Form — Modern Restyle
   Primary: #1258F0
   ============================================================ */

/* Card wrapper */
.at-hero-search {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(18, 88, 240, 0.15);
}

/* Search Listings title */
.at-hero-search section.side_block_search::before {
  content: "Search Listings";
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  font-family: "Roboto Condensed", sans-serif;
}

/* Tabs — pill style */
.at-hero-search ul.search_tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  height: auto;
  margin-bottom: 20px;
  padding: 0;
}

.at-hero-search ul.search_tabs > li {
  height: auto;
  float: none;
  display: inline-flex;
}

.at-hero-search ul.search_tabs > li > a {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border: none;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: normal;
  height: auto;
  box-shadow: none;
}

.at-hero-search ul.search_tabs > li.active > a {
  background: #1258f0;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(18, 88, 240, 0.3);
}

.at-hero-search ul.search_tabs > li:not(.active) > a:hover {
  background: #f1f5f9;
  color: #1258f0;
}

/* Hide field labels */
.at-hero-search .search-item > .field {
  display: none;
}

/* All inputs and selects */
.at-hero-search input[type="text"],
.at-hero-search select {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  font-family: "Roboto Condensed", sans-serif;
}

.at-hero-search input[type="text"]:focus,
.at-hero-search select:focus {
  border-color: #1258f0;
  background: #ffffff;
  outline: none;
}

.at-hero-search input[type="text"]:hover,
.at-hero-search select:hover {
  border-color: #94a3b8;
}

.at-hero-search input[type="text"]::placeholder {
  color: #94a3b8;
}

/* Search items spacing */
.at-hero-search .search-item {
  padding-bottom: 12px;
}

.at-hero-search .search-item:last-child {
  padding-bottom: 0;
}

/* Price fields side by side */
.at-hero-search .search-item.three-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.at-hero-search .search-item.three-field input[type="text"] {
  flex: 1;
  width: auto;
}

.at-hero-search .search-item.three-field > span {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  padding: 0;
  flex-shrink: 0;
}

/* Radio / checkbox offer type */
.at-hero-search .search-item.checkbox-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.at-hero-search .search-item.checkbox-field .custom-input {
  width: auto;
  padding: 0;
}

.at-hero-search .search-item.checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #f8fafc;
}

.at-hero-search .search-item.checkbox-field label:hover {
  border-color: #1258f0;
  color: #1258f0;
  background: #eef3fe;
}

.at-hero-search .search-item.checkbox-field input[type="radio"]:checked + label,
.at-hero-search
  .search-item.checkbox-field
  label:has(input[type="radio"]:checked) {
  background: #eef3fe;
  border-color: #1258f0;
  color: #1258f0;
}

/* With pictures checkbox */
.at-hero-search .search-item > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.at-hero-search .search-item > label input[type="checkbox"] {
  opacity: 1 !important;
  position: static !important;
  width: 16px !important;
  height: 16px !important;
  accent-color: #1258f0;
  cursor: pointer;
}

/* Submit button */
.at-hero-search .search-button {
  padding-top: 16px;
}

.at-hero-search .search-button input[type="submit"] {
  width: 100%;
  height: 52px;
  background: #1258f0;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-family: "Roboto Condensed", sans-serif;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(18, 88, 240, 0.35);
}

.at-hero-search .search-button input[type="submit"]:hover {
  background: #0d46d4;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(18, 88, 240, 0.4);
}

/* Advanced search link */
.at-hero-search .search-button a {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #1258f0;
  text-decoration: none;
  font-weight: 500;
}

.at-hero-search .search-button a:hover {
  text-decoration: underline;
}

/* Multicat select */
.at-hero-search select.multicat {
  width: 100%;
}

.at-hero-search select.disabled,
.at-hero-search select[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f1f5f9;
}

/* Override home_content label color for this form */
#home_content_search_form section.side_block_search div.field,
#home_content_search_form .search-item span.divider,
#home_content_search_form section.side_block_search label {
  color: #475569;
}
/* ── Modern listing card ───────────────────────────── */
.lc-card {
  border-radius: 20px;
  border: 1.5px solid #e8e8e8;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  list-style: none;
  padding: 0;
}
.lc-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.lc-card.featured-premium {
  border: 2px solid #bcd4f5;
}

/* Full-card link */
a.lc-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

/* Photo */
.lc-photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 200px;
  margin: 0;
  padding: 0;
}
.lc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.35s ease;
}
.lc-card:hover .lc-photo img {
  transform: scale(1.04);
}

/* Badge row */
.lc-badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}
.lc-price {
  background: #f59e0b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.lc-type {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.lc-type--sale {
  background: #fff;
  color: #1d4ed8;
}
.lc-type--rent {
  background: #10b981;
  color: #fff;
}

/* Verified */
.lc-verified {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
}

/* Premium */
.lc-premium {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Favourite */
.lc-fav {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  pointer-events: all;
  cursor: pointer;
}
.lc-fav .icon::before {
  content: "♡";
  color: #aaa;
  font-size: 15px;
  line-height: 1;
}
.lc-fav.active .icon::before,
.lc-fav.selected .icon::before {
  content: "♥";
  color: #e24b4a;
}

/* Body */
.lc-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.lc-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
}
.lc-loc svg {
  color: #f59e0b;
  flex-shrink: 0;
}

/* Specs */
.lc-specs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lc-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #555;
}
.lc-spec svg {
  color: #888;
  flex-shrink: 0;
}

/* Equal height cards in the grid */
ul.featured-list,
.featured-items-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

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

a.lc-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.lc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Latest Listings Section ───────────────────────── */
.ll-section {
  padding: 70px 30px 70px 30px;
  background: #f8fafc;
  margin: 0 auto;
  max-width: 1400px !important;
}

.ll-header {
  text-align: center;
  margin-bottom: 28px;
}

.ll-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ll-title {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin: 0 0 6px;
  line-height: 1.2;
}

.ll-subtitle {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Equal height card grid */
.ll-section ul.features-list,
.ll-section ul.featured-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: stretch !important;
}

.ll-section ul.features-list > li,
.ll-section ul.featured-list > li {
  flex: 1 1 calc(25% - 20px) !important;
  min-width: 220px !important;
  max-width: calc(25% - 20px) !important;
  display: flex !important;
  flex-direction: column !important;
}

@media (max-width: 992px) {
  .ll-section ul.features-list > li,
  .ll-section ul.featured-list > li {
    flex: 1 1 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
  }
}

@media (max-width: 576px) {
  .ll-section ul.features-list > li,
  .ll-section ul.featured-list > li {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .ll-title {
    font-size: 22px;
  }
}
ul.ll-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: stretch !important;
}

ul.ll-grid > .lc-card {
  flex: 1 1 calc(33.333% - 20px) !important;
  max-width: calc(33.333% - 20px) !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

ul.ll-grid > .lc-card a.lc-card-link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  height: 100% !important;
}

ul.ll-grid > .lc-card .lc-photo {
  flex-shrink: 0 !important;
  height: 200px !important;
}

ul.ll-grid > .lc-card .lc-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

ul.ll-grid > .lc-card .lc-specs {
  margin-top: auto !important;
}

@media (max-width: 992px) {
  ul.ll-grid > .lc-card {
    flex: 1 1 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
  }
}

@media (max-width: 576px) {
  ul.ll-grid > .lc-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
/* ── Browse by Category ── */
.bc-section {
  padding: 70px 30px 70px 30px;
  max-width: 1400px !important;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.bc-header {
  margin-bottom: 48px;
}

.bc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid #d8dbe8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #5b5fcf;
  background: #f4f5fd;
  margin-bottom: 18px;
}

.bc-pill i {
  font-size: 13px;
  color: #5b5fcf;
}

.bc-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d1240;
  margin: 0 0 10px;
  line-height: 1.2;
}

.bc-subtitle {
  font-size: 15px;
  color: #7a7f99;
  margin: 0;
}

/* Grid */
.bc-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.bc-card {
  display: flex;
  text-decoration: none !important;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: calc(100% / 6);
  min-width: 130px;
  padding: 24px 12px;
  text-decoration: none;
  border-radius: 16px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.bc-card:hover {
  background: #f7f8fc;
  transform: translateY(-3px);
}

/* Icon bubbles */
.bc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.bc-icon--blue {
  background: #e8eef9;
  color: #3a5fcf;
}
.bc-icon--amber {
  background: #fef3e2;
  color: #f59e0b;
}
.bc-icon--teal {
  background: #e2f5ee;
  color: #1fa67a;
}
.bc-icon--purple {
  background: #f0eafc;
  color: #7c4fd4;
}
.bc-icon--red {
  background: #fde9e9;
  color: #d44040;
}
.bc-icon--cyan {
  background: #e3f5fc;
  color: #1aa0c8;
}

/* Labels */
.bc-label {
  font-size: 15px;
  font-weight: 600;
}

.bc-label--blue {
  color: #3a5fcf;
}
.bc-label--amber {
  color: #f59e0b;
}
.bc-label--teal {
  color: #1a8f68;
}
.bc-label--purple {
  color: #7c4fd4;
}
.bc-label--red {
  color: #d44040;
}
.bc-label--cyan {
  color: #1aa0c8;
}

/* Count */
.bc-count {
  font-size: 13px;
  color: #9a9db5;
}

/* Responsive */
@media (max-width: 768px) {
  .bc-grid {
    gap: 8px;
  }
  .bc-card {
    width: calc(100% / 3);
  }
  .bc-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .bc-card {
    width: calc(100% / 2);
  }
}
/* ── Why Choose Section ── */
.wc-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 30px 100px 72px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.wc-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.wc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #e8edfd;
  color: #2f54eb;
  font-size: 13px;
  font-weight: 600;
}

.wc-pill i {
  font-size: 13px;
}

.wc-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f1b3d;
  margin: 20px 0 14px;
}

.wc-title-accent {
  color: #2f54eb;
}

.wc-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

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

.wc-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  padding: 28px 26px 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.wc-card:hover {
  transform: translateY(-4px);
  border-color: #e2e6ef;
  box-shadow: 0 12px 30px rgba(15, 27, 61, 0.08);
}

.wc-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.wc-icon--blue {
  background: #e8ecfd;
  color: #2f54eb;
}
.wc-icon--amber {
  background: #fef0d6;
  color: #f59e0b;
}
.wc-icon--teal {
  background: #dcf4ea;
  color: #10b981;
}
.wc-icon--purple {
  background: #f0e8fc;
  color: #8b5cf6;
}

.wc-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1b3d;
  margin: 0 0 12px;
}

.wc-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

/* responsive */
@media (max-width: 1024px) {
  .wc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .wc-grid {
    grid-template-columns: 1fr;
  }
  .wc-title {
    font-size: 30px;
  }
}
/* ── Testimonials Section ── */
.tm-section {
  background: #f8fafc;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
}

.tm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}

.tm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fdeccd;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 600;
}

.tm-pill i {
  font-size: 13px;
}

.tm-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f1b3d;
  margin: 18px 0 8px;
}

.tm-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* social proof (right) */
.tm-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tm-avatars {
  display: flex;
}

.tm-avatar-stack {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 2px 6px rgba(15, 27, 61, 0.12);
}

.tm-avatar-stack:first-child {
  margin-left: 0;
}

.tm-proof {
  line-height: 1.3;
}

.tm-stars i {
  color: #f59e0b;
  font-size: 15px;
}

.tm-proof-count {
  display: block;
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* cards */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tm-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 27, 61, 0.08);
}

.tm-card--featured {
  background: linear-gradient(160deg, #eef2fe 0%, #f6f8ff 100%);
  border-color: #d4ddfb;
}

.tm-card-stars i {
  color: #f59e0b;
  font-size: 16px;
  margin-right: 2px;
}

.tm-quote {
  color: #c7d2fe;
  font-size: 34px;
  margin: 18px 0 10px;
}

.tm-quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 26px;
  flex-grow: 1;
}

.tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tm-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tm-author-meta {
  display: flex;
  flex-direction: column;
}

.tm-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f1b3d;
}

.tm-author-role {
  font-size: 13px;
  color: #8a93a6;
  margin-top: 2px;
}

/* responsive */
@media (max-width: 1024px) {
  .tm-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .tm-header {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .tm-title {
    font-size: 30px;
  }
  .tm-header-right {
    width: 100%;
  }
}

/* ── CTA Section ── */
.cta-section {
  max-width: 1400px !important;
  margin: 0 auto;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8, 22, 56, 0.9) 0%,
    rgba(19, 46, 116, 0.82) 45%,
    rgba(28, 72, 200, 0.74) 100%
  );
  z-index: 0;
}

.cta-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 56px 60px;
  overflow: hidden;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.cta-pill i {
  color: #f5a623;
  font-size: 13px;
}

.cta-title {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin: 22px 0 18px;
}

.cta-title-accent {
  color: #f5a623;
}

.cta-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 0 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #f5a623;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
}

.cta-btn:hover {
  background: #e6951a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.45);
  color: #fff;
}

.cta-btn i {
  font-size: 14px;
}

/* responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 44px 28px;
  }
  .cta-title {
    font-size: 36px;
  }
  .cta-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 30px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Footer ── */
.page-footer {
  background: #0b1120 !important;
  padding: 64px 0 28px;
  color: #9aa3b5;
}

.page-footer .point1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.ft-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* brand */
.ft-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ft-logo img {
  height: 40px; /* adjust to taste */
  width: auto;
  display: block;
}

.ft-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #8a93a6;
  margin: 20px 0 24px;
  max-width: 380px;
}

/* socials */
.ft-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.ft-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a2238;
  color: #c4cbda;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.ft-socials a:hover {
  background: #2f6bff;
  color: #fff;
  transform: translateY(-2px);
}

/* support box */
.ft-support {
  background: #111a2e;
  border: 1px solid #1c2742;
  border-radius: 16px;
  padding: 18px 22px;
  max-width: 420px;
}

.ft-support-head {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ft-support-head i {
  color: #f5a623;
  margin-right: 8px;
}
.ft-support-num {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.ft-support-hours {
  font-size: 13px;
  color: #8a93a6;
  margin-top: 4px;
}

/* link columns */
.ft-col-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-links li {
  margin-bottom: 16px;
}

.ft-links a {
  font-size: 15px;
  color: #9aa3b5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ft-links a:hover {
  color: #fff;
}

/* bottom bar */
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #1c2742;
}

.ft-copy {
  font-size: 14px;
  color: #8a93a6;
}

.ft-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ft-location {
  font-size: 14px;
  color: #9aa3b5;
}
.ft-location i {
  color: #f5a623;
  margin-right: 6px;
}
.ft-sep {
  color: #2a3550;
}
.ft-bottom-right a {
  font-size: 14px;
  color: #9aa3b5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ft-bottom-right a:hover {
  color: #fff;
}

/* responsive */
@media (max-width: 980px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ft-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .ft-main {
    grid-template-columns: 1fr;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
