:root {

  --radius: 1rem;

  --cream: #fff8ee;
  --peach: #f6e6d2;

  --coral: #ee6f57;
  --coral-soft: #f8c8bd;

  --mint: #b9e6d3;
  --mint-soft: #e2f4ec;

  --charcoal: #26231f;

  --background: var(--cream);

  --card: #ffffff;
  --card-foreground: var(--charcoal);

  --popover: #ffffff;
  --popover-foreground: var(--charcoal);

  --primary: var(--coral);
  --primary-foreground: #ffffff;

  --secondary: var(--mint);
  --secondary-foreground: var(--charcoal);

  --muted: #f4efe7;
  --muted-foreground: #6f6963;

  --accent: var(--mint-soft);
  --accent-foreground: var(--charcoal);

  --destructive: #dc4b4b;
  --destructive-foreground: #ffffff;

  --border: #e6ddd2;
  --input: #e6ddd2;

  --ring: var(--coral);

  /* Compatibility variables */
  --ot-cream: var(--cream);
  --ot-peach: var(--peach);
  --ot-coral: var(--coral);
  --ot-coral-soft: var(--coral-soft);
  --ot-mint: var(--mint);
  --ot-mint-soft: var(--mint-soft);
  --ot-charcoal: var(--charcoal);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff8ee;
  color: var(--ot-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.ot-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: var(--ot-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ot-border);
}

.ot-header .ot-container {
  max-width: 1280px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.ot-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.ot-logo-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 36px;
}

.ot-logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ot-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ot-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ot-charcoal);
}

.ot-tagline {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ot-muted);
}

.ot-nav {
  gap: 32px;
}

.ot-nav .nav-link {
  padding: 0;
}

.ot-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(47, 47, 47, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ot-nav a:hover {
  color: var(--ot-coral);
}

.ot-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ot-btn {
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--ot-coral);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s ease;
}

.ot-btn:hover {
  color: #fff;
  background: #000;
  opacity: 0.9;
}

.ot-menu-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ot-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.ot-menu-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, color-mix(in oklab, var(--coral) 18%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 30%, color-mix(in oklab, var(--mint) 22%, transparent), transparent 60%),
    linear-gradient(180deg, var(--peach), var(--cream));
}

.ot-hero-content {
  animation: otFadeUp .5s ease both;
}

.ot-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(238, 111, 87, .3);
  background: rgba(255, 255, 255, .6);
  color: var(--ot-coral);
  font-size: 12px;
  font-weight: 700;
}

.ot-launch-badge svg,
.ot-city-pill svg,
.ot-stat-item svg,
.ot-search-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-launch-badge svg {
  width: 14px;
  height: 14px;
}

.ot-hero-title {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ot-charcoal);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ot-hero-title span {
  color: var(--ot-coral);
}

.ot-hero-text {
  max-width: 576px;
  margin: 20px 0 0;
  color: rgba(47, 47, 47, .7);
  font-size: 18px;
  line-height: 1.65;
}

.ot-search-box {
  max-width: 620px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32, 32, 32, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .15);
}

.ot-search-icon {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  color: var(--ot-muted);
  flex: 0 0 auto;
}

.ot-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 0;
  color: var(--ot-charcoal);
  font-size: 16px;
}

.ot-search-box input::placeholder {
  color: var(--ot-muted);
}

.ot-search-box button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 25px;
  background: var(--ot-coral);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.ot-hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ot-primary-btn,
.ot-outline-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.ot-primary-btn {
  background: var(--ot-coral);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.ot-primary-btn:hover {
  color: #fff;
  opacity: .9;
}

.ot-outline-btn {
  border: 2px solid rgba(32, 32, 32, .8);
  color: var(--ot-charcoal);
}

.ot-outline-btn:hover {
  background: var(--ot-charcoal);
  color: #fff;
}

.ot-cities {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.ot-city-label {
  color: var(--ot-muted);
}

.ot-city-pill {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--ot-charcoal);
  padding: 4px 12px;
  font-weight: 600;
}

.ot-city-pill svg {
  width: 12px;
  height: 12px;
  color: var(--ot-coral);
}

.ot-hero-visual {
  position: relative;
}

.ot-hero-img-box {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .4);
  padding: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  backdrop-filter: blur(10px);
}

.ot-hero-img-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.ot-floating-card {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.ot-floating-card small {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.ot-floating-card strong {
  display: block;
  margin-top: 2px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.ot-time-card {
  left: -16px;
  bottom: -16px;
  background: #fff;
}

.ot-time-card small {
  color: var(--ot-muted);
}

.ot-time-card strong {
  color: var(--ot-coral);
}

.ot-provider-card {
  top: -16px;
  right: -16px;
  background: #b8e6d3;
}

.ot-provider-card small {
  color: rgba(32, 32, 32, .7);
  font-weight: 600;
}

.ot-provider-card strong {
  color: var(--ot-charcoal);
}

.ot-stats-strip {
  background: var(--ot-charcoal);
  color: #fff;
  padding: 24px 0;
}

.ot-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ot-stat-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--ot-coral);
}

.ot-stat-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/*==========================================
WHO WE ARE SECTION
==========================================*/

.ot-who {
  background: var(--cream);
  padding: 96px 0 90px;
}

.ot-who .container {
  max-width: 1200px;
}

.ot-who .ot-who-head {
  text-align: left !important;
  margin-bottom: 42px;
}

.ot-who .ot-section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  display: block;
}

.ot-who .ot-who-head h2 {
  max-width: 650px;
  margin: 0;
  color: var(--charcoal);
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.ot-who .ot-who-cards {
  margin-top: 0;
}

.ot-who .ot-who-card {
  height: 100%;
  min-height: 150px;
  padding: 24px 28px 22px;
  border-radius: 18px;
  background: var(--mint);
  box-shadow: 0 14px 28px rgba(39, 36, 31, 0.07);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.ot-who .ot-who-card:hover {
  transform: translateY(-10px);
  /* Moves card upward */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ot-who .ot-who-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 26px;
  line-height: 1;
}

.ot-who .ot-who-card h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.ot-who .ot-who-card p {
  margin: 0;
  color: rgba(38, 35, 31, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.ot-who .ot-who-bottom {
  max-width: 720px;
  margin: 42px auto 0;
  color: rgba(38, 35, 31, 0.72);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

/*==========================================
OUR SERVICES SECTION
==========================================*/

.ot-services {
  background: #f8e4d3;
  padding: 88px 0 82px;
}

.ot-services .container {
  max-width: 1200px;
}

.ot-services .ot-services-head {
  text-align: center;
  margin-bottom: 42px;
}

.ot-services .ot-services-head span {
  display: block;
  margin-bottom: 14px;
  color: #ee6f57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-services .ot-services-head h2 {
  margin: 0;
  color: #191714;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.7px;
}

.ot-services .ot-services-row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.ot-services .ot-service-card {
  min-height: 100%;
  padding: 18px 16px 16px;
  border: 1px solid #e0d0c2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(43, 34, 27, 0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.ot-services .ot-service-card:hover {
  transform: translateY(-10px);
  /* Moves card upward */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ot-services .ot-service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}

.ot-services .ot-icon-coral {
  background: #ffe8e2;
  color: #ee6f57;
}

.ot-services .ot-icon-mint {
  background: #a8e0c9;
  color: #1f6b55;
}

.ot-services .ot-service-card h3 {
  margin: 0 0 8px;
  color: #161411;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.ot-services .ot-service-card p {
  margin: 0;
  color: #68625b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.ot-services .ot-services-bottom {
  margin: 36px 0 0;
  color: #5f574f;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

/*==========================================
SMART MATCH SECTION
==========================================*/

.ot-smart-match {
  background: var(--cream);
  padding: 90px 0 96px;
}

.ot-smart-match .container {
  max-width: 1020px;
}

.ot-smart-match .ot-smart-card {
  width: 100%;
  padding: 46px 44px 44px;
  border: 1px solid #d9c9ba;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(43, 34, 27, 0.08);
}

.ot-smart-match .ot-smart-label {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-smart-match .ot-smart-card h2 {
  max-width: 780px;
  margin: 0 0 28px;
  color: #11100e;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.ot-smart-match .ot-smart-input {
  margin-bottom: 22px;
}

.ot-smart-match .ot-smart-input textarea {
  width: 100%;
  height: 96px;
  resize: none;
  display: block;
  padding: 22px 18px;
  border: 1px solid #dfcbbb;
  border-radius: 18px;
  outline: none;
  background: #fff8ee;
  color: #26231f;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.ot-smart-match .ot-smart-input textarea::placeholder {
  color: #9b8d82;
}

.ot-smart-match .ot-smart-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.ot-smart-match .ot-smart-tags button {
  height: 28px;
  padding: 0 13px;
  border: 1px solid #dec9b7;
  border-radius: 999px;
  background: #fff8ee;
  color: #2b2824;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.ot-smart-match .ot-smart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ot-smart-match .ot-smart-btn {
  min-width: 100px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.ot-smart-match .ot-smart-bottom p {
  margin: 0;
  color: #2f2a26;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/*==========================================
HOW IT WORKS SECTION
==========================================*/

.ot-how {
  background: var(--cream);
  padding: 50px 0 50px;
}

.ot-how .container {
  /* max-width: 980px; */
  max-width: 1200px;
}

.ot-how .ot-how-head {
  text-align: center;
  margin-bottom: 48px;
}

.ot-how .ot-how-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-how .ot-how-head h2 {
  margin: 0;
  color: #11100e;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.35px;
}

.ot-how .ot-how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  margin-bottom: 48px;
}

.ot-how .ot-how-line {
  position: absolute;
  top: 20px;
  left: 38px;
  right: 38px;
  height: 1px;
  background: rgba(238, 111, 87, 0.48);
  z-index: 1;
}

.ot-how .ot-how-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ot-how .ot-how-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.ot-how .ot-how-step p {
  margin: 0;
  color: #171411;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.ot-how .ot-how-stats {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 16px;
}

.ot-how .ot-how-stat {
  height: 74px;
  border: 1px solid #d9c9ba;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ot-how .ot-how-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.6px;
}

.ot-how .ot-how-stat span {
  color: #6b625a;
  font-size: 14px;
  line-height: 1;
}

.ot-why-city {
  background: #fff8ee;
  padding: 78px 0 82px;
}

.ot-why-city .container {
  /* max-width: 920px; */
  max-width: 1200px;
}

.ot-why-city .ot-why-city-head {
  margin-bottom: 30px;
}

.ot-why-city .ot-why-city-head span {
  display: block;
  margin-bottom: 8px;
  color: #ee6f57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-why-city .ot-why-city-head h2 {
  margin: 0 0 10px;
  color: #151310;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.ot-why-city .ot-why-city-head h2 strong {
  color: #ee6f57;
  font: inherit;
}

.ot-why-city .ot-why-city-head p {
  max-width: 720px;
  margin: 0;
  color: #554f49;
  font-size: 17px;
  line-height: 1.55;
}

.ot-why-city .ot-why-city-row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}

.ot-why-city .ot-why-city-card {
  min-height: 94px;
  height: 160px;
  padding: 18px 18px 15px;
  border-radius: 1px;
  background: #c8f0df;
  box-shadow: 0 10px 22px rgba(39, 36, 31, 0.05);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.ot-why-city .ot-why-city-card:hover {
  transform: translateY(-10px);
  /* Moves card upward */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.ot-why-city .ot-why-city-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1;
}

.ot-why-city .ot-why-city-card h3 {
  margin: 0 0 6px;
  color: #14120f;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.ot-why-city .ot-why-city-card p {
  margin: 0;
  color: #5c554f;
  font-size: 14px;
  line-height: 1.45;
}

/*==========================================
MARKETPLACE SECTION
==========================================*/

.ot-marketplace {
  background: #f9e5d4;
  padding: 92px 0 86px;
  border-bottom: 2px solid #ff6b57;
}

.ot-marketplace .container {
  /* max-width: 980px; */
  max-width: 1200px;
}

.ot-marketplace .ot-marketplace-head {
  text-align: center;
  margin-bottom: 42px;
}

.ot-marketplace .ot-marketplace-head span {
  display: block;
  margin-bottom: 14px;
  color: #ff6b57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-marketplace .ot-marketplace-head h2 {
  margin: 0;
  color: #151310;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.ot-marketplace .ot-marketplace-row {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
}

.ot-marketplace .ot-marketplace-card {
  min-height: 140px;
  height: 100%;
  padding: 28px 30px;
  border: 1px solid #e3d1c1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(40, 32, 26, 0.06);
}

.ot-marketplace .ot-marketplace-card h3 {
  margin: 0 0 22px;
  color: #161411;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.ot-marketplace .ot-marketplace-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ot-marketplace .ot-marketplace-card li {
  position: relative;
  padding-left: 20px;
  color: #2f2a26;
  font-size: 16px;
  line-height: 1.45;
}

.ot-marketplace .ot-marketplace-card li+li {
  margin-top: 14px;
}

.ot-marketplace .ot-marketplace-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b57;
}

.ot-marketplace .ot-marketplace-card .ot-mint-list li::before {
  background: #9edfc6;
}

.ot-marketplace .ot-marketplace-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ot-marketplace .ot-marketplace-info p {
  margin: 0;
  color: #3f3934;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.ot-marketplace .ot-marketplace-info strong {
  color: #151310;
  font-weight: 800;
}

/*==========================================
CTA BOOK SECTION
==========================================*/

.ot-cta-book {
  background: #ff6958;
  padding: 68px 0 70px;
  text-align: center;
}

.ot-cta-book .container {
  max-width: 920px;
}

.ot-cta-book .ot-cta-head {
  margin-bottom: 34px;
}

.ot-cta-book .ot-cta-head h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.ot-cta-book .ot-cta-head p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.ot-cta-book .ot-cta-form {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ot-cta-book .ot-cta-field {
  flex: 1 1 0;
  min-width: 0;
}

.ot-cta-book .ot-cta-field select,
.ot-cta-book .ot-cta-field input {
  width: 100%;
  height: 38px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #181512;
  font-size: 13px;
  font-weight: 500;
  padding: 0 16px;
}

.ot-cta-book .ot-cta-field input::placeholder {
  color: #9d968f;
}

.ot-cta-book .ot-cta-field input[type="date"] {
  color: #4d4640;
  padding-right: 12px;
}

.ot-cta-book .ot-cta-form button {
  flex: 0 0 auto;
  width: 118px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #ff6958;
  font-size: 14px;
  font-weight: 800;
}

.ot-cta-book .ot-cta-form button:hover {
  background: #000;
  color: #fff;
}

.ot-cta-book .ot-cta-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ot-cta-book .ot-cta-link:hover {
  text-decoration: underline;
}

/*==========================================
TESTIMONIALS SLIDER
==========================================*/

.ot-testimonials {
  background: #fff8ee;
  padding: 86px 0 92px;
}


.ot-testimonials .ot-testimonials-head {
  text-align: center;
  margin-bottom: 38px;
}

.ot-testimonials .ot-testimonials-head span {
  display: block;
  margin-bottom: 12px;
  color: #ff6b57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-testimonials .ot-testimonials-head h2 {
  margin: 0;
  color: #151310;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.4px;
}

.ot-testimonials .ot-testimonials-slider {
  padding-bottom: 34px;
}

.ot-testimonials .swiper-slide {
  height: auto;
}

.ot-testimonials .ot-testimonial-card {
  height: 100%;
  min-height: 150px;
  padding: 22px 22px 20px;
  border: 1px solid #e3d1c1;
  border-radius: 18px;
  background: transparent;
}

.ot-testimonials .ot-testimonial-stars {
  margin-bottom: 14px;
  color: #ff6b57;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.ot-testimonials .ot-testimonial-card p {
  margin: 0 0 24px;
  color: #2f2a26;
  font-size: 16px;
  line-height: 1.55;
}

.ot-testimonials .ot-testimonial-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.ot-testimonials .ot-testimonial-bottom h4 {
  margin: 0 0 3px;
  color: #151310;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.ot-testimonials .ot-testimonial-bottom span {
  display: block;
  color: #5f574f;
  font-size: 13px;
  line-height: 1;
}

.ot-testimonials .ot-testimonial-bottom em {
  min-height: 22px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #b9e6d3;
  color: #174936;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  font-style: normal;
  white-space: nowrap;
}

.ot-testimonials .ot-testimonials-pagination {
  bottom: 0 !important;
}

.ot-testimonials .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #d9c9ba;
  opacity: 1;
}

.ot-testimonials .swiper-pagination-bullet-active {
  background: #ff6b57;
}

/*==========================================
FAQ SECTION
==========================================*/

.ot-faq {
  background: #f9e5d4;
  padding: 82px 0 88px;
}

.ot-faq .container {
  max-width: 840px;

}

.ot-faq .ot-faq-head {
  text-align: center;
  margin-bottom: 34px;
}

.ot-faq .ot-faq-head span {
  display: block;
  margin-bottom: 25px;
  color: #ff6b57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
}

.ot-faq .ot-faq-head h2 {
  margin: 0;
  color: #14110f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}

.ot-faq .ot-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ot-faq .accordion-item {
  overflow: visible;
  border: 1px solid #e3d1c1;
  border-radius: 15px;
  background: #ffffff;
}

.ot-faq .accordion-button {
  min-height: 44px;
  padding: 18px 18px;
  background: #ffffff;
  color: #151310;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.ot-faq .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #151310;
  box-shadow: none;
}

.ot-faq .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 12px;
  filter: invert(52%) sepia(70%) saturate(1772%) hue-rotate(328deg) brightness(101%) contrast(101%);
}

.ot-faq .accordion-body {
  padding: 0 18px 25px;
  color: #5e5750;
  font-size: 16px;
  line-height: 1.55;
}

/*==================================
CONTACT
==================================*/

.ot-contact {
  padding: 90px 0;
  background: #fff8ee;
}

.ot-contact .container {
  max-width: 1200px;
}

.ot-contact-subtitle {

  display: block;

  margin-bottom: 14px;

  color: #ff6b57;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

}

.ot-contact-content h2 {

  margin-bottom: 18px;

  color: #171411;

  font-size: 3rem;

  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -2px;

}

.ot-contact-content p {

  max-width: 540px;

  margin-bottom: 32px;

  color: #5f5954;

  font-size: 15px;

  line-height: 1.6;

}

.ot-contact .form-control {

  height: 48px;

  border: 1px solid #e5d2c0;

  border-radius: 999px;

  background: transparent;

  padding: 0 18px;

  box-shadow: none;

  font-size: 15px;

}

.ot-contact textarea.form-control {

  height: 105px;

  resize: none;

  border-radius: 24px;

  padding-top: 16px;

}

.ot-contact .form-control:focus {

  border-color: #ff6b57;

  box-shadow: none;

}

.ot-contact-btn {

  border: 0;

  width: 94px;

  height: 46px;

  border-radius: 999px;

  background: #ff6b57;

  color: #fff;

  font-weight: 700;

  transition: .3s;

}

.ot-contact-btn:hover {

  background: #f45a47;

}

.ot-contact-card {

  height: 100%;

  min-height: 440px;

  padding: 44px;

  border-radius: 28px;

  background: #c9f1df;

}

.ot-contact-card h3 {

  margin-bottom: 30px;

  color: #171411;

  font-size: 20px;

  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 800;

}

.ot-contact-card ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.ot-contact-card li {

  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 22px;

  color: #171411;

  font-size: 14px;

}

.ot-contact-card li i {

  color: #ff6b57;

  font-size: 22px;

  width: 22px;

}

.ot-contact-social {

  display: flex;

  gap: 14px;

  margin-top: 36px;

}

.ot-contact-social a {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #171411;

  text-decoration: none;

  transition: .3s;

}

.ot-contact-social a:hover {

  background: #ff6b57;

  color: #fff;

}

/*==========================================
FOOTER
==========================================*/

.ot-footer {
  background: #201812;
  padding: 56px 0 0;
  color: #ffffff;
}

.ot-footer .container {
  max-width: 1180px;
}

.ot-footer .ot-footer-top {
  padding-bottom: 58px;
  row-gap: 34px;
}

.ot-footer .ot-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 20px;
}

.ot-footer .ot-footer-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ff6b57;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8.8px;
  font-size: 32px;
  line-height: 1;
}

.ot-footer .ot-footer-logo span:last-child {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.ot-footer .ot-footer-brand p {
  margin: 0;
  color: #d6ccc2;
  font-size: 15px;
  line-height: 1.5;
}

.ot-footer .ot-footer-widget h4 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.ot-footer .ot-footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ot-footer .ot-footer-widget li+li {
  margin-top: 12px;
}

.ot-footer .ot-footer-widget a,
.ot-footer .ot-footer-widget span {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
}

.ot-footer .ot-footer-widget span {
  color: #b7ada3;
}

.ot-footer .ot-footer-widget a:hover {
  color: #ff6b57;
}

.ot-footer .ot-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
}

.ot-footer .ot-footer-bottom p {
  margin: 0;
  color: #b7ada3;
  font-size: 13px;
  line-height: 1.5;
}

/* Responsive */


@keyframes otFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (min-width: 992px) {
  .ot-hero {
    padding: 96px 0;
  }
}

@media (max-width: 1199px) {
  .ot-hero-title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {

  .ot-menu-collapse {

    width: 100%;

    margin-top: 20px;

    padding: 20px;

    border-radius: 20px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

  }

  .ot-nav {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

  }

  .ot-actions {

    margin-top: 20px;

    width: 100%;

  }

  .ot-btn {

    width: 100%;

    justify-content: center;

  }


  .ot-hero {
    padding: 64px 0;
  }

  .ot-hero-title {
    font-size: 48px;
  }

  .ot-hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .ot-who {
    padding: 78px 0 72px;
  }

  .ot-who .container {
    max-width: 720px;
  }

  .ot-who .ot-who-head h2 {
    font-size: 38px;
  }

  .ot-services {
    padding: 74px 0;
  }

  .ot-services .container {
    max-width: 720px;
  }

  .ot-services .ot-services-head h2 {
    font-size: 34px;
  }

  .ot-smart-match {
    padding: 64px 0 82px;
  }

  .ot-smart-match .container {
    max-width: 760px;
  }

  .ot-smart-match .ot-smart-card h2 {
    font-size: 31px;
  }

  .ot-how {
    padding: 72px 0;
  }

  .ot-how .container {
    max-width: 760px;
  }

  .ot-how .ot-how-steps {
    overflow-x: auto;
    grid-template-columns: repeat(8, 95px);
    padding-bottom: 8px;
  }

  .ot-how .ot-how-line {
    left: 28px;
    right: auto;
    width: 690px;
  }

  .ot-marketplace {
    padding: 76px 0;
  }

  .ot-marketplace .container {
    max-width: 760px;
  }

  .ot-marketplace .ot-marketplace-head h2 {
    font-size: 36px;
  }

  .ot-marketplace .ot-marketplace-info {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .ot-testimonials {
    padding: 74px 0;
  }

  .ot-testimonials .container {
    max-width: 720px;
  }

  .ot-contact {

    padding: 70px 0;

  }

  .ot-contact-card {

    min-height: auto;

    margin-top: 10px;

  }

  .ot-contact-content h2 {

    font-size: 30px;

  }

  .ot-footer {
    padding-top: 48px;
  }

  .ot-footer .ot-footer-top {
    padding-bottom: 42px;
  }
}
a.ot-logo.navbar-brand img {
    max-width: 110px;
}
@media (max-width: 767px) {
  .ot-who {
    padding: 64px 0;
  }

  .ot-who .ot-who-head {
    margin-bottom: 32px;
  }

  .ot-who .ot-who-head h2 {
    font-size: 34px;
  }

  .ot-who .ot-who-card {
    min-height: auto;
  }

  .ot-services {
    padding: 62px 0;
  }

  .ot-services .ot-services-head {
    margin-bottom: 32px;
  }

  .ot-smart-match {
    padding: 56px 0 72px;
  }

  .ot-smart-match .ot-smart-card {
    padding: 34px 24px 30px;
    border-radius: 18px;
  }

  .ot-smart-match .ot-smart-card h2 {
    font-size: 28px;
    letter-spacing: -1.2px;
  }

  .ot-smart-match .ot-smart-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .ot-how .ot-how-head h2 {
    font-size: 28px;
  }

  .ot-how .ot-how-steps {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
  }

  .ot-how .ot-how-line {
    display: none;
  }

  .ot-why-city {
    padding: 62px 0;
  }

  .ot-why-city .container {
    max-width: 540px;
  }

  .ot-why-city .ot-why-city-head h2 {
    font-size: 25px;
  }

  .ot-why-city .ot-why-city-head p {
    font-size: 11px;
  }

  .ot-marketplace {
    padding: 64px 0;
  }

  .ot-marketplace .ot-marketplace-head {
    margin-bottom: 32px;
  }

  .ot-marketplace .ot-marketplace-head h2 {
    font-size: 31px;
  }

  .ot-marketplace .ot-marketplace-card {
    min-height: 130px;
    padding: 24px;
  }

  .ot-marketplace .ot-marketplace-info {
    flex-direction: column;
    gap: 10px;
  }

  .ot-marketplace .ot-marketplace-info p {
    white-space: normal;
  }

  .ot-cta-book {
    padding: 56px 0;
  }

  .ot-cta-book .ot-cta-head h2 {
    font-size: 38px;
  }

  .ot-cta-book .ot-cta-form {
    max-width: 420px;
    border-radius: 24px;
    flex-direction: column;
    padding: 12px;
  }

  .ot-cta-book .ot-cta-field,
  .ot-cta-book .ot-cta-form button {
    width: 100%;
  }

  .ot-faq {
    padding: 64px 0;
  }

  .ot-faq .ot-faq-head h2 {
    font-size: 26px;
  }


  .ot-contact-card {

    padding: 28px;

  }

  .ot-contact-card h3 {

    font-size: 28px;

  }

  .ot-contact-card li {

    font-size: 16px;

  }

  form.ot-search-box {
    display: block;
    background: transparent;
    border: 0 none;
    box-shadow: none;
    padding: 0;
  }

  form.ot-search-box svg.ot-search-icon {
    display: none;
  }

  form.ot-search-box input[type="text"] {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {

  .ot-header .ot-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .ot-logo-icon {
    width: 36px;
    height: 36px;
  }

  .ot-tagline {
    display: none;
  }

  .ot-hero {
    padding: 48px 0;
  }

  .ot-hero-title {
    font-size: 40px;
  }

  .ot-hero-text {
    font-size: 16px;
  }

  .ot-search-box {
    align-items: stretch;
  }

  .ot-search-box button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ot-floating-card {
    display: none;
  }

  .ot-stat-item {
    align-items: flex-start;
    margin: 10px 0;
  }

  .ot-who .ot-who-head h2 {
    font-size: 30px;
  }

  .ot-who .ot-who-card {
    padding: 22px;
    border-radius: 16px;
  }

  .ot-services .ot-services-head h2 {
    font-size: 30px;
  }

  .ot-services .ot-service-card {
    height: auto;
  }

  .ot-smart-match .ot-smart-card {
    padding: 28px 18px;
  }

  .ot-smart-match .ot-smart-card h2 {
    font-size: 24px;
  }

  .ot-smart-match .ot-smart-input textarea {
    height: 110px;
  }

  .ot-smart-match .ot-smart-tags button {
    height: auto;
    min-height: 28px;
    padding: 7px 12px;
  }

  .ot-how {
    padding: 60px 0;
  }

  .ot-how .ot-how-head {
    margin-bottom: 36px;
  }

  .ot-how .ot-how-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .ot-cta-book .ot-cta-head h2 {
    font-size: 32px;
  }

  .ot-cta-book .ot-cta-head p {
    font-size: 14px;
  }

  .ot-testimonials {
    padding: 60px 0;
  }

  .ot-testimonials .ot-testimonials-head h2 {
    font-size: 28px;
  }

  .ot-footer {
    text-align: left;
  }

  .ot-footer .ot-footer-top {
    row-gap: 30px;
  }
}