/* DESIGN TOKENS — UPDATE FOR REBRAND */

:root {
  --brand-primary: #c9622f;
  --brand-primary-dark: #a3491f;
  --brand-primary-light: #e8845a;
  --brand-dark: #0f1117;
  --brand-mid: #1a1e2a;
  --brand-surface: #f6f3ee;
  --brand-surface-alt: #edeae3;
  --brand-text: #0f1117;
  --brand-muted: #6b6b6b;
  --brand-border: rgba(15, 17, 23, 0.1);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

/* BASE */

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--brand-surface);
  color: var(--brand-text);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.55rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.06;
}
.section-title em {
  font-style: italic;
  color: var(--brand-primary);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}

/* Buttons are now using Bootstrap button classes instead of custom .btn-brand styles */
.btn-primary {
  background: var(--brand-primary);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: var(--brand-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 98, 47, 0.35);
}
.btn-outline-dark {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
  border-width: 1.5px;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dark:hover,
.btn-outline-dark:active,
.btn-outline-dark:focus {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}
.btn-outline-primary {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  border-width: 1.5px;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  background: var(--brand-primary-dark);
  color: #fff;
  border-color: var(--brand-primary-dark);
}
.btn-outline-primary:disabled,
.btn-outline-primary[disabled] {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(201, 98, 47, 0.5);
  border-color: rgba(201, 98, 47, 0.6);
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-outline-light {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.form-control {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: border-color 0.2s;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(201, 98, 47, 0.25);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.section-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.section-link:hover {
  color: var(--brand-primary);
}

/* NAVBAR */

#navbar {
  z-index: 1050;
  padding: 20px 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(15, 17, 23, 0.96) !important;
  backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark i {
  color: #fff;
  font-size: 0.95rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.navbar-toggler {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 5px 9px;
}
.navbar-toggler i {
  color: #fff;
  font-size: 1.1rem;
}
.nav-link-item {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 0 !important;
  position: relative;
  transition: color 0.2s;
}
.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--brand-primary);
  transition: right 0.3s;
}
.nav-link-item:hover,
.nav-link-item.active {
  color: #fff !important;
}
.nav-link-item:hover::after,
.nav-link-item.active::after {
  right: 0;
}
.nav-cta {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--brand-primary-dark) !important;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 12, 18, 0.97);
    border-radius: 14px;
    margin-top: 12px;
    padding: 16px 20px;
  }
  .nav-link-item {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-link-item::after {
    display: none;
  }
  .nav-cta {
    margin-top: 8px;
    display: inline-block;
  }
}

/* HERO */

#hero {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(15, 17, 23, 0.9) 0%,
      rgba(15, 17, 23, 0.5) 55%,
      rgba(201, 98, 47, 0.1) 100%
    ),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding-top: 120px;
  padding-bottom: 220px;
}
.hero-eyebrow {
  color: var(--brand-primary-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.7s ease 0.15s both;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: #fff;
  line-height: 0.96;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-title em {
  color: var(--brand-primary);
  font-style: italic;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s ease 0.45s both;
}
.hero-btns {
  animation: fadeUp 0.7s ease 0.6s both;
}
/* Hero stats (desktop) */
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeLeft 0.7s ease 0.75s both;
}
.stat-chip {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 13px 20px;
  text-align: right;
}
.stat-chip .snum {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-chip .slbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* Search bar */
.hero-search {
  position: absolute;
  bottom: -64px;
  left: 0;
  right: 0;
  z-index: 10;
}
.search-card {
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 26px 36px;
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
}
.s-field {
  flex: 1;
  min-width: 140px;
  padding: 0 22px;
  border-right: 1px solid var(--brand-border);
}
.s-field:first-child {
  padding-left: 0;
}
.s-field:last-of-type {
  border-right: none;
}
.s-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 5px;
}
.s-field input,
.s-field select {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-text);
  background: transparent;
  appearance: none;
}

/* Booking modal */
.booking-modal {
  border: none;
  border-radius: 14px;
  overflow: hidden;
}
.booking-modal .modal-header,
.booking-modal .modal-footer {
  border-color: var(--brand-border);
  padding: 22px 24px;
}
.booking-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-text);
}
.booking-modal .modal-body {
  padding: 24px;
}
.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.booking-summary div {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 12px 14px;
}
.booking-summary span,
.booking-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 5px;
}
.booking-summary strong {
  display: block;
  color: var(--brand-text);
  font-size: 0.94rem;
  font-weight: 600;
}
.booking-input {
  background: #fff !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--brand-text) !important;
  font-size: 0.9rem;
}
.booking-input::placeholder {
  color: var(--brand-muted) !important;
}
.booking-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.18rem rgba(201, 98, 47, 0.14);
}
@media (max-width: 767px) {
  #hero {
    padding-bottom: 260px;
  }
  .hero-stats,
  .hero-scroll {
    display: none;
  }
  .search-card {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }
  .s-field {
    padding: 0;
    border-right: none;
    min-width: 100%;
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: 12px;
  }
  .s-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .booking-summary {
    grid-template-columns: 1fr;
  }
}

/* TRUST BAR */

#trust-bar {
  background: #fff;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.trust-item:last-child {
  border-right: none;
}
.t-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 98, 47, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-icon i {
  color: var(--brand-primary);
  font-size: 1.1rem;
}
.trust-item h6 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 1px;
}
.trust-item p {
  font-size: 0.74rem;
  color: var(--brand-muted);
  margin: 0;
}
@media (max-width: 575px) {
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--brand-border);
    padding: 14px 0;
  }
  .trust-item:last-child {
    border-bottom: none;
  }
}

/* DESTINATIONS */

#destinations {
  padding: 88px 0;
  background: var(--brand-surface);
}
.dest-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 310px 210px;
  gap: 12px;
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s;
}
.dest-card:hover {
  transform: scale(1.015);
  z-index: 2;
}
.dest-card.span-r {
  grid-row: span 2;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(10, 12, 18, 0.86) 100%
  );
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
}
.dest-info h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 5px;
}
.dest-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.dest-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dest-meta .price {
  color: var(--brand-primary-light);
  font-weight: 600;
  font-size: 0.82rem;
}
.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .dest-card.span-r {
    grid-row: 1;
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .dest-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .dest-card {
    height: 210px;
  }
  .dest-card.span-r {
    grid-column: span 1;
  }
}

/* WHY US */

#why-us {
  padding: 88px 0;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}
#why-us::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(201, 98, 47, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-visual {
  position: relative;
}
.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--brand-dark);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.why-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--brand-primary);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(201, 98, 47, 0.4);
  z-index: 2;
}
.exp-badge .enum {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.exp-badge .elbl {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.4;
  margin-top: 3px;
}
.feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 98, 47, 0.1);
  border: 1px solid rgba(201, 98, 47, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.feat-icon i {
  color: var(--brand-primary-light);
  font-size: 1.15rem;
}
.feat-row:hover .feat-icon {
  background: rgba(201, 98, 47, 0.2);
}
.feat-text h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feat-text p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 991px) {
  .why-img-wrap {
    height: 360px;
  }
  .why-accent {
    width: 130px;
    height: 130px;
    right: -8px;
  }
  .exp-badge {
    left: 0;
  }
}

/* GALLERY STRIP */

#gallery-strip {
  overflow: hidden;
}
.g-strip {
  display: flex;
  height: 260px;
  gap: 5px;
}
.g-item {
  flex: 1;
  overflow: hidden;
}
.g-item.g-wide {
  flex: 1.7;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.g-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 767px) {
  .g-strip {
    height: 170px;
  }
}

/* PACKAGES */

#packages {
  padding: 88px 0;
  background: var(--brand-surface);
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.f-tab {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--brand-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--brand-muted);
  transition: all 0.2s;
  cursor: pointer;
}
.f-tab.active,
.f-tab:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.pkg-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}
.pkg-img {
  position: relative;
  height: 222px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}
.pkg-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pkg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.pkg-body {
  padding: 20px;
}
.pkg-dest {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 5px;
}
.pkg-name {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pkg-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.pkg-metas span {
  font-size: 0.75rem;
  color: var(--brand-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pkg-metas i {
  color: var(--brand-primary);
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--brand-border);
}
.pkg-price .pfrom {
  font-size: 0.64rem;
  color: var(--brand-muted);
}
.pkg-price .pamount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}
.pkg-price .pper {
  font-size: 0.68rem;
  color: var(--brand-muted);
}
.pkg-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-dark);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.22s;
}
.pkg-arrow:hover {
  background: var(--brand-primary);
  transform: rotate(45deg);
}

/* TOUR TYPES */

#tour-types {
  padding: 88px 0;
  background: var(--brand-surface-alt);
}
.type-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  transform: translateY(101%);
  transition: transform 0.36s ease;
  z-index: 0;
}
.type-card:hover::before {
  transform: translateY(0);
}
.type-card > * {
  position: relative;
  z-index: 1;
}
.type-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(201, 98, 47, 0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.type-icon i {
  font-size: 1.55rem;
  color: var(--brand-primary);
  transition: color 0.3s;
}
.type-card:hover .type-icon {
  background: rgba(255, 255, 255, 0.18);
}
.type-card:hover .type-icon i {
  color: #fff;
}
.type-card h5 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.3s;
}
.type-card p {
  font-size: 0.76rem;
  color: var(--brand-muted);
  line-height: 1.55;
  margin: 0;
  transition: color 0.3s;
}
.type-card:hover h5 {
  color: #fff;
}
.type-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* TESTIMONIALS */

#testimonials {
  padding: 88px 0;
  background: var(--brand-dark);
  overflow: hidden;
}
.testi-outer {
  overflow: hidden;
  position: relative;
}
.testi-outer::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 130px;
  background: linear-gradient(to left, var(--brand-dark), transparent);
  z-index: 2;
  pointer-events: none;
}
.testi-track {
  display: flex;
  gap: 18px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.testi-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testi-card {
  width: 330px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  transition: border-color 0.3s;
}
.testi-card:hover {
  border-color: rgba(201, 98, 47, 0.38);
}
.testi-stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-author h6 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1px;
}
.testi-author span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

/* CTA / CONTACT */

#cta-section {
  padding: 88px 0;
  background: var(--brand-mid);
  position: relative;
  overflow: hidden;
}
#cta-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(201, 98, 47, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 195px 195px;
  gap: 10px;
}
.cta-photo {
  border-radius: 13px;
  overflow: hidden;
}
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.cta-photo:hover img {
  transform: scale(1.05);
}
.cta-photo.tall {
  grid-row: span 2;
  border-radius: 16px;
}
.contact-link {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.contact-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 767px) {
  .cta-photos {
    grid-template-rows: 150px 150px;
  }
}

/* FOOTER */

footer {
  background: #08090e;
  padding: 68px 0 32px;
}
.f-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.f-desc {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  line-height: 1.8;
  margin: 12px 0 20px;
}
.social-links {
  display: flex;
  gap: 9px;
}
.soc-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.soc-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.f-heading {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}
.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.f-links a:hover {
  color: #fff;
}
.f-links i {
  color: var(--brand-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.f-divider {
  border-color: rgba(255, 255, 255, 0.05);
  margin: 38px 0 26px;
}
.f-copy {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
}
.f-legal a {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.2s;
}
.f-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-inp {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 13px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  flex: 1;
  transition: border-color 0.2s;
}
.newsletter-inp:focus {
  border-color: var(--brand-primary);
}
.newsletter-inp::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.newsletter-btn {
  background: var(--brand-primary);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter-btn:hover {
  background: var(--brand-primary-dark);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
