@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --nx-font-family: Poppins, Helvetica, "sans-serif";
  --nx-bg-primary: #fbfbfb;
  --nx-bg-very-light: #f9f9f9;
  --nx-border-light: #e5e7eb;
  --nx-link-anchor: #0071A6;
  --nx-link-nav: #38a3ca;
  --nx-link-nav-hover: #51bde4;
  --nx-link-teal: #57BFBF;
  --nx-link-teal-hover: #11ACAC;
  --nx-text-header: #444;
  --nx-text-body: #3F4254;
  --nx-text-secondary: #7a8e9e;
  --nx-text-orange: #D57815;
  --nx-text-muted: #9ca3af;
  --nx-icon-blue: #2c8bc4;
  --nx-very-light-gray-blue: #f6f8fa;
  --nx-text-muted-blue: #79B5C8;
  --nx-text-gray-blue: #6b7280;
  --nx-medium-dark-blue: #006b97;
  --nx-dark-blue: #024780;
  --nx-very-dark-blue: #0D2236;
  --nx-gray: #8e8e8e;
  --nx-medium-gray: #97979f;
  --nx-light-gray: #ddd;
  --nx-very-light-gray: #eee;
  --nx-extra-light-gray: #f8f8f8;
  --nx-white: #fff;
  --nx-off-white: #F6F5F0;
  --nx-dark-gray: #444;
  --nx-very-dark-gray: #222;
  --nx-black: #000;
  --nx-info: #1fb1c1; }

/* #region NX Body =================== */
.nx-html.html-default,
.nx-body.body-default {
  height: 100%;
  margin: 0; }

.nx-body.body-default {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--nx-bg-primary);
  font-family: var(--nx-font-family);
  font-size: 14px;
  color: var(--nx-text-body);
  line-height: 1.5; }

.trip-request {
  max-width: 1200px;
  margin: auto; }

.text-muted,
.small-muted-text {
  color: var(--nx-text-muted); }

.card.card-custom {
  box-shadow: none;
  border: 1px solid var(--nx-border-light); }

.offerList .offer-card-list .offer-card2 {
  box-shadow: none;
  border: 1px solid var(--nx-border-light); }

.offerList .offer-card-list {
  justify-content: space-evenly; }

.offerList .offer-card-list .offer-card2 .offer-card2-title,
.offerList .offer-card-list .offer-card2 .offer-card2-body,
.offerList .offer-card-list .offer-card2 .offer-card2-footer {
  padding-left: 15px;
  padding-right: 15px; }

.nx-body .info-trip-container {
  background-color: #fff;
  padding: 1.95rem;
  border: 1px solid var(--nx-border-light);
  border-radius: .42rem; }

.nx-body .info-trip-container h4 {
  font-size: 24px;
  color: var(--nx-text-header);
  border-bottom: 3px double var(--nx-border-light);
  line-height: 2; }

.nx-body .trip-request .trip-request-content .trip-request-input input[type="text"],
.nx-body .trip-request .trip-request-content .trip-request-input input[type="date"],
.nx-body .trip-request .trip-request-content .trip-request-input input[type="email"],
.nx-body .trip-request .trip-request-content .trip-request-input textarea,
.nx-body .trip-request .trip-request-content .trip-request-input select {
  color: #444;
  font-size: 16px;
  width: calc(100% - 30px) !important;
  border: 1px solid var(--nx-border-light);
  border-radius: 3px;
  height: 32px;
  padding: 3px; }

/* #region Background Colors & Contrasting Colors */
.nx-body .primary-bg-color {
  background: var(--nx-medium-dark-blue);
  color: var(--nx-white); }

.nx-body .secondary-bg-color {
  background: var(--nx-very-dark-blue);
  color: var(--nx-white); }

.nx-body .secondary-bg-color a {
  color: var(--nx-very-light-gray); }

.nx-body .secondary-bg-color a:focus,
.nx-body .secondary-bg-color a:hover {
  color: var(--nx-white); }

.nx-body .tertiary-bg-color {
  background: var(--nx-off-white); }

.nx-body .tertiary-bg-color a {
  color: var(--nx-dark-gray); }

.nx-body .tertiary-bg-color a:focus,
.nx-body .tertiary-bg-color a:hover {
  color: var(--nx-black); }

/* #endregion */
/* #region Typography */
.nx-body .primary-font-color {
  color: var(--nx-text-body); }

.nx-body .secondary-font-color {
  color: var(--nx-text-secondary); }

.nx-body a {
  color: var(--nx-link-nav); }

.nx-body a:focus,
.nx-body a:hover {
  color: var(--nx-link-nav-hover); }

.nx-body h1 {
  font-size: 2.25rem;
  color: var(--nx-text-header); }

.nx-body h2 {
  font-size: 1.625rem;
  color: var(--nx-text-header); }

.nx-body h3 {
  font-size: 1.325rem;
  color: var(--nx-text-header); }

.nx-body h4 {
  font-size: 1.225rem;
  color: var(--nx-text-header); }

.nx-body h6 {
  font-size: 1.125rem;
  color: var(--nx-text-header); }

.nx-body b,
.nx-body strong {
  font-weight: 600; }

/* #endregion */
/* #region Borders */
.nx-body .primary-border {
  border: 1px solid var(--nx-border-light); }

.nx-body .secondary-border {
  border: 1px solid var(--nx-dark-gray); }

.nx-body .tertiary-border {
  border: 1px solid var(--nx-extra-light-gray); }

/* #endregion */
/* #endregion NX Body =================== */
/* #region NX Header =================== */
.nx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  margin-bottom: 1rem;
  padding: 15px 5%;
  background-color: var(--nx-white);
  border-bottom: 1px solid var(--nx-border-light); }

.nx-container-header {
  width: 100%; }

.nx-header-padding {
  padding-top: 90px; }

.advisor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--nx-very-dark-gray); }

.advisor-header div {
  display: flex;
  align-items: center; }

.site-logo .img-fluid {
  height: 45px;
  text-align: center; }

.site-agency-name a,
.site-agency-website a {
  color: var(--nx-very-dark-gray); }

.contact-info a {
  color: var(--nx-very-dark-gray); }

/* #region Navigation */
.nx-menu-top {
  display: block; }

.nx-menu-bottom {
  display: none; }

.nx-menu {
  padding: 0;
  position: relative;
  z-index: 1021; }

.nx-menu nav {
  margin: 0;
  padding: 2px;
  line-height: 0.9em;
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2; }

.nx-menu nav a {
  color: #555555;
  font-weight: normal; }

.nx-menu nav a:focus,
.nx-menu nav a:hover {
  color: #444444;
  text-decoration: none; }

.nx-menu nav ul li:hover > ul {
  display: block;
  position: absolute;
  z-index: 99; }

.nx-menu nav ul {
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0; }

.nx-menu nav ul:after {
  content: "";
  clear: both;
  display: block; }

.nx-menu nav ul li {
  float: left;
  background-color: #fbfbfb; }

.nx-menu nav ul li.more {
  padding-right: 10px;
  background-image: url(../Images/caret-down.png);
  background-repeat: no-repeat;
  background-position: right 18px top 14px; }

.nx-menu nav ul li a {
  display: block;
  padding: 1rem 1.5rem; }

.nx-menu nav ul li.current a {
  color: #444444; }

.nx-menu nav ul li:hover {
  background-color: #F6F5F0; }

.nx-menu nav ul ul {
  display: none;
  position: absolute;
  line-height: 1.2em;
  min-width: 200px;
  border-radius: 0; }

.nx-menu nav ul ul li {
  float: none;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  position: relative;
  background: #F6F5F0;
  min-width: 200px; }

.nx-menu nav ul ul li.more {
  padding-right: 0;
  background-image: url(../Images/caret-right.png);
  background-repeat: no-repeat;
  background-position: right 10px top 16px; }

.nx-menu nav ul ul li:hover {
  background-color: #fbfbfb; }

.nx-menu nav ul ul ul {
  position: absolute;
  left: 101%;
  top: 0; }

.nx-menu nav ul ul ul li {
  background: #fbfbfb;
  min-width: 200px; }

.nx-menu nav .selected {
  background: #e9e8e2; }

@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem; } }

/* #endregion */
@media screen and (max-width: 680px) {
  .advisor-email-header {
    display: none !important; } }

/* #endregion NX Header =================== */
/* #region NX Page =================== */
.nx-page {
  flex: 1; }

.nx-page .nx-container-size-default > .row,
.nx-page .nx-container-size-default > div > .row {
  margin: 0 auto;
  max-width: 1200px; }

.nx-page .form-control {
  border: 1px solid var(--nx-border-light); }

/* #endregion NX Page =================== */
/* #region NX Footer =================== */
.nx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  margin-top: 1rem;
  padding: 40px 5%;
  background-color: var(--nx-white);
  border-top: 1px solid var(--nx-border-light); }

.nx-container-footer {
  width: 100%; }

.advisor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--nx-very-dark-gray); }

.advisor-footer div {
  display: flex; }

@media screen and (max-width: 680px) {
  .contact-info-footer {
    display: none !important; }
  .advisor-footer > div {
    width: 100%; } }

/* #endregion NX Footer =================== */
/* #region Search Results */
.sr-nongrid-offerbody.card.card-custom {
  border: 1px solid var(--nx-border-light);
  border-radius: .42rem;
  overflow: hidden;
  box-shadow: none; }

.sr-nongrid-offerbody.card.card-custom .offer-img {
  border-radius: .42rem; }

.sr-nongrid-offerbody.card.card-custom .offer-title {
  color: var(--nx-dark-gray); }

.sr-nongrid-offerbody .card-footer {
  background-color: var(--nx-white) !important;
  text-transform: uppercase;
  color: var(--nx-text-body);
  font-weight: 500;
  font-size: 12px;
  border-top: 1px solid var(--nx-border-light); }

.offer-itinerary {
  font-size: .85rem;
  color: var(--nx-dark-gray); }

/* #endregion */
/* #region Offer Details */
.od-jump-links .offer-detail-jump-links {
  color: #0071A6; }

.od-header-link {
  color: var(--nx-black) !important;
  font-size: 1.5rem; }

.od-header-link:hover {
  color: var(--nx-link-nav-hover) !important;
  font-size: 1.5rem; }

#details .trip-details-offer-subtitle, #details-preview .trip-details-offer-subtitle {
  font-size: 12px;
  font-weight: 500; }

#details .trip-details-title {
  font-size: 2.3rem;
  line-height: 3.375rem;
  letter-spacing: -.125rem;
  color: var(--nx-very-dark-blue);
  font-weight: 400; }

#details .offer-subtitle {
  font-style: normal;
  font-size: 1.2rem; }

.trip-details-column .small-muted-text {
  color: var(--nx-medium-gray) !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 1rem;
  letter-spacing: .05938rem; }

#details .trip-details-price {
  font-size: 2rem;
  color: var(--nx-dark-gray);
  cursor: pointer; }

#details .text-highlight {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--nx-text-orange); }

#details .font-weight-bold {
  font-weight: 500; }

a.od-info-links {
  color: var(--nx-link-anchor); }

a.od-info-links:hover {
  color: var(--nx-link-nav); }

.od-info-links.active::before {
  background-color: var(--nx-link-anchor); }

.od-info-container {
  background-color: var(--nx-bg-very-light); }

.od-additional-offers-header {
  background: var(--nx-very-light-gray-blue) !important; }

.od-additional-offers-header-title {
  font-size: 12px;
  color: var(--nx-text-gray-blue) !important; }

#details .table-striped > tbody > tr:nth-of-type(2n+1) > * {
  --bs-table-accent-bg: var(--nx-extra-light-gray); }

@media screen and (max-width: 58em) {
  .od-amenity-table-mobile td:nth-child(2n) {
    background-color: var(--nx-extra-light-gray); } }

.table.od-amenity-table th,
.table.od-amenity-table td {
  border: 1px solid #EBEDF3; }

@media screen and (min-width: 58.1em) {
  .od-amenity-table thead th:first-child {
    min-width: 275px; } }

.offer-section-title i {
  color: var(--nx-icon-blue); }

#details .additional-dates-terms .upper-text {
  color: var(--nx-text-gray-blue); }

.od-amenity-table thead th {
  font-size: 13px; }

.od-daytrip-container {
  background-color: var(--nx-extra-light-gray); }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--nx-dark-blue);
  border-color: var(--nx-dark-blue); }

.itinerary-timeline-container .timeline.timeline-1 .timeline-item .timeline-label {
  font-size: 13px;
  color: var(--nx-text-header); }

.itinerary-timeline-container a {
  color: var(--nx-link-anchor); }

.itinerary-timeline-container .timeline-badge .fa-map-marker-alt {
  color: var(--nx-icon-blue); }

#details .merchandising-heading,
#details .quickLink-heading,
#details .resort-heading {
  background: var(--nx-white);
  font-weight: 600;
  color: var(--nx-text-body);
  border-bottom: 1px solid var(--nx-border-light);
  text-transform: uppercase;
  font-size: 14px;
  white-space: normal; }

#details .merchandising-body,
#details .quickLink-body,
#details .resort-body {
  font-weight: 300;
  font-size: .95em;
  color: var(--nx-very-dark-gray);
  text-align: left; }

#details .resort-footer {
  background: var(--nx-white);
  color: var(--nx-link-nav);
  font-style: normal;
  text-align: center;
  font-size: 14px; }

#details .resort-footer label {
  font-weight: 500; }

/* #endregion */
/* #region Offer Compare */
.offer-compare-subtitle {
  font-style: italic;
  font-size: 14px;
  color: #8a8a8a; }

/* #endregion */
/* #region Advisor Profile */
/* Main Container */
.main-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 1.5rem; }

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  margin-bottom: 2rem; }

/* Decorative Circles */
.circle-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: linear-gradient(to bottom right, rgba(31, 177, 193, 0.1), transparent);
  border-radius: 50%;
  transform: translate(128px, -128px); }

.circle-medium {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, rgba(1, 116, 153, 0.1), transparent);
  border-radius: 50%;
  transform: translateY(64px); }

.circle-small {
  position: absolute;
  top: 80px;
  right: 160px;
  width: 64px;
  height: 64px;
  background: rgba(2, 71, 128, 0.05);
  border-radius: 50%; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; }

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-start; } }

/* Profile Photo */
.profile-photo-container {
  flex-shrink: 0;
  position: relative; }

.profile-image-wrapper {
  width: 164px;
  height: 164px;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.profile-image {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  display: block; }

.profile-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  width: 10rem;
  height: 10rem;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative; }

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  width: 10rem;
  height: 10rem;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #f3f4f6, #f9fafb);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.placeholder-content {
  text-align: center;
  color: #9ca3af; }

.placeholder-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 8px auto;
  color: #9ca3af;
  stroke-width: 1.5; }

.placeholder-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--nx-text-gray-blue); }

.profile-coming {
  background: var(--nx-white);
  border: 1px solid var(--nx-border-light);
  border-radius: .5rem;
  text-align: center;
  padding: 2rem;
  margin: 0 auto 3rem;
  max-width: 1200px; }

.profile-coming .icon-circle {
  width: 4rem;
  height: 4rem;
  background: rgba(87, 191, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem; }

.profile-coming .icon-circle i {
  color: var(--nx-link-teal); }

.profile-coming h2 {
  color: var(--nx-dark-blue);
  font-weight: 600; }

.profile-coming p {
  color: var(--nx-text-body); }

.profile-coming .btn-dark {
  background: var(--nx-dark-blue);
  border: none; }

.profile-coming .btn-outline-info {
  color: var(--nx-link-teal);
  border-color: var(--nx-link-teal); }

.profile-coming .btn.btn-gradient {
  width: 250px;
  margin-top: .5rem;
  justify-content: center;
  background: linear-gradient(to right, var(--nx-medium-dark-blue), var(--nx-info));
  color: var(--nx-white); }

.feature-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border-light);
  border-radius: .5rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%; }

.feature-card .icon-circle {
  width: 3rem;
  height: 3rem;
  background: rgba(87, 191, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem; }

.feature-card h5 {
  color: var(--nx-dark-blue);
  font-weight: 600; }

.feature-card p {
  color: var(--nx-text-body); }

/* Profile Info */
.profile-info {
  flex: 1;
  text-align: center; }

@media (min-width: 1024px) {
  .profile-info {
    text-align: left; } }

h1.profile-name {
  color: var(--nx-dark-blue); }

.profile-name {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--nx-dark-blue);
  margin-bottom: 0.75rem; }

.profile-title {
  font-size: 1.25rem;
  color: var(--nx-medium-dark-blue);
  font-weight: 500;
  margin-bottom: 1rem; }

.profile-page .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--nx-text-gray-blue); }

@media (min-width: 640px) {
  .profile-page .contact-info {
    flex-direction: row; } }

@media (min-width: 1024px) {
  .profile-page .contact-info {
    justify-content: flex-start; } }

.profile-page .contact-item {
  display: flex;
  align-items: center;
  justify-content: center; }

@media (min-width: 1024px) {
  .profile-page .contact-item {
    justify-content: flex-start; } }

.profile-page .contact-item i {
  margin-right: 0.5rem;
  color: var(--nx-info); }

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.875rem; }

.social-links a {
  color: var(--nx-text-gray-blue); }

@media (min-width: 1024px) {
  .social-links {
    justify-content: flex-start; } }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nx-text-gray-blue);
  text-decoration: none;
  transition: color 0.2s ease; }

.social-text {
  display: none; }

@media (min-width: 640px) {
  .social-text {
    display: inline; } }

.social-link.facebook:hover {
  color: #1877f2; }

.social-link.twitter:hover {
  color: #1da1f2; }

.social-link.instagram:hover {
  color: #e4405f; }

.social-link.website:hover {
  color: #024780; }

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center; }

@media (min-width: 640px) {
  .action-buttons {
    flex-direction: row; } }

@media (min-width: 1024px) {
  .action-buttons {
    justify-content: flex-start; } }

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s; }

.btn.btn-primary {
  background: var(--nx-dark-blue);
  color: white; }

.btn.btn-primary:hover {
  background: var(--nx-medium-dark-blue); }

.btn.btn-outline {
  border: 1px solid var(--nx-info);
  color: var(--nx-dark-blue);
  background: transparent; }

.btn.btn-outline:hover {
  background: rgba(31, 177, 193, 0.1); }

.btn.btn-gradient {
  background: linear-gradient(to right, var(--nx-medium-dark-blue), var(--nx-info));
  color: white;
  border: none;
  padding: .562rem .75rem; }

.btn.btn-gradient:hover,
.btn.btn-gradient:focus {
  background: linear-gradient(to right, var(--nx-dark-blue), var(--nx-medium-dark-blue));
  color: var(--nx-white); }

.btn.btn-white {
  background: white;
  color: var(--nx-dark-blue); }

.btn.btn-white:hover {
  background: #f0f9ff; }

.btn.btn-outline-white {
  border: 1px solid white;
  color: white;
  background: transparent; }

.btn.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1); }

.full-width {
  width: 100%; }

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem; }

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr; } }

/* Cards */
.card {
  background: var(--nx-white);
  border-radius: 12px;
  border: 1px solid var(--nx-border-light);
  overflow: hidden; }

.card-header {
  padding: 1.25rem;
  background: var(--nx-white);
  border-bottom: 1px solid var(--nx-border-light); }

.card-header h2 {
  font-size: 1.5rem;
  color: var(--nx-dark-blue);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem; }

.card-header h2 i {
  color: var(--nx-info); }

.card-header h3 {
  font-size: 1.125rem;
  color: var(--nx-dark-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.card-header h3 i {
  color: var(--nx-icon-blue); }

h6 i {
  color: var(--nx-icon-blue); }

.card-header p {
  margin-bottom: 0; }

.card-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem; }

/* About Section */
.biography {
  margin-bottom: 1.5rem; }

.biography p {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1rem; }

.specialties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6; }

@media (min-width: 768px) {
  .specialties {
    grid-template-columns: 1fr 1fr; } }

.specialty-item h6 {
  font-weight: 600;
  color: var(--nx-dark-blue);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.specialty-item h4 i {
  color: var(--nx-info); }

.specialty-item p {
  color: var(--nx-text-gray-blue); }

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }

/* Featured Trips */
.featured-trips {
  margin-bottom: 2rem; }

.trips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; }

@media (min-width: 768px) {
  .trips-grid {
    grid-template-columns: 1fr 1fr; } }

@media (min-width: 1024px) {
  .trips-grid {
    grid-template-columns: 1fr 1fr; } }

.trip-card {
  background: linear-gradient(to bottom right, #f9fafb, white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.2s; }

.trip-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.trip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem; }

.badge {
  background: rgba(31, 177, 193, 0.1);
  color: var(--nx-dark-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500; }

.season {
  font-size: 0.75rem;
  color: var(--nx-text-gray-blue); }

.trip-card h4 {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--nx-dark-blue);
  margin-bottom: 0.5rem; }

.destination {
  font-size: 0.875rem;
  color: var(--nx-medium-dark-blue);
  font-weight: 500;
  margin-bottom: 0.75rem; }

.description {
  color: var(--nx-text-gray-blue);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem; }

.learn-more {
  color: var(--nx-medium-dark-blue);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500; }

.learn-more:hover {
  color: var(--nx-dark-blue); }

/* Testimonials */
.testimonials {
  margin-bottom: 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; }

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr; } }

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr; } }

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }

.stars {
  display: flex;
  margin-bottom: 1rem;
  color: #fbbf24; }

.testimonial-card h4 {
  font-weight: 600;
  color: var(--nx-dark-blue);
  margin-bottom: 0.5rem; }

.testimonial-card p {
  color: #374151;
  font-style: italic;
  margin-bottom: 1rem; }

.testimonial-card cite {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nx-medium-dark-blue);
  font-style: normal; }

/* Contact Footer */
.contact-footer {
  background: linear-gradient(to right, var(--nx-dark-blue), var(--nx-medium-dark-blue), var(--nx-info));
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: white; }

.contact-footer h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem; }

.contact-footer p {
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  font-size: 1.125rem; }

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; }

/* #endregion */
