.elementor-95 .elementor-element.elementor-element-9a9654e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-95 .elementor-element.elementor-element-9c8e5c8{padding:40px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f5d892f *//* =========================
   HERO SECTION
========================= */

:root {
  --accent-gold: #9a7c4f;
  --star-gold: #f5c518;
  --text-dark: #18181b;
  --text-muted: #52525b;
}

/* HERO */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background: #ffffff;
  overflow: hidden;
}

/* =========================
   ANIMATED ACCENT LINES
========================= */

.hero-accent-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-accent-lines span {
  position: absolute;
  width: 160px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.15;
  animation: line-drift 10s linear infinite;
}

/* INDIVIDUAL LINES */
.hero-accent-lines span:nth-child(1) {
  top: 22%;
  left: -20%;
  animation-duration: 14s;
}

.hero-accent-lines span:nth-child(2) {
  top: 48%;
  left: -30%;
  animation-duration: 18s;
  opacity: 0.1;
}

.hero-accent-lines span:nth-child(3) {
  top: 70%;
  left: -25%;
  animation-duration: 22s;
  opacity: 0.08;
}

/* ANIMATION */
@keyframes line-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(140vw);
  }
}

/* CONTENT ABOVE LINES */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.hero-title {
  font-family: Inter, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* ROTATING TEXT */
.hero-rotate-wrap {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
}

.hero-rotate {
  display: block;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-rotate.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

/* ACCENT TEXT */
.hero-accent {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--accent-gold);
}

/* DESCRIPTION */
.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* VIDEO */
.hero-video {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.hero-video video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TRUST */
.hero-trust {
  margin-top: 14px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stars {
  color: var(--star-gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.hero-review-text {
  font-size: 12px;
  color: #71717a;
}

/* RIGHT */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* META */
.hero-meta {
  font-size: 12px;
  color: #a1a1aa;
  text-align: center;
}

/* CTA */
.hero-cta {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--text-dark);
  color: #ffffff;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none;
}

.hero-cta:hover {
  background: #27272a;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-trust {
    text-align: center;
  }

  .hero-reviews {
    justify-content: center;
  }

  .hero-accent-lines {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9e947cd *//* =========================
   COASTLINE MARQUEE
========================= */

.cbc-marquee {
  background: #0f0f11;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.cbc-marquee-track {
  display: flex;
  width: max-content;
  animation: cbc-marquee-scroll 28s linear infinite;
}

.cbc-marquee-track span {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.75);
  white-space: nowrap;

  padding: 0 32px;
  position: relative;
}

/* GOLD DOT SEPARATOR */
.cbc-marquee-track span::after {
  content: "•";
  color: #9a7c4f;
  position: absolute;
  right: -6px;
}

/* ANIMATION */
@keyframes cbc-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER (DESKTOP) */
@media (hover: hover) {
  .cbc-marquee:hover .cbc-marquee-track {
    animation-play-state: paused;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cbc-marquee-track span {
    font-size: 11px;
    padding: 0 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9c8e5c8 *//* =========================
   SERVICES SECTION
========================= */

.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 6rem;
  background: #ffffff;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    grid-auto-rows: 240px;
  }
}

/* CARD BASE */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
}

/* IMAGE */
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* OVERLAYS */
.service-overlay {
  position: absolute;
  inset: 0;
}

.service-overlay--gradient {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    transparent
  );
}

.service-overlay--gradient-light {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.1),
    transparent
  );
}

.service-overlay--soft {
  background: rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.service-card:hover .service-overlay--soft {
  background: rgba(0,0,0,0.2);
}

/* LARGE CARD */
.service-card--large {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .service-card--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* WIDE CARD */
@media (min-width: 768px) {
  .service-card--wide {
    grid-column: span 2;
  }
}

/* TEXT CARD */
.service-card--text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ICON */
.service-icon {
  color: #18181b;
  margin-bottom: 16px;
}

.service-icon svg {
  display: block;
}

/* TYPOGRAPHY */
.service-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7c4f;
  margin-bottom: 6px;
}

.service-card h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.service-card--text h2 {
  color: #18181b;
  margin-bottom: 8px;
}

.service-card--text p {
  font-size: 14px;
  color: #52525b;
  line-height: 1.5;
}

/* CAPTIONS */
.service-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
}

/* BADGE */
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #18181b;
}

/* FOOTER */
.service-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

/* ACTION */
.service-action {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
}

.service-action:hover {
  background: rgba(255,255,255,0.3);
}

/* LINK */
.service-link {
  font-size: 14px;
  font-weight: 500;
  color: #18181b;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 767px) {
  .service-card--large,
  .service-card--wide {
    aspect-ratio: 16 / 10;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d61920e *//* =========================
   FLEET SECTION
========================= */

.fleet {
  padding: 6rem 0;
  background: #fafafa;
  overflow: hidden;
}

/* HEADER */
.fleet-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #18181b;
}

.fleet-link {
  font-size: 14px;
  font-weight: 500;
  color: #52525b;
  text-decoration: none;
}

.fleet-link:hover {
  color: #18181b;
}

/* SCROLL ROW */
.fleet-scroll {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 16px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.fleet-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.fleet-card {
  min-width: 280px;
  cursor: pointer;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .fleet-card {
    min-width: 320px;
  }
}

/* IMAGE */
.fleet-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
}

.fleet-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

/* BADGE */
.fleet-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #18181b;
}

/* TEXT */
.fleet-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #18181b;
}

.fleet-card p {
  font-size: 14px;
  color: #52525b;
  margin-top: 6px;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 767px) {
  .fleet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d8c810e *//* =========================
   LIMO ANYWHERE SECTION
========================= */

.booking-system {
  padding: 6rem 24px;
  background: #ffffff;
}

/* OUTER CARD */
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: radial-gradient(
      1200px 400px at -10% -20%,
      rgba(154,124,79,0.18),
      transparent 40%
    ),
    linear-gradient(135deg, #0a0a0a, #111111);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  color: #ffffff;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .booking-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* LEFT CONTENT */
.booking-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.booking-description {
  font-size: 1.05rem;
  color: #d4d4d8;
  max-width: 420px;
  margin-bottom: 1.75rem;
}

/* FEATURE LIST */
.booking-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.booking-features li {
  font-size: 14px;
  color: #e4e4e7;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.booking-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9a7c4f;
}

/* CTA */
.booking-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.booking-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* IMAGE */
.booking-visual {
  display: flex;
  justify-content: center;
}

.booking-visual img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
}

/* MOBILE */
@media (max-width: 767px) {
  .booking-inner {
    padding: 40px 28px;
  }

  .booking-title {
    font-size: 2rem;
  }

  .booking-visual img {
    max-width: 280px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1fbb5dd *//* =========================
   ROUTES SECTION
========================= */

.routes {
  padding: 6rem 0;
  background: #f4f5f7;
}

.routes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADERS */
.routes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.routes-header.secondary {
  margin-top: 4rem;
}

.routes-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #18181b;
}

.routes-header a {
  font-size: 14px;
  color: #52525b;
  text-decoration: underline;
}

.routes-header a:hover {
  color: #18181b;
}

/* =========================
   AREAS GRID (DESKTOP/TABLET)
========================= */

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

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

/* AREA CARD */
.area-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
}

.area-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.area-info {
  padding: 14px 16px;
}

.area-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #18181b;
}

.area-info p {
  font-size: 13px;
  color: #71717a;
  margin-top: 2px;
}

/* =========================
   ROUTES GRID (DESKTOP/TABLET)
========================= */

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

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

/* ROUTE CARD */
.route-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #e4e4e7;
}

.route-card strong {
  display: block;
  font-size: 14px;
  color: #18181b;
  margin-bottom: 4px;
}

.route-card span {
  font-size: 13px;
  color: #71717a;
}

/* =========================
   MOBILE CAROUSEL (AREAS + ROUTES)
========================= */

@media (max-width: 768px) {

  /* Turn both grids into swipeable carousels */
  .areas-grid,
  .routes-grid {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 12px;
  }

  /* Hide scrollbar (WebKit) */
  .areas-grid::-webkit-scrollbar,
  .routes-grid::-webkit-scrollbar {
    display: none;
  }

  /* Each card becomes a snap slide */
  .area-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .route-card {
    min-width: 78%;
    scroll-snap-align: start;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f413d5c *//* =========================
   ABOUT US SECTION
========================= */

.about {
  padding: 6rem 0;
  background: #ffffff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .about-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

/* LEFT CONTENT */
.about-content {
  max-width: 620px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7c4f;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #18181b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.05rem;
  color: #3f3f46;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 14px;
  color: #52525b;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ACTIONS */
.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-primary {
  background: #18181b;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.about-primary:hover {
  background: #27272a;
}

.about-secondary {
  border: 1px solid #d4d4d8;
  color: #18181b;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.about-secondary:hover {
  border-color: #18181b;
}

/* RIGHT IMAGE COLUMN */
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* IMAGE EYEBROWS */
.about-media-eyebrow {
  position: absolute;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}

.about-media-eyebrow.top {
  top: 16px;
}

.about-media-eyebrow.bottom {
  bottom: 16px;
}

/* MOBILE */
@media (max-width: 767px) {
  .about-media {
    min-height: 280px;
  }

  .about-media-eyebrow {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1bf9a30 *//* =========================
   PREMIUM BENEFITS
========================= */

.benefits {
  padding: 5rem 0;
  background: #ffffff;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .benefits-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #18181b;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #18181b;
}

.benefit-card p {
  font-size: 14px;
  color: #52525b;
  line-height: 1.6;
}

/* =========================
   CTA PRIMARY
========================= */

.cta-primary {
  background: #18181b;
  color: #ffffff;
  padding: 6rem 24px;
  border-radius: 40px 40px 0 0;
  position: relative;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-inner p {
  color: #d4d4d8;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-main {
  background: #ffffff;
  color: #18181b;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

.cta-secondary {
  border: 1px solid #52525b;
  color: #e4e4e7;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
}

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

.contact {
  background: #09090b;
  color: #d4d4d8;
  padding: 4rem 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.contact-info h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-areas {
  font-size: 13px;
  color: #71717a;
  margin-top: 12px;
}

.contact-actions {
  display: flex;
  gap: 12px;
}

.contact-btn {
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.contact-btn.dark {
  background: #27272a;
  color: #ffffff;
}

.contact-btn.light {
  background: #ffffff;
  color: #18181b;
}

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

.footer {
  background: #09090b;
  padding: 3rem 0;
  color: #71717a;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links a {
  color: #71717a;
  margin-left: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3bf307d *//* =========================
   CONTACT OPTIONS
========================= */

.cbc-contact-options {
  background: #ffffff;
  padding: 5rem 24px;
}

/* DESKTOP GRID */
.cbc-contact-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ITEM (CLICKABLE) */
.cbc-contact-item {
  display: block;
  padding: 36px 32px;
  text-align: left;

  text-decoration: none;
  background: transparent;

  border-top: 1px solid #e4e4e7;
  border-bottom: 1px solid #e4e4e7;
  border-left: 1px solid #e4e4e7;

  scroll-snap-align: start;
}

.cbc-contact-item:last-child {
  border-right: 1px solid #e4e4e7;
}

/* Remove button default styles */
.cbc-contact-item.cbc-chat-trigger {
  background: none;
  cursor: pointer;
  text-align: left;
}

/* HOVER */
.cbc-contact-item:hover {
  background: #fafafa;
}

/* EYEBROW */
.cbc-contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7c4f;
  font-weight: 600;
  margin-bottom: 8px;
}

/* TITLE */
.cbc-contact-item h3 {
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 10px;
}

/* TEXT */
.cbc-contact-text {
  font-size: 14px;
  line-height: 1.6;
  color: #52525b;
  margin-bottom: 14px;
}

/* LINK */
.cbc-contact-link {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #18181b;
}

/* =========================
   MOBILE CAROUSEL
========================= */

@media (max-width: 900px) {

  .cbc-contact-grid {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .cbc-contact-item {
    min-width: 85%;
    border-right: 1px solid #e4e4e7;
  }

  /* hide scrollbar */
  .cbc-contact-grid::-webkit-scrollbar {
    display: none;
  }
}/* End custom CSS */