:root {
  --primary: #e59424;
  --primary-dark: #cc8320;
  --primary-light: #f0a940;
  --secondary: #1a5632;
  --secondary-light: #2a7a4a;
  --dark: #1a1a2e;
  --dark-2: #2c2c44;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e0e0e0;
  --light: #f5f5f5;
  --light-2: #f8f8f8;
  --white: #ffffff;
  --blue: #007aff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 20px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s ease;
  --container: 1170px;
}

/* === Bootstrap overrides === */
:root {
  --bs-primary: #e59424;
  --bs-primary-rgb: 229, 148, 36;
  --bs-link-color: #e59424;
  --bs-link-hover-color: #cc8320;
}
.nav-link.active, .nav-link:focus, .nav-link:hover,
.page-link.active, .page-link:focus, .page-link:hover,
.page-item.active .page-link {
  color: #e59424;
}
.page-item.active .page-link {
  background-color: #e59424;
  border-color: #e59424;
}
.page-link { color: #e59424; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary); color: white; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--dark); line-height: 1.3; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 15px; }

/* === TOP BAR === */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-left a { color: rgba(255,255,255,0.8); }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { color: var(--blue); margin-right: 8px; font-size: 0.9rem; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar-social {
  display: flex;
  gap: 2px;
}
.top-bar-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 0.85rem;
}
.top-bar-social a:hover { color: var(--primary); background: rgba(255,255,255,0.1); }

/* === MAP SECTION === */
.map-section {
  padding: 40px 0 80px;
  background: var(--light-2);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  position: relative;
  z-index: 1;
}
.east-africa-map {
  width: 100%;
  height: 520px;
  z-index: 0;
}
.east-africa-map .leaflet-container {
  font-family: var(--font-body);
}
.east-africa-map .leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
}
.east-africa-map .leaflet-popup-content {
  margin: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.east-africa-map .leaflet-marker-icon { cursor: pointer; }
.east-africa-map .leaflet-marker-icon:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 50%; }
.map-hint { color: var(--text-muted); font-size: 0.92rem; }
.map-hint i { color: var(--primary); margin-right: 6px; }
.map-popup-link {
  display: inline-block;
  margin-top: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 999px;
  transition: var(--transition);
}
.map-popup-link:hover { filter: brightness(1.08); transform: translateY(-1px); }
@media (max-width: 767px) {
  .east-africa-map { height: 360px; }
  .map-section { padding: 30px 0 60px; }
}

/* === NAVBAR === */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}
.main-nav.scrolled {
  box-shadow: var(--shadow-md);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 65px; width: auto; }
.nav-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-left: 10px;
}
.nav-brand .brand-accent { color: var(--primary); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 28px 18px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
}
.nav-menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-menu > li:hover::after { transform: scaleX(1); }

/* Desktop nav link separators */
@media (min-width: 992px) {
  .nav-menu > li + li > a {
    border-left: none;
    padding-left: 24px;
  }
  .nav-menu > li + li > a::after {
    content: '›';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--border);
    pointer-events: none;
  }
  .nav-menu > li:hover > a,
  .nav-menu > li.active > a {
    color: var(--primary);
  }
  .nav-menu > li > a {
    padding: 28px 22px;
    position: relative;
  }
  .nav-menu > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-menu > li:hover > a::before,
  .nav-menu > li.active > a::before {
    opacity: 1;
  }
  .nav-menu > li.has-dropdown:hover > a {
    color: var(--primary);
  }
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 8px 0;
  z-index: 1000;
}
.nav-menu > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 24px;
}
.dropdown-arrow { display: none; }
.dropdown-toggle::after { display: none !important; }

/* Mega dropdown — wide multi-column, centered with arrow */
.mega-dropdown {
  min-width: 480px;
  padding: 16px 20px;
  display: block;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  z-index: 1;
}
.nav-menu > li:hover > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-dropdown-header {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.mega-dropdown-header a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.mega-dropdown-header a:hover { color: var(--dark); }
.mega-dropdown-header a i { font-size: 0.75rem; margin-left: 4px; }
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mega-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.mega-dropdown-item:hover {
  background: var(--light);
}
.mega-dropdown-item:hover .mega-dropdown-item-name { color: var(--primary); }
.mega-dropdown-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.mega-dropdown-item-region {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.nav-search {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}
.nav-search:hover { background: var(--light); color: var(--primary); }
.nav-toggle {
  display: none;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-overlay { display: none; }

/* === HERO SLIDER === */
.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background: linear-gradient(135deg, #1a5632 0%, #1a1a2e 100%);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.3) 100%);
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-slide-content .container { width: 100%; }
.hero-text {
  max-width: 650px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--primary); transform: scale(1.2); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  border: none;
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* === SEARCH BAR === */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.search-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.search-field label i { color: var(--primary); margin-right: 6px; }
.search-field select,
.search-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light-2);
  transition: var(--transition);
  -webkit-appearance: none;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 148, 36, 0.1);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 148, 36, 0.35);
}
.btn-secondary {
  background: var(--secondary);
  color: white;
}
.btn-secondary:hover {
  background: var(--secondary-light);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* === SECTION HEADERS === */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header .title-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* === FEATURE CARDS === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon-1 { background: #fff3e0; color: var(--primary); }
.feature-icon-2 { background: #e8f5e9; color: var(--secondary); }
.feature-icon-3 { background: #e3f2fd; color: #1976d2; }
.feature-icon-4 { background: #fce4ec; color: #e53935; }
.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* === DESTINATION CARDS === */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
}
.dest-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.dest-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.dest-card-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
}
.dest-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

/* === TOUR CARDS === */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  color: white;
}
.tour-badge-discount { background: #e53935; top: 12px; left: 12px; }
.tour-badge-duration { background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); top: 12px; right: 12px; }
.tour-card-body { padding: 20px; }
.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.tour-card-meta i { color: var(--primary); margin-right: 4px; }
.tour-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.tour-card-title a { color: var(--dark); }
.tour-card-title a:hover { color: var(--primary); }
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--light-2);
}
.tour-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.tour-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.tour-price .old {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

/* === STATS === */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display: none; }
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 148, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: var(--primary);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-content {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { font-size: 0.82rem; color: var(--text-muted); }
.testimonial-stars { color: #ffc107; font-size: 0.8rem; margin-top: 2px; }
.testimonial-swiper .swiper-slide { height: auto; }
.testimonial-swiper .testimonial-card { height: 100%; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(229, 148, 36, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.5rem; color: white; }

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card-body { padding: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card-meta i { color: var(--primary); margin-right: 4px; }
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === VIDEO BACKGROUND SECTION === */
.video-bg-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
}
.video-bg-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 60px 20px;
}
.video-bg-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: white !important;
}
.video-bg-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  color: white !important;
}
.video-bg-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  color: var(--white);
  border: 2px solid var(--white);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .video-bg-section { min-height: 380px; }
  .video-bg-content { padding: 40px 16px; }
  .video-bg-content h2 { font-size: 1.6rem; }
  .video-bg-content p { font-size: 0.95rem; }
  .video-bg-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card-img { padding-top: 105%; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* === CTA === */
.cta-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cta-bg) center/cover no-repeat;
  opacity: 0.25;
}
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.cta-content p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-actions { display: flex; gap: 12px; }

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--light);
  padding: 60px 0;
}
.newsletter-form .input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form .btn {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.footer-brand h4 span { color: var(--primary); }
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 6px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact-list {
  list-style: none;
  padding: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-list i { color: var(--primary); margin-top: 3px; font-size: 0.85rem; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--primary); }

/* === PAGE HEADERS === */
.page-header {
  padding: 140px 0 50px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  position: relative;
}
.page-header p {
  color: rgba(255,255,255,0.8) !important;
  position: relative;
}
.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 12px;
  justify-content: center;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb a:hover { color: var(--primary); }
.page-header .breadcrumb .active { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(229, 148, 36, 0.4);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); color: white; transform: translateY(-3px); }

/* === WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 1040;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* WhatsApp widget tooltip */
.wa-widget { position: fixed; bottom: 30px; left: 30px; z-index: 1040; }
.wa-widget-tooltip {
  position: absolute; bottom: 64px; left: 0;
  background: var(--white); border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); width: 240px;
  font-size: 0.88rem; color: var(--text);
  animation: waBounce 3s ease infinite;
}
.wa-widget-tooltip p { margin: 0; padding-right: 18px; line-height: 1.4; }
.wa-widget-tooltip-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Trust badges bar */
.trust-bar { background: var(--dark); padding: 50px 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-item { padding: 20px 10px; }
.trust-number {
  font-size: 2.8rem; font-weight: 800; color: var(--primary);
  font-family: var(--font-heading); line-height: 1.1;
}
.trust-label {
  margin-top: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.trust-label i { margin-right: 6px; font-size: 0.8rem; }

/* Why Choose Us */
.wcu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.wcu-card {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.wcu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wcu-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(229,148,36,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 18px;
}
.wcu-card h5 { font-size: 1.05rem; margin-bottom: 10px; }
.wcu-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Partner logos bar */
.partners-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.partners-label { text-align: center; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; font-weight: 600; }
.partners-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-logo img { height: 90px; width: auto; transition: var(--transition); }
.partner-logo img:hover { transform: scale(1.05); }
a.partner-logo { text-decoration: none; }

/* Sticky nav */
.nav-sticky { position: sticky; top: 0; z-index: 1000; }

/* Newsletter */
.newsletter-inner { text-align: center; }
.newsletter-inner .overline { display: block; margin-bottom: 8px; }
.newsletter-inner h3 { margin-bottom: 10px; }
.newsletter-inner > p { color: var(--text-light); margin-bottom: 28px; }

/* === FORMS === */
.form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 148, 36, 0.1);
}
.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

/* === ACCORDION === */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
}
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius) !important;
}
.accordion-button:not(.collapsed) { color: var(--primary); background: var(--light); }
.accordion-button::after { filter: invert(40%); }
.accordion-body { padding: 0 20px 16px; color: var(--text-light); line-height: 1.8; }

/* === ALERTS === */
.messages-container .alert { border: none; border-radius: 0; font-weight: 500; }
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-danger, .alert-error { background: #fce4ec; color: #c62828; }

/* === 404 === */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light);
}
.page-404 .error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text .overline { display: block; margin-bottom: 12px; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.about-story-visual { position: relative; }
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: white;
  gap: 12px;
}
.about-placeholder i { font-size: 3rem; opacity: 0.7; }
.about-placeholder span { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; opacity: 0.8; }

.about-stat-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--primary);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(229, 148, 36, 0.35);
}
.about-stat-number { display: block; font-size: 2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1.1; }
.about-stat-label { display: block; font-size: 0.78rem; font-weight: 500; opacity: 0.9; margin-top: 4px; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  padding-top: 110%;
}
.team-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover .team-card-img::after { opacity: 1; }
.team-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
}
.team-card-placeholder i { font-size: 3.2rem; }
.team-card-placeholder-initial {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  transition: var(--transition);
}
.team-card:hover .team-card-placeholder-initial { background: var(--primary); border-color: var(--primary); }
.team-card-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.team-card:hover .team-card-social { opacity: 1; transform: translateY(0); }
.team-card-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.team-card-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.team-card-body { padding: 22px 20px 24px; }
.team-card-body h5 { margin-bottom: 4px; font-size: 1.05rem; }
.team-card-role {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-card-bio {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-bottom: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-empty { grid-column: 1/-1; text-align: center; }
.team-empty p { color: var(--text-muted); }

/* Tour card image wrapper — used in safari/daytrip lists */
.tour-card-img-wrap {
  height: 220px;
  overflow: hidden;
}
.tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-img-wrap img { transform: scale(1.05); }

/* === BLOG PAGE === */
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.blog-search { flex: 1; max-width: 400px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }

.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}
.blog-empty i { font-size: 3rem; color: var(--text-muted); margin-bottom: 20px; display: block; }
.blog-empty h4 { color: var(--text-muted); margin-bottom: 10px; }
.blog-empty p { color: var(--text-muted); }

.blog-pagination { margin-top: 40px; }

/* === BLOG DETAIL === */
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}
.blog-detail-main { min-width: 0; }
.blog-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}
.blog-detail-image img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.blog-detail-meta i { color: var(--primary); margin-right: 6px; }
.blog-detail-content {
  color: var(--text);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.blog-detail-content p { margin-bottom: 1.35rem; }
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}
.blog-detail-content h2 { font-size: 1.5rem; }
.blog-detail-content h3 { font-size: 1.3rem; }
.blog-detail-content ul, .blog-detail-content ol { margin: 0 0 1.35rem 1.25rem; padding-left: 0.5rem; }
.blog-detail-content li { margin-bottom: 0.5rem; }
.blog-detail-content a { color: var(--primary); text-decoration: underline; }
.blog-detail-content a:hover { color: var(--primary-dark); }
.blog-detail-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); margin: 1.5rem 0; }
.blog-detail-tags { margin-bottom: 40px; }
.blog-detail-tags-title {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-size: 0.8rem;
}
.blog-detail-tags-title i { margin-right: 6px; }
.blog-detail-tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-detail-tag {
  padding: 6px 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.blog-detail-tag:hover { background: var(--primary); border-color: var(--primary); color: white; }
.blog-share-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}
.blog-share-box h6 { font-weight: 700; margin: 0; }
.blog-share-links { display: flex; gap: 8px; }
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  color: white;
  transition: var(--transition);
}
.blog-share-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.blog-share-fb { background: #1877f2; }
.blog-share-x { background: #000000; }
.blog-share-wa { background: #25d366; }
.blog-share-mail { background: var(--text-muted); }

.blog-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
}
.blog-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.blog-author-info { min-width: 0; }
.blog-author-info h6 { margin-bottom: 4px; font-weight: 700; color: var(--dark); }
.blog-author-role { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; display: block; }
.blog-author-bio { color: var(--text-light); font-size: 0.92rem; margin: 0; }

.blog-related-title { margin-bottom: 30px; }

.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.blog-sidebar-card h5 { margin-bottom: 16px; font-weight: 700; }
.blog-sidebar-card h5 i { color: var(--primary); margin-right: 8px; }
.blog-sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.blog-sidebar-cat:last-child { border-bottom: none; }
.blog-sidebar-cat:hover { color: var(--primary); padding-left: 6px; }
.blog-sidebar-cat-count {
  background: var(--primary);
  color: white;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}
.blog-sidebar-recent {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-sidebar-recent:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.blog-sidebar-recent img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}
.blog-sidebar-recent-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  display: block;
  transition: var(--transition);
}
.blog-sidebar-recent-title:hover { color: var(--primary); }
.blog-sidebar-recent-date {
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  font-size: 0.82rem;
}
.blog-sidebar-recent-date i { margin-right: 4px; }

/* === CONTACT PAGE === */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-info-value { font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-info-sub { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact-form-header {
  padding: 30px 40px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: white;
}
.contact-form-header i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.contact-form-header h3 { margin-bottom: 6px; color: #fff; }
.contact-form-header p { opacity: 0.7; font-size: 0.9rem; margin: 0; }

.contact-form { padding: 32px 40px 40px; }
.contact-form .form-label { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(195, 143, 70, 0.12);
}

.contact-submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  font-weight: 700;
}

/* Sidebar */
.contact-sidebar { position: sticky; top: 100px; }

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-map-wrap iframe { display: block; width: 100%; }

.contact-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.contact-sidebar-card h5 {
  margin-bottom: 14px;
  font-size: 1rem;
}
.contact-sidebar-card h5 i { color: var(--primary); margin-right: 8px; }

.contact-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.95rem;
}
.contact-social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.contact-hours {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.btn-whatsapp-contact {
  width: 100%;
  background: #25d366;
  border-color: #25d366;
  color: white;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius);
}
.btn-whatsapp-contact:hover { background: #1da851; border-color: #1da851; color: white; }

/* === BOOKING PAGE === */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-form-header {
  padding: 30px 40px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: white;
}
.booking-form-header i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.booking-form-header h3 { margin-bottom: 6px; }
.booking-form-header p { opacity: 0.7; font-size: 0.9rem; margin: 0; }

.booking-form { padding: 32px 40px 40px; }
.booking-form .form-label { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.booking-form .form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(195, 143, 70, 0.12);
}

.booking-submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
}
.booking-form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 14px;
  margin-bottom: 0;
}
.booking-form-note i { margin-right: 4px; }

/* Sidebar */
.booking-sidebar { position: sticky; top: 100px; }

.booking-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.booking-sidebar-card h5 {
  margin-bottom: 16px;
  font-size: 1rem;
}
.booking-sidebar-card h5 i { color: var(--primary); margin-right: 8px; }

/* Package card */
.booking-package-card { padding: 0; overflow: hidden; }
.booking-package-img {
  height: 180px;
  overflow: hidden;
  background: var(--light);
}
.booking-package-img img { width: 100%; height: 100%; object-fit: cover; }
.booking-package-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: white;
}
.booking-package-placeholder i { font-size: 2.5rem; opacity: 0.5; }
.booking-package-body { padding: 20px; }
.booking-package-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.booking-package-body h5 { margin-bottom: 6px; }
.booking-package-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; line-height: 1.5; }
.booking-package-meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.booking-package-meta i { margin-right: 4px; color: var(--primary); }
.booking-package-price {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.booking-package-price strong {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 800;
}

/* Contact list */
.booking-contact-list { list-style: none; padding: 0; margin: 0; }
.booking-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.booking-contact-list li:last-child { margin-bottom: 0; }
.booking-contact-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.booking-contact-list li strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.booking-contact-list li span { color: var(--text-muted); font-size: 0.85rem; }

.btn-whatsapp {
  width: 100%;
  margin-top: 16px;
  background: #25d366;
  border-color: #25d366;
  color: white;
  font-weight: 600;
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; color: white; }

/* Benefits */
.booking-benefits-card {
  background: var(--secondary);
  border: none;
  color: white;
}
.booking-benefits-card h5 { color: white; }
.booking-benefits-card h5 i { color: white; }
.booking-benefits-list { list-style: none; padding: 0; margin: 0; }
.booking-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
}
.booking-benefits-list li i { opacity: 0.7; flex-shrink: 0; }

/* === TOUR DETAIL PAGE === */
.detail-hero { height: 60vh; min-height: 400px; position: relative; background: linear-gradient(135deg, #1a5632 0%, #1a1a2e 100%); }
.detail-hero-overlay { background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)); }
.detail-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.detail-hero .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.detail-hero .breadcrumb-item a:hover { color: white; }
.detail-hero .breadcrumb-item.active { color: white; }
.detail-hero-meta { display: flex; gap: 24px; color: rgba(255,255,255,0.85); font-size: 0.95rem; flex-wrap: wrap; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.detail-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

/* Tabs — horizontal scroll on mobile */
.detail-tabs {
  display: flex;
  gap: 4px;
  border: none;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0;
}
.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tabs .nav-item { flex: 0 0 auto; }
.detail-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 16px;
  white-space: nowrap;
  transition: var(--transition);
  background: transparent;
}
.detail-tabs .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}
.detail-tabs .nav-link:hover:not(.active) { color: var(--primary); }

/* Tab content */
.detail-tab-body {
  padding: 30px;
  background: var(--light);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.detail-tab-body h4 { margin-bottom: 16px; }
.detail-tab-content { color: var(--text-light); line-height: 1.8; }

.detail-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.detail-checklist { list-style: none; padding: 0; }
.detail-checklist li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.detail-checklist li i { margin-top: 3px; flex-shrink: 0; }
.checklist-included i { color: var(--secondary); }
.checklist-excluded i { color: #e53935; }

/* Tour gallery */
.detail-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.detail-gallery-item { display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.detail-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.detail-gallery-item:hover img { transform: scale(1.05); }

/* === DESTINATION DETAIL PAGE === */

/* Hero */
.dest-hero { height: 60vh; min-height: 420px; position: relative; overflow: hidden; background: linear-gradient(135deg, #1a5632 0%, #1a1a2e 100%); }
.dest-hero-slide { position: absolute; inset: 0; }
.dest-hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.dest-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.35) 100%); }
.dest-hero-content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 60px; z-index: 2; }
.dest-hero-title { font-size: 2.8rem; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.15; }
.dest-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.6; margin: 0; }

/* Stats bar */
.dest-stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.dest-stats-row { display: flex; gap: 0; flex-wrap: wrap; }
.dest-stat { display: flex; align-items: center; gap: 12px; padding: 12px 28px; border-right: 1px solid var(--border); flex: 1; min-width: 180px; }
.dest-stat:last-child { border-right: none; }
.dest-stat i { font-size: 1.3rem; color: var(--primary); width: 24px; text-align: center; flex-shrink: 0; }
.dest-stat small { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.dest-stat strong { font-size: 0.95rem; color: var(--dark); }

/* Layout */
.dest-layout { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.dest-main { min-width: 0; }

/* Sections */
.dest-section { margin-bottom: 48px; }
.dest-section:last-child { margin-bottom: 0; }

/* Section header */
.dest-section-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.dest-section-icon { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.dest-section-icon-green { background: var(--secondary); }
.dest-section-title { font-size: 1.4rem; font-weight: 700; margin: 0; line-height: 1.3; }
.dest-section-subtitle { font-size: 0.88rem; color: var(--text-muted); margin: 4px 0 0 0; }

/* Description */
.dest-description { color: var(--text-light); line-height: 1.85; font-size: 1.02rem; }

/* Attractions grid */
.dest-attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.dest-attraction-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; text-align: center; transition: all 0.25s ease; position: relative; overflow: hidden; }
.dest-attraction-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); opacity: 0; transition: opacity 0.25s ease; }
.dest-attraction-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.dest-attraction-card:hover::before { opacity: 1; }
.dest-attraction-num { width: 32px; height: 32px; background: rgba(229,148,36,0.1); color: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.dest-attraction-name { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 0; line-height: 1.4; }

/* Activities grid */
.dest-activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.dest-activity-card { display: flex; align-items: center; gap: 12px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; transition: all 0.25s ease; }
.dest-activity-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.dest-activity-icon { width: 40px; height: 40px; background: rgba(26,86,50,0.08); color: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.dest-activity-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* Best time card */
.dest-besttime-card { display: flex; align-items: center; gap: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.dest-besttime-left { display: flex; align-items: center; gap: 16px; padding: 24px 28px; flex: 1; }
.dest-besttime-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #f0a940, #e59424); color: white; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.dest-besttime-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
.dest-besttime-value { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 2px 0 0 0; }
.dest-besttime-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.dest-besttime-right { padding: 24px 28px; flex: 1; }
.dest-besttime-tip { display: flex; align-items: center; gap: 10px; }
.dest-besttime-tip i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.dest-besttime-tip span { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* Gallery */
.dest-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dest-gallery-item { display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.dest-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dest-gallery-item:hover img { transform: scale(1.06); }
.dest-gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.dest-gallery-overlay i { font-size: 1.5rem; color: white; }
.dest-gallery-item:hover .dest-gallery-overlay { opacity: 1; }

/* Map */
.dest-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.dest-map-wrap iframe { display: block; }

/* Sidebar */
.dest-sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.dest-info-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; border: 1px solid var(--border); }
.dest-info-card h5 { margin: 0 0 18px 0; font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.dest-info-card h5 i { color: var(--primary); }
.dest-info-list { list-style: none; padding: 0; margin: 0; }
.dest-info-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.dest-info-list li:last-child { border-bottom: none; }
.dest-info-list li i { color: var(--primary); width: 20px; text-align: center; font-size: 0.95rem; flex-shrink: 0; }
.dest-info-list li small { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.dest-info-list li strong { font-size: 0.95rem; }

/* CTA Card */
.dest-cta-card { background: var(--secondary); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; color: white; }
.dest-cta-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.dest-cta-card h5 { color: white; margin: 0 0 8px 0; font-size: 1.15rem; }
.dest-cta-card p { opacity: 0.85; font-size: 0.9rem; margin: 0 0 22px 0; }

/* Booking card */
.booking-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.booking-card-header {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 22px 24px;
}
.booking-card-header h4 { margin: 0; font-weight: 800; font-size: 1.15rem; }
.booking-card-body { padding: 28px; }

.booking-price { text-align: center; margin-bottom: 4px; }
.booking-price-current { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.booking-price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; margin-right: 8px; }
.booking-discount {
  background: #e53935;
  color: white;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}
.booking-price-per {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.booking-field { margin-bottom: 16px; }
.booking-field:last-of-type { margin-bottom: 22px; }
.booking-field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.booking-field label i { color: var(--primary); margin-right: 6px; }

.booking-submit { width: 100%; }

.booking-help {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.booking-help p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }

/* === RESPONSIVE — TABLET (≤ 991px) === */
@media (max-width: 991px) {

  /* Top bar: hide left section */
  .top-bar-left { display: none; }

  /* Hamburger toggle */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1060;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Slide-in nav menu */
  .main-nav { z-index: 1050; }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 1050;
    padding: 80px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    overscroll-behavior: contain;
    transform: translateX(100%);
  }
  .nav-menu.active {
    transform: translateX(0);
  }

  /* Mobile nav links — big touch targets */
  .nav-menu > li > a {
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }
  .nav-menu > li:last-child > a {
    border-bottom: none;
  }
  .nav-menu > li::after { display: none; }

  /* Mobile dropdown toggle */
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
  .dropdown-arrow {
    display: inline;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--muted);
  }
  .has-dropdown.open > .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Mobile dropdown */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: var(--light);
    border-radius: var(--radius);
    margin: 4px 0 8px;
    left: auto !important;
    min-width: 0 !important;
  }
  .has-dropdown.open > .nav-dropdown {
    max-height: 500px;
    padding: 12px 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
  }
  .has-dropdown.open > .nav-dropdown::-webkit-scrollbar { width: 4px; }
  .has-dropdown.open > .nav-dropdown::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
  .has-dropdown.open > .nav-dropdown::-webkit-scrollbar-track { background: var(--light); }
  .mega-dropdown {
    min-width: 0 !important;
    padding: 8px 16px !important;
    left: auto !important;
    transform: none !important;
  }
  .mega-dropdown::before { display: none !important; }
  .mega-dropdown-grid { grid-template-columns: 1fr; }
  .mega-dropdown-header { margin-bottom: 8px; padding-bottom: 8px; }
  .mega-dropdown-item { padding: 10px 12px; }
  .nav-menu > li:hover > .mega-dropdown { transform: none !important; }
  .has-dropdown.open > .mega-dropdown {
    transform: none !important;
    padding: 8px 16px !important;
    max-height: 600px;
  }
  .nav-dropdown li a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Grid layouts */
  .hero-section { min-height: 450px; }
  .hero-title { font-size: 2rem; }
  .search-box { grid-template-columns: 1fr 1fr; }

  /* Search FAB + hidden search bar on tablet */
  .search-fab { display: flex; }
  .search-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease,
                margin-top 0.35s ease;
  }
  .search-section.open {
    max-height: 300px;
    opacity: 1;
    margin-top: -30px;
    position: relative;
    z-index: 10;
  }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-detail-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { flex-direction: column; text-align: center; gap: 20px; }

  /* Page header */
  .page-header { padding: 100px 0 40px; }
  .page-header h1 { font-size: 2rem; }

  /* Section headers */
  .section-header h2 { font-size: 1.8rem; }

  /* Safari section */


  /* Destination cards */
  .dest-card { height: 280px; }

  /* Testimonials */
  .testimonial-card { padding: 24px; }

  /* Stats */
  .stat-number { font-size: 2rem; }

  /* Newsletter */
  .newsletter-form { max-width: 100%; }

  /* CTA */
  .cta-section { padding: 40px 0; }

  /* Footer */
  .footer-top { padding: 40px 0 20px; }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Admin table overflow */
  .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-card-body .table-wrapper { margin: 0 -16px; padding: 0 16px; }

  /* Admin form padding */
  .form-section { padding: 24px; }

  /* Detail page: 2-column on tablet */
  .detail-layout { grid-template-columns: 1fr 320px; gap: 30px; }
  .detail-hero { height: 50vh; min-height: 340px; }
  .booking-card { position: static; }

  /* Booking page */
  .booking-layout { grid-template-columns: 1fr 340px; gap: 30px; }
  .booking-sidebar { position: static; }

  /* About page */
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery: reduce columns on tablet */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr 340px; gap: 30px; }
  .contact-sidebar { position: static; }
}

/* === RESPONSIVE — PHONE (≤ 767px) === */
@media (max-width: 767px) {
  .hero-section { min-height: 380px; }
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 16px; }
  .search-box { grid-template-columns: 1fr; }

  /* ── SEARCH FAB — floating button reveals search bar ── */
  .search-fab {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1020;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(229, 148, 36, 0.45);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .search-fab i { font-size: 1rem; }
  .search-fab:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 148, 36, 0.55);
  }
  .search-fab:active {
    transform: translateX(-50%) scale(0.95);
    transition-duration: 0.1s;
  }
  .search-fab.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
  }

  /* Search section — hidden by default, slides down when revealed */
  .search-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease,
                margin-top 0.35s ease;
  }
  .search-section.open {
    max-height: 300px;
    opacity: 1;
    margin-top: -30px;
    position: relative;
    z-index: 10;
  }

  /* ── HORIZONTAL SWIPE CAROUSELS — MOBILE UX ──────────────────────────── */
  /* Container: scroll-snap with peek of next card + edge fade hint */
  .feature-grid,
  .dest-grid,
  .tour-grid,
  .gallery-grid,
  .blog-grid,
  .testimonial-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
    scroll-padding-left: 20px;
  }
  .feature-grid::-webkit-scrollbar,
  .dest-grid::-webkit-scrollbar,
  .tour-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }
  /* Right-edge fade hint — masks content to show "more to scroll" */
  .feature-grid,
  .dest-grid,
  .tour-grid,
  .gallery-grid,
  .blog-grid,
  .testimonial-grid {
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
  .feature-grid > *,
  .dest-grid > *,
  .tour-grid > *,
  .gallery-grid > *,
  .blog-grid > *,
  .testimonial-grid > * {
    flex: 0 0 80%;
    min-width: 0;
    scroll-snap-align: start;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease,
                box-shadow 0.35s ease;
  }

  /* Dim non-active cards to hint at the focused one */
  .feature-grid > *.swipe-dim,
  .dest-grid > *.swipe-dim,
  .tour-grid > *.swipe-dim,
  .gallery-grid > *.swipe-dim,
  .blog-grid > *.swipe-dim,
  .testimonial-grid > *.swipe-dim {
    opacity: 0.55;
    transform: scale(0.96);
  }

  /* Touch feedback — press state */
  .feature-grid > *:active,
  .dest-grid > *:active,
  .tour-grid > *:active,
  .gallery-grid > *:active,
  .blog-grid > *:active,
  .testimonial-grid > *:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }

  /* ── Feature cards — mobile ── */
  .feature-grid { gap: 12px; }
  .feature-grid > * { flex: 0 0 72%; }
  .feature-card { padding: 24px 16px; }
  .feature-icon { width: 56px; height: 56px; font-size: 1.3rem; margin-bottom: 14px; }
  .feature-card h5 { font-size: 0.95rem; margin-bottom: 6px; }
  .feature-card p { font-size: 0.82rem; line-height: 1.5; }

  /* ── Destination cards — mobile ── */
  .dest-grid > * { flex: 0 0 80%; height: 220px; }
  .dest-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .dest-card-overlay { padding: 18px; }
  .dest-card h4 { font-size: 1.05rem; }
  .dest-card p { font-size: 0.8rem; }

  /* ── Tour cards — mobile ── */
  .tour-grid > * { flex: 0 0 80%; }
  .tour-card-img { height: 160px; }
  .tour-card-body { padding: 14px; }
  .tour-card-meta { gap: 10px; font-size: 0.75rem; margin-bottom: 6px; }
  .tour-card-title { font-size: 0.95rem; margin-bottom: 10px; }
  .tour-card-footer { padding: 10px 14px; }
  .tour-price { font-size: 1.1rem; }

  /* ── Gallery — mobile ── */
  .gallery-grid > * { flex: 0 0 62%; }
  .gallery-grid { gap: 10px; }

  /* ── Blog cards — mobile ── */
  .blog-grid > * { flex: 0 0 80%; }
  .blog-card-img { height: 160px; }
  .blog-card-body { padding: 14px; }
  .blog-card-meta { font-size: 0.72rem; gap: 10px; margin-bottom: 6px; }
  .blog-card-title { font-size: 0.92rem; margin-bottom: 6px; }
  .blog-card-excerpt { font-size: 0.82rem; -webkit-line-clamp: 2; margin-bottom: 10px; }

  /* ── Testimonial cards — mobile ── */
  .testimonial-grid > * { flex: 0 0 80%; }
  .testimonial-card { padding: 20px; }
  .testimonial-quote { font-size: 2rem; margin-bottom: 8px; }
  .testimonial-content { font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; -webkit-line-clamp: 5; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

  /* ── Right-edge fade overlay (injected by JS) ── */
  .swipe-fade {
    display: none;
  }

  /* ── Swipe dots + counter ── */
  .swipe-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
  }
  .swipe-counter {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    min-width: 40px;
    text-align: center;
  }
  .swipe-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .swipe-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    padding: 0;
  }
  .swipe-dots .dot:hover {
    background: var(--text-muted);
  }
  .swipe-dots .dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(229, 148, 36, 0.35);
  }

  /* ── Stats row — mobile ── */
  .stats-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stats-grid {
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }
  .stats-grid > * {
    flex: 0 0 42%;
    min-width: 0;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 18px 12px;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .stats-grid > *.swipe-dim {
    opacity: 0.5;
    transform: scale(0.95);
  }
  .stat-item::after { display: none; }
  .stat-icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 10px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }

  /* ── Bootstrap row grids (safari, daytrip) ── */
  .mobile-swiper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .mobile-swiper::-webkit-scrollbar { display: none; }
  .mobile-swiper {
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }
  .mobile-swiper > * {
    flex: 0 0 80% !important;
    min-width: 0;
    scroll-snap-align: start;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease;
  }
  .mobile-swiper > *.swipe-dim {
    opacity: 0.55;
    transform: scale(0.96);
  }
  .mobile-swiper > *:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }

  /* Smaller logo on phone */
  .nav-brand img { height: 48px; }
  .nav-brand .brand-text { font-size: 1.1rem; }
  .main-nav .container { height: 64px; }

  /* Page header */
  .page-header { padding: 80px 0 30px; }
  .page-header h1 { font-size: 1.6rem; }

  /* Section headers */
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.95rem; }

  /* Tour cards */
  .tour-card-img { height: 180px; }

  /* Stats */
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.8rem; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }

  /* CTA / Newsletter */
  .cta-section { padding: 32px 0; }
  .cta-content h2 { font-size: 1.4rem; }
  .newsletter-form input[type="email"] { width: 100%; }

  /* Footer */
  .footer-top { padding: 32px 0 16px; }
  .footer-top h3 { font-size: 1rem; }

  /* 404 */
  .page-404 .error-code { font-size: 5rem; }

  /* Search fields */
  .search-field label { font-size: 0.78rem; }

  /* Form controls */
  .form-control { font-size: 16px; /* prevents iOS zoom */ }

  /* Admin tables — stacked card view */
  .admin-table thead { display: none; }
  .admin-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid var(--adm-border);
  }
  .admin-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: none;
    white-space: normal;
  }
  .admin-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--adm-text-muted);
    min-width: 100px;
  }

  /* Detail page: single column on phone */
  .detail-layout { grid-template-columns: 1fr; }
  .detail-hero { height: 50vh; min-height: 300px; }
  .detail-hero-meta { gap: 12px; font-size: 0.85rem; flex-direction: column; }

  /* Tabs: medium bordered items in a scrollable row */
  .detail-tabs {
    flex-wrap: nowrap;
    gap: 6px;
    border-bottom: none;
    overflow-x: auto;
    padding-bottom: 0;
  }
  .detail-tabs .nav-item { flex: 0 0 auto; }
  .detail-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    white-space: nowrap;
  }
  .detail-tabs .nav-link span { display: none; }
  .detail-tabs .nav-link i { font-size: 0.85rem; margin: 0; }
  .detail-tabs .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  .detail-tab-body { padding: 20px; }
  .detail-includes-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Destination detail */
  .dest-hero { height: 50vh; min-height: 340px; }
  .dest-hero-title { font-size: 2rem; }
  .dest-hero-subtitle { font-size: 0.95rem; }
  .dest-layout { grid-template-columns: 1fr; gap: 36px; }
  .dest-sidebar-sticky { position: static; }
  .dest-gallery { grid-template-columns: repeat(2, 1fr); }
  .dest-attractions-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-activities-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .wcu-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-track { gap: 32px; }

  /* Booking sidebar goes below content, full width, sticky bottom */
  .booking-card { position: static; border-radius: var(--radius-lg); }
  .detail-sidebar { order: 3; }
  .booking-card-header { padding: 18px; }
  .booking-card-body { padding: 22px; }
  .booking-price-current { font-size: 1.8rem; }

  /* About page */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img { height: 280px; }
  .about-stat-badge { bottom: -16px; right: 16px; padding: 16px 20px; }
  .about-stat-number { font-size: 1.6rem; }
  .about-stat-label { font-size: 0.72rem; }

  /* Team: horizontal swipe */
  .team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card {
    flex: 0 0 80%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .team-card-img { height: 180px; }
  .team-card-body { padding: 16px; }

  /* Booking page */
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-header { padding: 24px; }
  .booking-form { padding: 24px; }
  .booking-sidebar { order: -1; }
  .booking-package-img { height: 150px; }

  /* Tour card image wrapper */
  .tour-card-img-wrap { height: 180px; }

  /* Contact page */
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-header { padding: 24px; }
  .contact-form { padding: 24px; }
  .contact-sidebar { order: -1; }

  /* Blog page */
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { max-width: 100%; }
  .blog-filters { justify-content: flex-start; }

  /* Destination detail */
  .dest-hero { height: 45vh; min-height: 300px; }
  .dest-hero-content { padding-bottom: 40px; }
  .dest-hero-title { font-size: 1.6rem; }
  .dest-hero-subtitle { font-size: 0.88rem; }
  .dest-stats-row { flex-direction: column; gap: 0; }
  .dest-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 20px; }
  .dest-stat:last-child { border-bottom: none; }
  .dest-gallery { grid-template-columns: 1fr; }
  .dest-attractions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dest-attraction-card { padding: 16px 14px; }
  .dest-attraction-name { font-size: 0.88rem; }
  .dest-activities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dest-activity-card { padding: 12px 14px; gap: 10px; }
  .dest-activity-icon { width: 34px; height: 34px; font-size: 0.85rem; }
  .dest-activity-name { font-size: 0.82rem; }
  .dest-besttime-card { flex-direction: column; }
  .dest-besttime-divider { width: 100%; height: 1px; }
  .dest-besttime-left, .dest-besttime-right { padding: 20px; }
  .dest-section-header { margin-bottom: 20px; }
  .dest-section-title { font-size: 1.25rem; }
  .trust-bar { padding: 36px 0; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-number { font-size: 2rem; }
  .trust-label { font-size: 0.75rem; }
  .wcu-grid { grid-template-columns: 1fr; gap: 20px; }  .partners-track { gap: 20px; }
  .partner-logo img { height: 65px; }
  .wa-widget { bottom: 20px; left: 20px; }
  .dest-section-title { font-size: 1.25rem; }
}

/* === FRONTEND TOAST NOTIFICATIONS === */
.frontend-toasts {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  width: calc(100vw - 40px);
}
.fe-toast {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: feToastIn 0.45s cubic-bezier(0.21,1.02,0.73,1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fe-toast.fe-toast-exit {
  animation: feToastOut 0.35s cubic-bezier(0.06,0.71,0.55,1) forwards;
}
.fe-toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.fe-toast-body { flex: 1; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.fe-toast-close {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 1.2rem; padding: 4px; line-height: 1; transition: color 0.2s; flex-shrink: 0;
}
.fe-toast-close:hover { color: var(--text); }
.fe-toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; border-radius: 0 0 0 var(--radius-lg);
  transition: width linear; opacity: 0.7; width: 100%;
}
.fe-toast-success { border-left: 4px solid var(--secondary); }
.fe-toast-success .fe-toast-icon { color: var(--secondary); }
.fe-toast-success .fe-toast-progress { background: var(--secondary); }
.fe-toast-error, .fe-toast-danger { border-left: 4px solid #e53935; }
.fe-toast-error .fe-toast-icon, .fe-toast-danger .fe-toast-icon { color: #e53935; }
.fe-toast-error .fe-toast-progress, .fe-toast-danger .fe-toast-progress { background: #e53935; }
.fe-toast-warning { border-left: 4px solid var(--primary); }
.fe-toast-warning .fe-toast-icon { color: var(--primary); }
.fe-toast-warning .fe-toast-progress { background: var(--primary); }
.fe-toast-info, .fe-toast-none { border-left: 4px solid #1976d2; }
.fe-toast-info .fe-toast-icon, .fe-toast-none .fe-toast-icon { color: #1976d2; }
.fe-toast-info .fe-toast-progress, .fe-toast-none .fe-toast-progress { background: #1976d2; }
@keyframes feToastIn { from { transform: translateX(120%) scale(0.95); opacity: 0; } to { transform: translateX(0) scale(1); opacity: 1; } }
@keyframes feToastOut { from { transform: translateX(0) scale(1); opacity: 1; } to { transform: translateX(120%) scale(0.95); opacity: 0; } }
@media (max-width: 767px) {
  .frontend-toasts { top: auto; bottom: 20px; right: 10px; left: 10px; max-width: none; width: auto; }
}

/* === UTILITIES === */
.search-fab { display: none; }
.swipe-dots, .swipe-footer, .swipe-counter { display: none; }
.swipe-dim { opacity: 1 !important; transform: none !important; }
.text-primary-c { color: var(--primary) !important; }
.bg-primary-s { background: var(--primary) !important; }
.bg-dark-s { background: var(--dark) !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
@ i m p o r t   u r l ( ' h t t p s : / / f o n t s . g o o g l e a p i s . c o m / c s s 2 ? f a m i l y = M o n t s e r r a t : w g h t @ 3 0 0 ; 4 0 0 ; 5 0 0 ; 6 0 0 ; 7 0 0 ; 8 0 0 ; 9 0 0 & f a m i l y = O p e n + S a n s : w g h t @ 3 0 0 ; 4 0 0 ; 5 0 0 ; 6 0 0 ; 7 0 0 ; 8 0 0 & d i s p l a y = s w a p ' ) ; 
 
 : r o o t   { 
     - - p r i m a r y :   # e 5 9 4 2 4 ; 
     - - p r i m a r y - d a r k :   # c c 8 3 2 0 ; 
     - - p r i m a r y - l i g h t :   # f 0 a 9 4 0 ; 
     - - s e c o n d a r y :   # 1 a 5 6 3 2 ; 
     - - s e c o n d a r y - l i g h t :   # 2 a 7 a 4 a ; 
     - - d a r k :   # 1 a 1 a 2 e ; 
     - - d a r k - 2 :   # 2 c 2 c 4 4 ; 
     - - t e x t :   # 3 3 3 3 3 3 ; 
     - - t e x t - l i g h t :   # 6 6 6 6 6 6 ; 
     - - t e x t - m u t e d :   # 9 9 9 9 9 9 ; 
     - - b o r d e r :   # e 0 e 0 e 0 ; 
     - - l i g h t :   # f 5 f 5 f 5 ; 
     - - l i g h t - 2 :   # f 8 f 8 f 8 ; 
     - - w h i t e :   # f f f f f f ; 
     - - b l u e :   # 0 0 7 a f f ; 
     - - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
     - - s h a d o w - m d :   0   4 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
     - - s h a d o w - l g :   0   8 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 ) ; 
     - - r a d i u s :   6 p x ; 
     - - r a d i u s - l g :   1 2 p x ; 
     - - r a d i u s - p i l l :   2 0 p x ; 
     - - f o n t - h e a d i n g :   ' M o n t s e r r a t ' ,   s a n s - s e r i f ; 
     - - f o n t - b o d y :   ' O p e n   S a n s ' ,   s a n s - s e r i f ; 
     - - t r a n s i t i o n :   0 . 3 s   e a s e ; 
     - - c o n t a i n e r :   1 1 7 0 p x ; 
 } 
 
 / *   = = =   B o o t s t r a p   o v e r r i d e s   = = =   * / 
 : r o o t   { 
     - - b s - p r i m a r y :   # e 5 9 4 2 4 ; 
     - - b s - p r i m a r y - r g b :   2 2 9 ,   1 4 8 ,   3 6 ; 
     - - b s - l i n k - c o l o r :   # e 5 9 4 2 4 ; 
     - - b s - l i n k - h o v e r - c o l o r :   # c c 8 3 2 0 ; 
 } 
 . n a v - l i n k . a c t i v e ,   . n a v - l i n k : f o c u s ,   . n a v - l i n k : h o v e r , 
 . p a g e - l i n k . a c t i v e ,   . p a g e - l i n k : f o c u s ,   . p a g e - l i n k : h o v e r , 
 . p a g e - i t e m . a c t i v e   . p a g e - l i n k   { 
     c o l o r :   # e 5 9 4 2 4 ; 
 } 
 . p a g e - i t e m . a c t i v e   . p a g e - l i n k   { 
     b a c k g r o u n d - c o l o r :   # e 5 9 4 2 4 ; 
     b o r d e r - c o l o r :   # e 5 9 4 2 4 ; 
 } 
 . p a g e - l i n k   {   c o l o r :   # e 5 9 4 2 4 ;   } 
 
 * ,   * : : b e f o r e ,   * : : a f t e r   {   m a r g i n :   0 ;   p a d d i n g :   0 ;   b o x - s i z i n g :   b o r d e r - b o x ;   } 
 h t m l   {   s c r o l l - b e h a v i o r :   s m o o t h ;   } 
 b o d y   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
     c o l o r :   v a r ( - - t e x t ) ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     l i n e - h e i g h t :   1 . 7 ; 
     - w e b k i t - f o n t - s m o o t h i n g :   a n t i a l i a s e d ; 
 } 
 : : s e l e c t i o n   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   c o l o r :   w h i t e ;   } 
 h 1 ,   h 2 ,   h 3 ,   h 4 ,   h 5 ,   h 6   {   f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   v a r ( - - d a r k ) ;   l i n e - h e i g h t :   1 . 3 ;   } 
 a   {   c o l o r :   v a r ( - - p r i m a r y ) ;   t e x t - d e c o r a t i o n :   n o n e ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   } 
 a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y - d a r k ) ;   } 
 i m g   {   m a x - w i d t h :   1 0 0 % ;   h e i g h t :   a u t o ;   } 
 . c o n t a i n e r   {   m a x - w i d t h :   v a r ( - - c o n t a i n e r ) ;   m a r g i n :   0   a u t o ;   p a d d i n g :   0   1 5 p x ;   } 
 
 / *   = = =   T O P   B A R   = = =   * / 
 . t o p - b a r   { 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     p a d d i n g :   8 p x   0 ; 
 } 
 . t o p - b a r   . c o n t a i n e r   { 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 . t o p - b a r - l e f t   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   2 4 p x ; 
 } 
 . t o p - b a r - l e f t   a   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ;   } 
 . t o p - b a r - l e f t   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . t o p - b a r - l e f t   i   {   c o l o r :   v a r ( - - b l u e ) ;   m a r g i n - r i g h t :   8 p x ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . t o p - b a r - r i g h t   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   4 p x ; 
 } 
 . t o p - b a r - s o c i a l   { 
     d i s p l a y :   f l e x ; 
     g a p :   2 p x ; 
 } 
 . t o p - b a r - s o c i a l   a   { 
     w i d t h :   3 2 p x ; 
     h e i g h t :   3 2 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 . t o p - b a r - s o c i a l   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   } 
 
 / *   = = =   M A P   S E C T I O N   = = =   * / 
 . m a p - s e c t i o n   { 
     p a d d i n g :   4 0 p x   0   8 0 p x ; 
     b a c k g r o u n d :   v a r ( - - l i g h t - 2 ) ; 
 } 
 . m a p - w r a p   { 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
     b o r d e r :   4 p x   s o l i d   v a r ( - - w h i t e ) ; 
     p o s i t i o n :   r e l a t i v e ; 
     z - i n d e x :   1 ; 
 } 
 . e a s t - a f r i c a - m a p   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   5 2 0 p x ; 
     z - i n d e x :   0 ; 
 } 
 . e a s t - a f r i c a - m a p   . l e a f l e t - c o n t a i n e r   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
 } 
 . e a s t - a f r i c a - m a p   . l e a f l e t - p o p u p - c o n t e n t - w r a p p e r   { 
     b o r d e r - r a d i u s :   1 0 p x ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
 } 
 . e a s t - a f r i c a - m a p   . l e a f l e t - p o p u p - c o n t e n t   { 
     m a r g i n :   1 4 p x   1 8 p x ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     l i n e - h e i g h t :   1 . 5 ; 
 } 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   { 
     . e a s t - a f r i c a - m a p   {   h e i g h t :   3 6 0 p x ;   } 
     . m a p - s e c t i o n   {   p a d d i n g :   3 0 p x   0   6 0 p x ;   } 
 } 
 
 / *   = = =   N A V B A R   = = =   * / 
 . m a i n - n a v   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     p o s i t i o n :   s t i c k y ; 
     t o p :   0 ; 
     z - i n d e x :   1 0 3 0 ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . m a i n - n a v . s c r o l l e d   { 
     b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
 } 
 . m a i n - n a v   . c o n t a i n e r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     h e i g h t :   8 0 p x ; 
 } 
 . n a v - b r a n d   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   } 
 . n a v - b r a n d   i m g   {   h e i g h t :   5 5 p x ;   w i d t h :   a u t o ;   } 
 . n a v - b r a n d   . b r a n d - t e x t   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   1 . 3 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     m a r g i n - l e f t :   1 0 p x ; 
 } 
 . n a v - b r a n d   . b r a n d - a c c e n t   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . n a v - m e n u   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 ; 
     l i s t - s t y l e :   n o n e ; 
 } 
 . n a v - m e n u   l i   {   p o s i t i o n :   r e l a t i v e ;   } 
 . n a v - m e n u   >   l i   >   a   { 
     d i s p l a y :   b l o c k ; 
     p a d d i n g :   2 8 p x   1 8 p x ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 0 2 e m ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . n a v - m e n u   >   l i   >   a : h o v e r , 
 . n a v - m e n u   >   l i . a c t i v e   >   a   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . n a v - m e n u   >   l i : : a f t e r   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   0 ; 
     l e f t :   1 8 p x ; 
     r i g h t :   1 8 p x ; 
     h e i g h t :   3 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     t r a n s f o r m :   s c a l e X ( 0 ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . n a v - m e n u   >   l i : h o v e r : : a f t e r   {   t r a n s f o r m :   s c a l e X ( 1 ) ;   } 
 
 / *   D e s k t o p   n a v   l i n k   s e p a r a t o r s   * / 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
     . n a v - m e n u   >   l i   +   l i   >   a   { 
         b o r d e r - l e f t :   n o n e ; 
         p a d d i n g - l e f t :   2 4 p x ; 
     } 
     . n a v - m e n u   >   l i   +   l i   >   a : : a f t e r   { 
         c o n t e n t :   ' � � � ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   7 p x ; 
         t o p :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
         f o n t - s i z e :   1 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         l i n e - h e i g h t :   1 ; 
         c o l o r :   v a r ( - - b o r d e r ) ; 
         p o i n t e r - e v e n t s :   n o n e ; 
     } 
     . n a v - m e n u   >   l i : h o v e r   >   a , 
     . n a v - m e n u   >   l i . a c t i v e   >   a   { 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
     } 
     . n a v - m e n u   >   l i   >   a   { 
         p a d d i n g :   2 8 p x   2 2 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
     } 
     . n a v - m e n u   >   l i   >   a : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         i n s e t :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ,   t r a n s p a r e n t ) ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
     } 
     . n a v - m e n u   >   l i : h o v e r   >   a : : b e f o r e , 
     . n a v - m e n u   >   l i . a c t i v e   >   a : : b e f o r e   { 
         o p a c i t y :   1 ; 
     } 
     . n a v - m e n u   >   l i . h a s - d r o p d o w n : h o v e r   >   a   { 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
     } 
 } 
 
 . n a v - d r o p d o w n   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   1 0 0 % ; 
     l e f t :   0 ; 
     m i n - w i d t h :   2 2 0 p x ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - t o p :   3 p x   s o l i d   v a r ( - - p r i m a r y ) ; 
     b o r d e r - r a d i u s :   0   0   v a r ( - - r a d i u s )   v a r ( - - r a d i u s ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     o p a c i t y :   0 ; 
     v i s i b i l i t y :   h i d d e n ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     l i s t - s t y l e :   n o n e ; 
     p a d d i n g :   8 p x   0 ; 
     z - i n d e x :   1 0 0 0 ; 
 } 
 . n a v - m e n u   >   l i : h o v e r   >   . n a v - d r o p d o w n   { 
     o p a c i t y :   1 ; 
     v i s i b i l i t y :   v i s i b l e ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 } 
 . n a v - d r o p d o w n   l i   a   { 
     d i s p l a y :   b l o c k ; 
     p a d d i n g :   1 0 p x   2 0 p x ; 
     c o l o r :   v a r ( - - t e x t ) ; 
     f o n t - s i z e :   0 . 8 8 r e m ; 
     f o n t - w e i g h t :   5 0 0 ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . n a v - d r o p d o w n   l i   a : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     p a d d i n g - l e f t :   2 4 p x ; 
 } 
 . d r o p d o w n - a r r o w   {   d i s p l a y :   n o n e ;   } 
 . d r o p d o w n - t o g g l e : : a f t e r   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   } 
 
 / *   M e g a   d r o p d o w n   � �    w i d e   m u l t i - c o l u m n ,   c e n t e r e d   w i t h   a r r o w   * / 
 . m e g a - d r o p d o w n   { 
     m i n - w i d t h :   4 8 0 p x ; 
     p a d d i n g :   1 6 p x   2 0 p x ; 
     d i s p l a y :   b l o c k ; 
     l e f t :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 1 0 p x ) ; 
 } 
 . m e g a - d r o p d o w n : : b e f o r e   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   - 7 p x ; 
     l e f t :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   r o t a t e ( 4 5 d e g ) ; 
     w i d t h :   1 2 p x ; 
     h e i g h t :   1 2 p x ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - l e f t :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     z - i n d e x :   1 ; 
 } 
 . n a v - m e n u   >   l i : h o v e r   >   . m e g a - d r o p d o w n   { 
     o p a c i t y :   1 ; 
     v i s i b i l i t y :   v i s i b l e ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 0 ) ; 
 } 
 . m e g a - d r o p d o w n - h e a d e r   { 
     p a d d i n g :   0   0   1 2 p x ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 . m e g a - d r o p d o w n - h e a d e r   a   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     f o n t - w e i g h t :   7 0 0 ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . m e g a - d r o p d o w n - h e a d e r   a : h o v e r   {   c o l o r :   v a r ( - - d a r k ) ;   } 
 . m e g a - d r o p d o w n - h e a d e r   a   i   {   f o n t - s i z e :   0 . 7 5 r e m ;   m a r g i n - l e f t :   4 p x ;   } 
 . m e g a - d r o p d o w n - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
     g a p :   2 p x ; 
 } 
 . m e g a - d r o p d o w n - i t e m   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   2 p x ; 
     p a d d i n g :   1 0 p x   1 2 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . m e g a - d r o p d o w n - i t e m : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
 } 
 . m e g a - d r o p d o w n - i t e m : h o v e r   . m e g a - d r o p d o w n - i t e m - n a m e   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . m e g a - d r o p d o w n - i t e m - n a m e   { 
     f o n t - s i z e :   0 . 8 8 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - t e x t ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . m e g a - d r o p d o w n - i t e m - r e g i o n   { 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
 } 
 . n a v - s e a r c h   { 
     w i d t h :   4 0 p x ; 
     h e i g h t :   4 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     f o n t - s i z e :   1 r e m ; 
     c u r s o r :   p o i n t e r ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . n a v - s e a r c h : h o v e r   {   b a c k g r o u n d :   v a r ( - - l i g h t ) ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . n a v - t o g g l e   { 
     d i s p l a y :   n o n e ; 
 } 
 . h a m b u r g e r - l i n e   { 
     d i s p l a y :   b l o c k ; 
     w i d t h :   2 4 p x ; 
     h e i g h t :   2 p x ; 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     b o r d e r - r a d i u s :   2 p x ; 
     t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
     t r a n s f o r m - o r i g i n :   c e n t e r ; 
 } 
 . n a v - o v e r l a y   {   d i s p l a y :   n o n e ;   } 
 
 / *   = = =   H E R O   S L I D E R   = = =   * / 
 . h e r o - s e c t i o n   { 
     p o s i t i o n :   r e l a t i v e ; 
     m i n - h e i g h t :   6 0 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . h e r o - s l i d e   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     o p a c i t y :   0 ; 
     t r a n s i t i o n :   o p a c i t y   1 s   e a s e ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 a 5 6 3 2   0 % ,   # 1 a 1 a 2 e   1 0 0 % ) ; 
 } 
 . h e r o - s l i d e . a c t i v e   {   o p a c i t y :   1 ;   } 
 . h e r o - s l i d e   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     o b j e c t - p o s i t i o n :   c e n t e r ; 
     d i s p l a y :   b l o c k ; 
 } 
 . h e r o - s l i d e - o v e r l a y   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 2 6 , 2 6 , 4 6 , 0 . 7 )   0 % ,   r g b a ( 2 6 , 2 6 , 4 6 , 0 . 3 )   1 0 0 % ) ; 
 } 
 . h e r o - s l i d e - c o n t e n t   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     z - i n d e x :   2 ; 
 } 
 . h e r o - s l i d e - c o n t e n t   . c o n t a i n e r   {   w i d t h :   1 0 0 % ;   } 
 . h e r o - t e x t   { 
     m a x - w i d t h :   6 5 0 p x ; 
 } 
 . h e r o - b a d g e   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     p a d d i n g :   6 p x   2 0 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 1 e m ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 . h e r o - t i t l e   { 
     f o n t - s i z e :   3 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   w h i t e ; 
     l i n e - h e i g h t :   1 . 1 5 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 . h e r o - s u b t i t l e   { 
     f o n t - s i z e :   1 . 1 r e m ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 5 ) ; 
     m a r g i n - b o t t o m :   3 0 p x ; 
     l i n e - h e i g h t :   1 . 7 ; 
 } 
 . h e r o - a c t i o n s   {   d i s p l a y :   f l e x ;   g a p :   1 4 p x ;   f l e x - w r a p :   w r a p ;   } 
 . h e r o - d o t s   { 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   3 0 p x ; 
     l e f t :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
     d i s p l a y :   f l e x ; 
     g a p :   8 p x ; 
     z - i n d e x :   5 ; 
 } 
 . h e r o - d o t   { 
     w i d t h :   1 2 p x ; 
     h e i g h t :   1 2 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 4 ) ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b o r d e r :   n o n e ; 
 } 
 . h e r o - d o t . a c t i v e   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   t r a n s f o r m :   s c a l e ( 1 . 2 ) ;   } 
 . h e r o - a r r o w   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
     w i d t h :   4 8 p x ; 
     h e i g h t :   4 8 p x ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 5 ) ; 
     b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   w h i t e ; 
     f o n t - s i z e :   1 r e m ; 
     c u r s o r :   p o i n t e r ; 
     z - i n d e x :   5 ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b o r d e r :   n o n e ; 
 } 
 . h e r o - a r r o w : h o v e r   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   } 
 . h e r o - a r r o w - p r e v   {   l e f t :   2 0 p x ;   } 
 . h e r o - a r r o w - n e x t   {   r i g h t :   2 0 p x ;   } 
 
 / *   = = =   S E A R C H   B A R   = = =   * / 
 . s e a r c h - s e c t i o n   { 
     p o s i t i o n :   r e l a t i v e ; 
     z - i n d e x :   1 0 ; 
     m a r g i n - t o p :   - 4 5 p x ; 
 } 
 . s e a r c h - b o x   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     p a d d i n g :   2 4 p x   3 0 p x ; 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r   1 f r   1 f r   a u t o ; 
     g a p :   1 6 p x ; 
     a l i g n - i t e m s :   e n d ; 
 } 
 . s e a r c h - f i e l d   l a b e l   { 
     d i s p l a y :   b l o c k ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
     m a r g i n - b o t t o m :   8 p x ; 
 } 
 . s e a r c h - f i e l d   l a b e l   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   6 p x ;   } 
 . s e a r c h - f i e l d   s e l e c t , 
 . s e a r c h - f i e l d   i n p u t   { 
     w i d t h :   1 0 0 % ; 
     p a d d i n g :   1 2 p x   1 6 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - t e x t ) ; 
     b a c k g r o u n d :   v a r ( - - l i g h t - 2 ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 } 
 . s e a r c h - f i e l d   s e l e c t : f o c u s , 
 . s e a r c h - f i e l d   i n p u t : f o c u s   { 
     o u t l i n e :   n o n e ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 1 ) ; 
 } 
 
 / *   = = =   B U T T O N S   = = =   * / 
 . b t n   { 
     d i s p l a y :   i n l i n e - f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     g a p :   8 p x ; 
     p a d d i n g :   1 2 p x   2 8 p x ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     b o r d e r :   n o n e ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . b t n - p r i m a r y   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
 } 
 . b t n - p r i m a r y : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y - d a r k ) ; 
     c o l o r :   w h i t e ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 3 5 ) ; 
 } 
 . b t n - s e c o n d a r y   { 
     b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ; 
     c o l o r :   w h i t e ; 
 } 
 . b t n - s e c o n d a r y : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - s e c o n d a r y - l i g h t ) ; 
     c o l o r :   w h i t e ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 . b t n - o u t l i n e   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   v a r ( - - w h i t e ) ; 
     b o r d e r :   2 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 5 ) ; 
 } 
 . b t n - o u t l i n e : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     c o l o r :   v a r ( - - d a r k ) ; 
 } 
 . b t n - o u t l i n e - p r i m a r y   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o r d e r :   2 p x   s o l i d   v a r ( - - p r i m a r y ) ; 
 } 
 . b t n - o u t l i n e - p r i m a r y : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
 } 
 . b t n - w h i t e   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     c o l o r :   v a r ( - - d a r k ) ; 
 } 
 . b t n - w h i t e : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 . b t n - l g   {   p a d d i n g :   1 4 p x   3 6 p x ;   f o n t - s i z e :   1 r e m ;   } 
 . b t n - s m   {   p a d d i n g :   8 p x   2 0 p x ;   f o n t - s i z e :   0 . 8 5 r e m ;   } 
 
 / *   = = =   S E C T I O N   H E A D E R S   = = =   * / 
 . s e c t i o n   {   p a d d i n g :   8 0 p x   0 ;   } 
 . s e c t i o n - a l t   {   b a c k g r o u n d :   v a r ( - - l i g h t ) ;   } 
 . s e c t i o n - h e a d e r   { 
     t e x t - a l i g n :   c e n t e r ; 
     m a r g i n - b o t t o m :   5 0 p x ; 
 } 
 . s e c t i o n - h e a d e r   . o v e r l i n e   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 1 5 e m ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 . s e c t i o n - h e a d e r   h 2   { 
     f o n t - s i z e :   2 . 2 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 . s e c t i o n - h e a d e r   p   { 
     f o n t - s i z e :   1 . 0 5 r e m ; 
     c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
     m a x - w i d t h :   6 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
 } 
 . s e c t i o n - h e a d e r   . t i t l e - l i n e   { 
     w i d t h :   6 0 p x ; 
     h e i g h t :   3 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     m a r g i n :   1 6 p x   a u t o   0 ; 
     b o r d e r - r a d i u s :   2 p x ; 
 } 
 
 / *   = = =   F E A T U R E   C A R D S   = = =   * / 
 . f e a t u r e - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
 } 
 . f e a t u r e - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     t e x t - a l i g n :   c e n t e r ; 
     p a d d i n g :   3 0 p x   2 0 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . f e a t u r e - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . f e a t u r e - i c o n   { 
     w i d t h :   7 0 p x ; 
     h e i g h t :   7 0 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     m a r g i n :   0   a u t o   2 0 p x ; 
     f o n t - s i z e :   1 . 6 r e m ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . f e a t u r e - c a r d : h o v e r   . f e a t u r e - i c o n   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   } 
 . f e a t u r e - i c o n - 1   {   b a c k g r o u n d :   # f f f 3 e 0 ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . f e a t u r e - i c o n - 2   {   b a c k g r o u n d :   # e 8 f 5 e 9 ;   c o l o r :   v a r ( - - s e c o n d a r y ) ;   } 
 . f e a t u r e - i c o n - 3   {   b a c k g r o u n d :   # e 3 f 2 f d ;   c o l o r :   # 1 9 7 6 d 2 ;   } 
 . f e a t u r e - i c o n - 4   {   b a c k g r o u n d :   # f c e 4 e c ;   c o l o r :   # e 5 3 9 3 5 ;   } 
 . f e a t u r e - c a r d   h 5   { 
     f o n t - s i z e :   1 . 0 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 . f e a t u r e - c a r d   p   { 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
     m a r g i n :   0 ; 
     l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 / *   = = =   D E S T I N A T I O N   C A R D S   = = =   * / 
 . d e s t - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
 } 
 . d e s t - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     h e i g h t :   3 2 0 p x ; 
     c u r s o r :   p o i n t e r ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . d e s t - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ;   } 
 . d e s t - c a r d   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   0 . 5 s   e a s e ; 
 } 
 . d e s t - c a r d : h o v e r   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 8 ) ;   } 
 . d e s t - c a r d - o v e r l a y   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 8 0 d e g ,   t r a n s p a r e n t   4 0 % ,   r g b a ( 0 , 0 , 0 , 0 . 8 )   1 0 0 % ) ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     j u s t i f y - c o n t e n t :   f l e x - e n d ; 
     p a d d i n g :   2 4 p x ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . d e s t - c a r d : h o v e r   . d e s t - c a r d - o v e r l a y   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 8 0 d e g ,   t r a n s p a r e n t   2 0 % ,   r g b a ( 0 , 0 , 0 , 0 . 8 5 )   1 0 0 % ) ; 
 } 
 . d e s t - c a r d   h 4   { 
     f o n t - s i z e :   1 . 2 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   w h i t e ; 
     m a r g i n - b o t t o m :   4 p x ; 
 } 
 . d e s t - c a r d   p   { 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ; 
     m a r g i n :   0 ; 
 } 
 . d e s t - c a r d - c o u n t   { 
     d i s p l a y :   i n l i n e - f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   6 p x ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - t o p :   8 p x ; 
 } 
 . d e s t - c a r d - b a d g e   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   1 4 p x ; 
     l e f t :   1 4 p x ; 
     p a d d i n g :   5 p x   1 4 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
 } 
 
 / *   = = =   T O U R   C A R D S   = = =   * / 
 . t o u r - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
 } 
 . t o u r - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . t o u r - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
 } 
 . t o u r - c a r d - i m g   { 
     p o s i t i o n :   r e l a t i v e ; 
     h e i g h t :   2 2 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . t o u r - c a r d - i m g   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   0 . 5 s   e a s e ; 
 } 
 . t o u r - c a r d : h o v e r   . t o u r - c a r d - i m g   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 6 ) ;   } 
 . t o u r - b a d g e   { 
     p o s i t i o n :   a b s o l u t e ; 
     p a d d i n g :   4 p x   1 2 p x ; 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     c o l o r :   w h i t e ; 
 } 
 . t o u r - b a d g e - d i s c o u n t   {   b a c k g r o u n d :   # e 5 3 9 3 5 ;   t o p :   1 2 p x ;   l e f t :   1 2 p x ;   } 
 . t o u r - b a d g e - d u r a t i o n   {   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;   b a c k d r o p - f i l t e r :   b l u r ( 6 p x ) ;   t o p :   1 2 p x ;   r i g h t :   1 2 p x ;   } 
 . t o u r - c a r d - b o d y   {   p a d d i n g :   2 0 p x ;   } 
 . t o u r - c a r d - m e t a   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 6 p x ; 
     f o n t - s i z e :   0 . 8 2 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 . t o u r - c a r d - m e t a   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   4 p x ;   } 
 . t o u r - c a r d - t i t l e   { 
     f o n t - s i z e :   1 . 1 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
     l i n e - h e i g h t :   1 . 4 ; 
 } 
 . t o u r - c a r d - t i t l e   a   {   c o l o r :   v a r ( - - d a r k ) ;   } 
 . t o u r - c a r d - t i t l e   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . t o u r - c a r d - f o o t e r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     p a d d i n g :   1 4 p x   2 0 p x ; 
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b a c k g r o u n d :   v a r ( - - l i g h t - 2 ) ; 
 } 
 . t o u r - p r i c e   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   1 . 2 5 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . t o u r - p r i c e   s m a l l   { 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   4 0 0 ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
 } 
 . t o u r - p r i c e   . o l d   { 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     f o n t - w e i g h t :   4 0 0 ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ; 
     m a r g i n - r i g h t :   6 p x ; 
 } 
 
 / *   = = =   S T A T S   = = =   * / 
 . s t a t s - s e c t i o n   { 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     p a d d i n g :   6 0 p x   0 ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . s t a t s - s e c t i o n : : b e f o r e   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 C s v g   w i d t h = ' 6 0 '   h e i g h t = ' 6 0 '   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g ' % 3 E % 3 C p a t h   d = ' M 3 0   0 L 6 0   3 0 L 3 0   6 0 L 0   3 0 z '   f i l l = ' n o n e '   s t r o k e = ' r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 3 ) '   s t r o k e - w i d t h = ' 1 ' / % 3 E % 3 C / s v g % 3 E " ) ; 
 } 
 . s t a t s - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
     g a p :   3 0 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 . s t a t - i t e m   { 
     t e x t - a l i g n :   c e n t e r ; 
     p a d d i n g :   2 0 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 . s t a t - i t e m : : a f t e r   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     r i g h t :   0 ; 
     t o p :   2 0 % ; 
     h e i g h t :   6 0 % ; 
     w i d t h :   1 p x ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ; 
 } 
 . s t a t - i t e m : l a s t - c h i l d : : a f t e r   {   d i s p l a y :   n o n e ;   } 
 . s t a t - i c o n   { 
     w i d t h :   5 0 p x ; 
     h e i g h t :   5 0 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 1 5 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     m a r g i n :   0   a u t o   1 4 p x ; 
     f o n t - s i z e :   1 . 2 r e m ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . s t a t - n u m b e r   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   w h i t e ; 
     l i n e - h e i g h t :   1 ; 
     m a r g i n - b o t t o m :   6 p x ; 
 } 
 . s t a t - l a b e l   { 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 6 ) ; 
     f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 / *   = = =   T E S T I M O N I A L S   = = =   * / 
 . t e s t i m o n i a l - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     p a d d i n g :   3 0 p x ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     h e i g h t :   1 0 0 % ; 
 } 
 . t e s t i m o n i a l - c a r d : h o v e r   { 
     b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
 } 
 . t e s t i m o n i a l - q u o t e   { 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     l i n e - h e i g h t :   1 ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
     f o n t - f a m i l y :   G e o r g i a ,   s e r i f ; 
 } 
 . t e s t i m o n i a l - c o n t e n t   { 
     f o n t - s i z e :   0 . 9 5 r e m ; 
     c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
     l i n e - h e i g h t :   1 . 8 ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     f o n t - s t y l e :   i t a l i c ; 
     f l e x :   1 ; 
     d i s p l a y :   - w e b k i t - b o x ; 
     - w e b k i t - l i n e - c l a m p :   4 ; 
     - w e b k i t - b o x - o r i e n t :   v e r t i c a l ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . t e s t i m o n i a l - a u t h o r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 2 p x ; 
 } 
 . t e s t i m o n i a l - a v a t a r   { 
     w i d t h :   4 8 p x ; 
     h e i g h t :   4 8 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . t e s t i m o n i a l - a v a t a r - f a l l b a c k   { 
     w i d t h :   4 8 p x ; 
     h e i g h t :   4 8 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   w h i t e ; 
     f o n t - w e i g h t :   7 0 0 ; 
 } 
 . t e s t i m o n i a l - n a m e   {   f o n t - w e i g h t :   7 0 0 ;   f o n t - s i z e :   0 . 9 5 r e m ;   } 
 . t e s t i m o n i a l - l o c a t i o n   {   f o n t - s i z e :   0 . 8 2 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   } 
 . t e s t i m o n i a l - s t a r s   {   c o l o r :   # f f c 1 0 7 ;   f o n t - s i z e :   0 . 8 r e m ;   m a r g i n - t o p :   2 p x ;   } 
 . t e s t i m o n i a l - s w i p e r   . s w i p e r - s l i d e   {   h e i g h t :   a u t o ;   } 
 . t e s t i m o n i a l - s w i p e r   . t e s t i m o n i a l - c a r d   {   h e i g h t :   1 0 0 % ;   } 
 
 / *   = = =   G A L L E R Y   = = =   * / 
 . g a l l e r y - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
     g a p :   1 2 p x ; 
 } 
 . g a l l e r y - i t e m   { 
     p o s i t i o n :   r e l a t i v e ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     o v e r f l o w :   h i d d e n ; 
     a s p e c t - r a t i o :   1 ; 
     c u r s o r :   p o i n t e r ; 
 } 
 . g a l l e r y - i t e m   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   0 . 5 s   e a s e ; 
 } 
 . g a l l e r y - i t e m : h o v e r   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 8 ) ;   } 
 . g a l l e r y - o v e r l a y   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 7 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     o p a c i t y :   0 ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . g a l l e r y - i t e m : h o v e r   . g a l l e r y - o v e r l a y   {   o p a c i t y :   1 ;   } 
 . g a l l e r y - o v e r l a y   i   {   f o n t - s i z e :   1 . 5 r e m ;   c o l o r :   w h i t e ;   } 
 
 / *   = = =   B L O G   C A R D S   = = =   * / 
 . b l o g - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
 } 
 . b l o g - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . b l o g - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ;   } 
 . b l o g - c a r d - i m g   { 
     h e i g h t :   2 0 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 . b l o g - c a r d - i m g   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   0 . 5 s   e a s e ; 
 } 
 . b l o g - c a r d : h o v e r   . b l o g - c a r d - i m g   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 6 ) ;   } 
 . b l o g - c a r d - c a t e g o r y   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   1 2 p x ; 
     l e f t :   1 2 p x ; 
     p a d d i n g :   4 p x   1 4 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
 } 
 . b l o g - c a r d - b o d y   {   p a d d i n g :   2 0 p x ;   } 
 . b l o g - c a r d - m e t a   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 4 p x ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 . b l o g - c a r d - m e t a   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   4 p x ;   } 
 . b l o g - c a r d - t i t l e   { 
     f o n t - s i z e :   1 . 0 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     l i n e - h e i g h t :   1 . 4 ; 
 } 
 . b l o g - c a r d - t i t l e   a   {   c o l o r :   v a r ( - - d a r k ) ;   } 
 . b l o g - c a r d - t i t l e   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . b l o g - c a r d - e x c e r p t   { 
     f o n t - s i z e :   0 . 8 8 r e m ; 
     c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
     l i n e - h e i g h t :   1 . 6 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
     d i s p l a y :   - w e b k i t - b o x ; 
     - w e b k i t - l i n e - c l a m p :   3 ; 
     - w e b k i t - b o x - o r i e n t :   v e r t i c a l ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 / *   = = =   V I D E O   B A C K G R O U N D   S E C T I O N   = = =   * / 
 . v i d e o - b g - s e c t i o n   { 
     p o s i t i o n :   r e l a t i v e ; 
     m i n - h e i g h t :   5 0 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . v i d e o - b g - m e d i a   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 . v i d e o - b g - o v e r l a y   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   r g b a ( 2 6 ,   2 6 ,   4 6 ,   0 . 6 5 ) ; 
 } 
 . v i d e o - b g - c o n t e n t   { 
     p o s i t i o n :   r e l a t i v e ; 
     z - i n d e x :   2 ; 
     t e x t - a l i g n :   c e n t e r ; 
     c o l o r :   v a r ( - - w h i t e ) ; 
     m a x - w i d t h :   7 0 0 p x ; 
     p a d d i n g :   6 0 p x   2 0 p x ; 
 } 
 . v i d e o - b g - c o n t e n t   h 2   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   2 . 4 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
 } 
 . v i d e o - b g - c o n t e n t   p   { 
     f o n t - s i z e :   1 . 1 r e m ; 
     m a r g i n - b o t t o m :   3 2 p x ; 
     o p a c i t y :   0 . 9 ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
 } 
 . v i d e o - b g - a c t i o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 4 p x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f l e x - w r a p :   w r a p ; 
 } 
 . b t n - o u t l i n e - w h i t e   { 
     c o l o r :   v a r ( - - w h i t e ) ; 
     b o r d e r :   2 p x   s o l i d   v a r ( - - w h i t e ) ; 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     p a d d i n g :   1 2 p x   2 8 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     f o n t - w e i g h t :   6 0 0 ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . b t n - o u t l i n e - w h i t e : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     c o l o r :   v a r ( - - d a r k ) ; 
 } 
 . h e r o - s l i d e - v i d e o   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   { 
     . v i d e o - b g - s e c t i o n   {   m i n - h e i g h t :   3 8 0 p x ;   } 
     . v i d e o - b g - c o n t e n t   {   p a d d i n g :   4 0 p x   1 6 p x ;   } 
     . v i d e o - b g - c o n t e n t   h 2   {   f o n t - s i z e :   1 . 6 r e m ;   } 
     . v i d e o - b g - c o n t e n t   p   {   f o n t - s i z e :   0 . 9 5 r e m ;   } 
     . v i d e o - b g - a c t i o n s   {   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   c e n t e r ;   } 
 } 
 
 / *   = = =   C T A   = = =   * / 
 . c t a - s e c t i o n   { 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     p a d d i n g :   6 0 p x   0 ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . c t a - s e c t i o n : : b e f o r e   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   v a r ( - - c t a - b g )   c e n t e r / c o v e r   n o - r e p e a t ; 
     o p a c i t y :   0 . 2 5 ; 
 } 
 . c t a - c o n t e n t   { 
     p o s i t i o n :   r e l a t i v e ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 } 
 . c t a - c o n t e n t   h 2   { 
     f o n t - s i z e :   1 . 8 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   w h i t e ; 
     m a r g i n :   0 ; 
 } 
 . c t a - c o n t e n t   p   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 5 ) ;   m a r g i n :   0 ;   } 
 . c t a - a c t i o n s   {   d i s p l a y :   f l e x ;   g a p :   1 2 p x ;   } 
 
 / *   = = =   N E W S L E T T E R   = = =   * / 
 . n e w s l e t t e r - s e c t i o n   { 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
     p a d d i n g :   6 0 p x   0 ; 
 } 
 . n e w s l e t t e r - f o r m   . i n p u t - g r o u p   { 
     d i s p l a y :   f l e x ; 
     m a x - w i d t h :   5 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
 } 
 . n e w s l e t t e r - f o r m   i n p u t   { 
     f l e x :   1 ; 
     p a d d i n g :   1 4 p x   2 4 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r i g h t :   n o n e ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l )   0   0   v a r ( - - r a d i u s - p i l l ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
 } 
 . n e w s l e t t e r - f o r m   i n p u t : f o c u s   {   o u t l i n e :   n o n e ;   b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . n e w s l e t t e r - f o r m   . b t n   { 
     b o r d e r - r a d i u s :   0   v a r ( - - r a d i u s - p i l l )   v a r ( - - r a d i u s - p i l l )   0 ; 
 } 
 
 / *   = = =   F O O T E R   = = =   * / 
 . s i t e - f o o t e r   { 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
 } 
 . f o o t e r - t o p   {   p a d d i n g :   6 0 p x   0   3 0 p x ;   } 
 . f o o t e r - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 . 5 f r   1 f r   1 f r   1 f r ; 
     g a p :   4 0 p x ; 
 } 
 . f o o t e r - b r a n d   h 4   { 
     f o n t - s i z e :   1 . 3 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   w h i t e ; 
     m a r g i n - b o t t o m :   1 4 p x ; 
 } 
 . f o o t e r - b r a n d   h 4   s p a n   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . f o o t e r - a b o u t   { 
     f o n t - s i z e :   0 . 9 r e m ; 
     l i n e - h e i g h t :   1 . 7 ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 . f o o t e r - s o c i a l   { 
     d i s p l a y :   f l e x ; 
     g a p :   6 p x ; 
 } 
 . f o o t e r - s o c i a l   a   { 
     w i d t h :   3 6 p x ; 
     h e i g h t :   3 6 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 . f o o t e r - s o c i a l   a : h o v e r   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   c o l o r :   w h i t e ;   } 
 . f o o t e r - t i t l e   { 
     f o n t - s i z e :   1 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   w h i t e ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
     p a d d i n g - b o t t o m :   1 2 p x ; 
 } 
 . f o o t e r - t i t l e : : a f t e r   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   0 ; 
     l e f t :   0 ; 
     w i d t h :   3 0 p x ; 
     h e i g h t :   2 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
 } 
 . f o o t e r - l i n k s   { 
     l i s t - s t y l e :   n o n e ; 
     p a d d i n g :   0 ; 
 } 
 . f o o t e r - l i n k s   l i   {   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . f o o t e r - l i n k s   a   { 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 6 ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   6 p x ; 
 } 
 . f o o t e r - l i n k s   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   p a d d i n g - l e f t :   4 p x ;   } 
 . f o o t e r - l i n k s   a   i   {   f o n t - s i z e :   0 . 7 r e m ;   } 
 . f o o t e r - c o n t a c t - l i s t   { 
     l i s t - s t y l e :   n o n e ; 
     p a d d i n g :   0 ; 
 } 
 . f o o t e r - c o n t a c t - l i s t   l i   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     g a p :   1 0 p x ; 
     m a r g i n - b o t t o m :   1 4 p x ; 
     f o n t - s i z e :   0 . 9 r e m ; 
 } 
 . f o o t e r - c o n t a c t - l i s t   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - t o p :   3 p x ;   f o n t - s i z e :   0 . 8 5 r e m ;   } 
 . f o o t e r - b o t t o m   { 
     p a d d i n g :   2 0 p x   0 ; 
     b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ; 
 } 
 . f o o t e r - b o t t o m   . c o n t a i n e r   { 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 . f o o t e r - b o t t o m - l i n k s   {   d i s p l a y :   f l e x ;   g a p :   2 0 p x ;   } 
 . f o o t e r - b o t t o m - l i n k s   a   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 5 ) ;   } 
 . f o o t e r - b o t t o m - l i n k s   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 
 / *   = = =   P A G E   H E A D E R S   = = =   * / 
 . p a g e - h e a d e r   { 
     p a d d i n g :   1 4 0 p x   0   5 0 p x ; 
     b a c k g r o u n d :   v a r ( - - d a r k ) ; 
     t e x t - a l i g n :   c e n t e r ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
     b a c k g r o u n d - s i z e :   c o v e r ; 
     b a c k g r o u n d - p o s i t i o n :   c e n t e r ; 
 } 
 . p a g e - h e a d e r : : b e f o r e   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     b a c k g r o u n d :   r g b a ( 2 6 ,   2 6 ,   4 6 ,   0 . 6 5 ) ; 
 } 
 . p a g e - h e a d e r   h 1   { 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   w h i t e ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 . p a g e - h e a d e r   p   { 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 )   ! i m p o r t a n t ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 . p a g e - h e a d e r   . b r e a d c r u m b   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     p a d d i n g :   0 ; 
     m a r g i n - t o p :   1 2 p x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 . p a g e - h e a d e r   . b r e a d c r u m b   a   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 6 ) ;   } 
 . p a g e - h e a d e r   . b r e a d c r u m b   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . p a g e - h e a d e r   . b r e a d c r u m b   . a c t i v e   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 9 ) ;   } 
 . p a g e - h e a d e r   . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : : b e f o r e   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 4 ) ;   } 
 
 / *   = = =   B A C K   T O   T O P   = = =   * / 
 . b a c k - t o - t o p   { 
     p o s i t i o n :   f i x e d ; 
     b o t t o m :   3 0 p x ; 
     r i g h t :   3 0 p x ; 
     w i d t h :   4 4 p x ; 
     h e i g h t :   4 4 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     z - i n d e x :   1 0 4 0 ; 
     o p a c i t y :   0 ; 
     v i s i b i l i t y :   h i d d e n ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 4 ) ; 
     c u r s o r :   p o i n t e r ; 
     b o r d e r :   n o n e ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . b a c k - t o - t o p . v i s i b l e   {   o p a c i t y :   1 ;   v i s i b i l i t y :   v i s i b l e ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 . b a c k - t o - t o p : h o v e r   {   b a c k g r o u n d :   v a r ( - - p r i m a r y - d a r k ) ;   c o l o r :   w h i t e ;   t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;   } 
 
 / *   = = =   W H A T S A P P   = = =   * / 
 . w h a t s a p p - f l o a t   { 
     p o s i t i o n :   f i x e d ; 
     b o t t o m :   3 0 p x ; 
     l e f t :   3 0 p x ; 
     w i d t h :   5 0 p x ; 
     h e i g h t :   5 0 p x ; 
     b a c k g r o u n d :   # 2 5 d 3 6 6 ; 
     c o l o r :   w h i t e ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - s i z e :   1 . 4 r e m ; 
     z - i n d e x :   1 0 4 0 ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 4 ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . w h a t s a p p - f l o a t : h o v e r   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   c o l o r :   w h i t e ;   } 
 
 / *   W h a t s A p p   w i d g e t   t o o l t i p   * / 
 . w a - w i d g e t   {   p o s i t i o n :   f i x e d ;   b o t t o m :   3 0 p x ;   l e f t :   3 0 p x ;   z - i n d e x :   1 0 4 0 ;   } 
 . w a - w i d g e t - t o o l t i p   { 
     p o s i t i o n :   a b s o l u t e ;   b o t t o m :   6 4 p x ;   l e f t :   0 ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ;   p a d d i n g :   1 4 p x   1 8 p x ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ;   w i d t h :   2 4 0 p x ; 
     f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   v a r ( - - t e x t ) ; 
     a n i m a t i o n :   w a B o u n c e   3 s   e a s e   i n f i n i t e ; 
 } 
 . w a - w i d g e t - t o o l t i p   p   {   m a r g i n :   0 ;   p a d d i n g - r i g h t :   1 8 p x ;   l i n e - h e i g h t :   1 . 4 ;   } 
 . w a - w i d g e t - t o o l t i p - c l o s e   { 
     p o s i t i o n :   a b s o l u t e ;   t o p :   8 p x ;   r i g h t :   1 0 p x ; 
     b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   f o n t - s i z e :   1 . 2 r e m ;   c u r s o r :   p o i n t e r ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
 } 
 @ k e y f r a m e s   w a B o u n c e   { 
     0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
     5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ;   } 
 } 
 
 / *   T r u s t   b a d g e s   b a r   * / 
 . t r u s t - b a r   {   b a c k g r o u n d :   v a r ( - - d a r k ) ;   p a d d i n g :   5 0 p x   0 ;   } 
 . t r u s t - b a r - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ;   g a p :   3 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 . t r u s t - i t e m   {   p a d d i n g :   2 0 p x   1 0 p x ;   } 
 . t r u s t - n u m b e r   { 
     f o n t - s i z e :   2 . 8 r e m ;   f o n t - w e i g h t :   8 0 0 ;   c o l o r :   v a r ( - - p r i m a r y ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;   l i n e - h e i g h t :   1 . 1 ; 
 } 
 . t r u s t - l a b e l   { 
     m a r g i n - t o p :   1 0 p x ;   f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   1 p x ;   f o n t - w e i g h t :   6 0 0 ; 
 } 
 . t r u s t - l a b e l   i   {   m a r g i n - r i g h t :   6 p x ;   f o n t - s i z e :   0 . 8 r e m ;   } 
 
 / *   W h y   C h o o s e   U s   * / 
 . w c u - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ;   g a p :   2 8 p x ;   } 
 . w c u - c a r d   { 
     t e x t - a l i g n :   c e n t e r ;   p a d d i n g :   3 6 p x   2 4 p x ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . w c u - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ;   } 
 . w c u - i c o n   { 
     w i d t h :   6 4 p x ;   h e i g h t :   6 4 p x ;   b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 2 9 , 1 4 8 , 3 6 , 0 . 1 ) ;   c o l o r :   v a r ( - - p r i m a r y ) ; 
     d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - s i z e :   1 . 5 r e m ;   m a r g i n :   0   a u t o   1 8 p x ; 
 } 
 . w c u - c a r d   h 5   {   f o n t - s i z e :   1 . 0 5 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . w c u - c a r d   p   {   f o n t - s i z e :   0 . 9 r e m ;   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   l i n e - h e i g h t :   1 . 6 ;   m a r g i n :   0 ;   } 
 
 / *   P a r t n e r   l o g o s   b a r   * / 
 . p a r t n e r s - b a r   {   p a d d i n g :   4 0 p x   0 ;   b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   } 
 . p a r t n e r s - l a b e l   {   t e x t - a l i g n :   c e n t e r ;   f o n t - s i z e :   0 . 8 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   1 p x ;   m a r g i n - b o t t o m :   2 4 p x ;   f o n t - w e i g h t :   6 0 0 ;   } 
 . p a r t n e r s - t r a c k   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   4 8 p x ;   f l e x - w r a p :   w r a p ;   } 
 . p a r t n e r - l o g o   i m g   {   h e i g h t :   9 0 p x ;   w i d t h :   a u t o ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   } 
 . p a r t n e r - l o g o   i m g : h o v e r   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   } 
 a . p a r t n e r - l o g o   {   t e x t - d e c o r a t i o n :   n o n e ;   } 
 
 / *   S t i c k y   n a v   * / 
 . n a v - s t i c k y   {   p o s i t i o n :   s t i c k y ;   t o p :   0 ;   z - i n d e x :   1 0 0 0 ;   } 
 
 / *   N e w s l e t t e r   * / 
 . n e w s l e t t e r - i n n e r   {   t e x t - a l i g n :   c e n t e r ;   } 
 . n e w s l e t t e r - i n n e r   . o v e r l i n e   {   d i s p l a y :   b l o c k ;   m a r g i n - b o t t o m :   8 p x ;   } 
 . n e w s l e t t e r - i n n e r   h 3   {   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . n e w s l e t t e r - i n n e r   >   p   {   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   m a r g i n - b o t t o m :   2 8 p x ;   } 
 
 / *   = = =   F O R M S   = = =   * / 
 . f o r m - c o n t r o l   { 
     p a d d i n g :   1 2 p x   1 6 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - t e x t ) ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . f o r m - c o n t r o l : f o c u s   { 
     o u t l i n e :   n o n e ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 1 ) ; 
 } 
 . f o r m - l a b e l   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     m a r g i n - b o t t o m :   6 p x ; 
 } 
 
 / *   = = =   A C C O R D I O N   = = =   * / 
 . a c c o r d i o n - i t e m   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s )   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 . a c c o r d i o n - b u t t o n   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
     c o l o r :   v a r ( - - d a r k ) ; 
     p a d d i n g :   1 6 p x   2 0 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s )   ! i m p o r t a n t ; 
 } 
 . a c c o r d i o n - b u t t o n : n o t ( . c o l l a p s e d )   {   c o l o r :   v a r ( - - p r i m a r y ) ;   b a c k g r o u n d :   v a r ( - - l i g h t ) ;   } 
 . a c c o r d i o n - b u t t o n : : a f t e r   {   f i l t e r :   i n v e r t ( 4 0 % ) ;   } 
 . a c c o r d i o n - b o d y   {   p a d d i n g :   0   2 0 p x   1 6 p x ;   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   l i n e - h e i g h t :   1 . 8 ;   } 
 
 / *   = = =   A L E R T S   = = =   * / 
 . m e s s a g e s - c o n t a i n e r   . a l e r t   {   b o r d e r :   n o n e ;   b o r d e r - r a d i u s :   0 ;   f o n t - w e i g h t :   5 0 0 ;   } 
 . a l e r t - s u c c e s s   {   b a c k g r o u n d :   # e 8 f 5 e 9 ;   c o l o r :   # 2 e 7 d 3 2 ;   } 
 . a l e r t - d a n g e r ,   . a l e r t - e r r o r   {   b a c k g r o u n d :   # f c e 4 e c ;   c o l o r :   # c 6 2 8 2 8 ;   } 
 
 / *   = = =   4 0 4   = = =   * / 
 . p a g e - 4 0 4   { 
     m i n - h e i g h t :   1 0 0 v h ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t e x t - a l i g n :   c e n t e r ; 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
 } 
 . p a g e - 4 0 4   . e r r o r - c o d e   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   8 r e m ; 
     f o n t - w e i g h t :   9 0 0 ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     l i n e - h e i g h t :   1 ; 
 } 
 
 / *   = = =   A B O U T   P A G E   = = =   * / 
 . a b o u t - s t o r y   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
     g a p :   6 0 p x ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 . a b o u t - s t o r y - t e x t   . o v e r l i n e   {   d i s p l a y :   b l o c k ;   m a r g i n - b o t t o m :   1 2 p x ;   } 
 . a b o u t - s t o r y - t e x t   h 2   {   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a b o u t - s t o r y - t e x t   p   {   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   m a r g i n - b o t t o m :   1 6 p x ;   l i n e - h e i g h t :   1 . 8 ;   } 
 
 . a b o u t - s t o r y - v i s u a l   {   p o s i t i o n :   r e l a t i v e ;   } 
 . a b o u t - s t o r y - i m g   { 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     h e i g h t :   4 0 0 p x ; 
 } 
 . a b o u t - s t o r y - i m g   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   } 
 . a b o u t - p l a c e h o l d e r   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - s e c o n d a r y )   0 % ,   v a r ( - - d a r k )   1 0 0 % ) ; 
     c o l o r :   w h i t e ; 
     g a p :   1 2 p x ; 
 } 
 . a b o u t - p l a c e h o l d e r   i   {   f o n t - s i z e :   3 r e m ;   o p a c i t y :   0 . 7 ;   } 
 . a b o u t - p l a c e h o l d e r   s p a n   {   f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   0 . 9 5 r e m ;   o p a c i t y :   0 . 8 ;   } 
 
 . a b o u t - s t a t - b a d g e   { 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   - 2 0 p x ; 
     r i g h t :   - 1 5 p x ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   2 0 p x   2 4 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 3 5 ) ; 
 } 
 . a b o u t - s t a t - n u m b e r   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   2 r e m ;   f o n t - w e i g h t :   8 0 0 ;   f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;   l i n e - h e i g h t :   1 . 1 ;   } 
 . a b o u t - s t a t - l a b e l   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   0 . 7 8 r e m ;   f o n t - w e i g h t :   5 0 0 ;   o p a c i t y :   0 . 9 ;   m a r g i n - t o p :   4 p x ;   } 
 
 / *   T e a m   g r i d   * / 
 . t e a m - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
 } 
 . t e a m - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ; 
 } 
 . t e a m - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 6 p x ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
 } 
 . t e a m - c a r d - i m g   { 
     h e i g h t :   2 2 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
 } 
 . t e a m - c a r d - i m g   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ;   } 
 . t e a m - c a r d : h o v e r   . t e a m - c a r d - i m g   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   } 
 . t e a m - c a r d - p l a c e h o l d e r   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 . t e a m - c a r d - p l a c e h o l d e r   i   {   f o n t - s i z e :   3 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   } 
 . t e a m - c a r d - b o d y   {   p a d d i n g :   2 0 p x ;   } 
 . t e a m - c a r d - b o d y   h 5   {   m a r g i n - b o t t o m :   4 p x ;   } 
 . t e a m - c a r d - r o l e   {   d i s p l a y :   b l o c k ;   c o l o r :   v a r ( - - p r i m a r y ) ;   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   0 . 8 8 r e m ;   m a r g i n - b o t t o m :   8 p x ;   } 
 . t e a m - c a r d - b i o   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 8 5 r e m ;   m a r g i n - b o t t o m :   1 2 p x ;   l i n e - h e i g h t :   1 . 6 ;   } 
 . t e a m - c a r d - s o c i a l   { 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     g a p :   8 p x ; 
 } 
 . t e a m - c a r d - s o c i a l   a   { 
     w i d t h :   3 4 p x ; 
     h e i g h t :   3 4 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     f o n t - s i z e :   0 . 8 2 r e m ; 
 } 
 . t e a m - c a r d - s o c i a l   a : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
 } 
 . t e a m - e m p t y   {   g r i d - c o l u m n :   1 / - 1 ;   t e x t - a l i g n :   c e n t e r ;   } 
 . t e a m - e m p t y   p   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   } 
 
 / *   T o u r   c a r d   i m a g e   w r a p p e r   � �    u s e d   i n   s a f a r i / d a y t r i p   l i s t s   * / 
 . t o u r - c a r d - i m g - w r a p   { 
     h e i g h t :   2 2 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . t o u r - c a r d - i m g - w r a p   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ; 
 } 
 . t o u r - c a r d : h o v e r   . t o u r - c a r d - i m g - w r a p   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   } 
 
 / *   = = =   B L O G   P A G E   = = =   * / 
 . b l o g - t o o l b a r   { 
     d i s p l a y :   f l e x ; 
     f l e x - w r a p :   w r a p ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   2 0 p x ; 
     m a r g i n - b o t t o m :   4 0 p x ; 
 } 
 . b l o g - s e a r c h   {   f l e x :   1 ;   m a x - w i d t h :   4 0 0 p x ;   } 
 . b l o g - f i l t e r s   {   d i s p l a y :   f l e x ;   f l e x - w r a p :   w r a p ;   g a p :   8 p x ;   } 
 
 . b l o g - e m p t y   { 
     g r i d - c o l u m n :   1 / - 1 ; 
     t e x t - a l i g n :   c e n t e r ; 
     p a d d i n g :   8 0 p x   2 0 p x ; 
 } 
 . b l o g - e m p t y   i   {   f o n t - s i z e :   3 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   m a r g i n - b o t t o m :   2 0 p x ;   d i s p l a y :   b l o c k ;   } 
 . b l o g - e m p t y   h 4   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . b l o g - e m p t y   p   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   } 
 
 . b l o g - p a g i n a t i o n   {   m a r g i n - t o p :   4 0 p x ;   } 
 
 / *   = = =   C O N T A C T   P A G E   = = =   * / 
 . c o n t a c t - i n f o - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
     g a p :   2 4 p x ; 
     m a r g i n - b o t t o m :   5 0 p x ; 
 } 
 . c o n t a c t - i n f o - v a l u e   {   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   v a r ( - - d a r k ) ;   m a r g i n - b o t t o m :   4 p x ;   } 
 . c o n t a c t - i n f o - s u b   {   m a r g i n :   0 ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 8 8 r e m ;   } 
 
 . c o n t a c t - l a y o u t   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 . 5 f r   1 f r ; 
     g a p :   4 0 p x ; 
     a l i g n - i t e m s :   s t a r t ; 
 } 
 
 . c o n t a c t - f o r m - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . c o n t a c t - f o r m - h e a d e r   { 
     p a d d i n g :   3 0 p x   4 0 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - d a r k )   0 % ,   # 1 a 1 a 2 e   1 0 0 % ) ; 
     c o l o r :   w h i t e ; 
 } 
 . c o n t a c t - f o r m - h e a d e r   i   { 
     f o n t - s i z e :   1 . 4 r e m ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
     d i s p l a y :   b l o c k ; 
 } 
 . c o n t a c t - f o r m - h e a d e r   h 3   {   m a r g i n - b o t t o m :   6 p x ;   c o l o r :   # f f f ;   } 
 . c o n t a c t - f o r m - h e a d e r   p   {   o p a c i t y :   0 . 7 ;   f o n t - s i z e :   0 . 9 r e m ;   m a r g i n :   0 ;   } 
 
 . c o n t a c t - f o r m   {   p a d d i n g :   3 2 p x   4 0 p x   4 0 p x ;   } 
 . c o n t a c t - f o r m   . f o r m - l a b e l   {   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   v a r ( - - t e x t ) ;   m a r g i n - b o t t o m :   6 p x ;   } 
 . c o n t a c t - f o r m   . f o r m - c o n t r o l   { 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     p a d d i n g :   1 2 p x   1 4 p x ; 
     f o n t - s i z e :   0 . 9 2 r e m ; 
     t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s   e a s e ,   b o x - s h a d o w   0 . 2 s   e a s e ; 
 } 
 . c o n t a c t - f o r m   . f o r m - c o n t r o l : f o c u s   { 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 1 9 5 ,   1 4 3 ,   7 0 ,   0 . 1 2 ) ; 
 } 
 
 . c o n t a c t - s u b m i t - b t n   { 
     w i d t h :   1 0 0 % ; 
     m a r g i n - t o p :   2 4 p x ; 
     p a d d i n g :   1 4 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 / *   S i d e b a r   * / 
 . c o n t a c t - s i d e b a r   {   p o s i t i o n :   s t i c k y ;   t o p :   1 0 0 p x ;   } 
 
 . c o n t a c t - m a p - w r a p   { 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 . c o n t a c t - m a p - w r a p   i f r a m e   {   d i s p l a y :   b l o c k ;   w i d t h :   1 0 0 % ;   } 
 
 . c o n t a c t - s i d e b a r - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     p a d d i n g :   2 4 p x ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . c o n t a c t - s i d e b a r - c a r d   h 5   { 
     m a r g i n - b o t t o m :   1 4 p x ; 
     f o n t - s i z e :   1 r e m ; 
 } 
 . c o n t a c t - s i d e b a r - c a r d   h 5   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   8 p x ;   } 
 
 . c o n t a c t - s o c i a l - l i n k s   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 0 p x ; 
     m a r g i n - b o t t o m :   4 p x ; 
 } 
 . c o n t a c t - s o c i a l - l i n k s   a   { 
     w i d t h :   4 2 p x ; 
     h e i g h t :   4 2 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 . c o n t a c t - s o c i a l - l i n k s   a : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
 } 
 
 . c o n t a c t - h o u r s   { 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     m a r g i n :   0 ; 
 } 
 
 . b t n - w h a t s a p p - c o n t a c t   { 
     w i d t h :   1 0 0 % ; 
     b a c k g r o u n d :   # 2 5 d 3 6 6 ; 
     b o r d e r - c o l o r :   # 2 5 d 3 6 6 ; 
     c o l o r :   w h i t e ; 
     f o n t - w e i g h t :   6 0 0 ; 
     p a d d i n g :   1 2 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
 } 
 . b t n - w h a t s a p p - c o n t a c t : h o v e r   {   b a c k g r o u n d :   # 1 d a 8 5 1 ;   b o r d e r - c o l o r :   # 1 d a 8 5 1 ;   c o l o r :   w h i t e ;   } 
 
 / *   = = =   B O O K I N G   P A G E   = = =   * / 
 . b o o k i n g - l a y o u t   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 8 0 p x ; 
     g a p :   4 0 p x ; 
     a l i g n - i t e m s :   s t a r t ; 
 } 
 
 . b o o k i n g - f o r m - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . b o o k i n g - f o r m - h e a d e r   { 
     p a d d i n g :   3 0 p x   4 0 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - d a r k )   0 % ,   # 1 a 1 a 2 e   1 0 0 % ) ; 
     c o l o r :   w h i t e ; 
 } 
 . b o o k i n g - f o r m - h e a d e r   i   { 
     f o n t - s i z e :   1 . 4 r e m ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
     d i s p l a y :   b l o c k ; 
 } 
 . b o o k i n g - f o r m - h e a d e r   h 3   {   m a r g i n - b o t t o m :   6 p x ;   } 
 . b o o k i n g - f o r m - h e a d e r   p   {   o p a c i t y :   0 . 7 ;   f o n t - s i z e :   0 . 9 r e m ;   m a r g i n :   0 ;   } 
 
 . b o o k i n g - f o r m   {   p a d d i n g :   3 2 p x   4 0 p x   4 0 p x ;   } 
 . b o o k i n g - f o r m   . f o r m - l a b e l   {   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   v a r ( - - t e x t ) ;   m a r g i n - b o t t o m :   6 p x ;   } 
 . b o o k i n g - f o r m   . f o r m - c o n t r o l   { 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     p a d d i n g :   1 2 p x   1 4 p x ; 
     f o n t - s i z e :   0 . 9 2 r e m ; 
     t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s   e a s e ,   b o x - s h a d o w   0 . 2 s   e a s e ; 
 } 
 . b o o k i n g - f o r m   . f o r m - c o n t r o l : f o c u s   { 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 1 9 5 ,   1 4 3 ,   7 0 ,   0 . 1 2 ) ; 
 } 
 
 . b o o k i n g - s u b m i t - b t n   { 
     w i d t h :   1 0 0 % ; 
     m a r g i n - t o p :   2 4 p x ; 
     p a d d i n g :   1 4 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     f o n t - s i z e :   1 r e m ; 
 } 
 . b o o k i n g - f o r m - n o t e   { 
     t e x t - a l i g n :   c e n t e r ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     m a r g i n - t o p :   1 4 p x ; 
     m a r g i n - b o t t o m :   0 ; 
 } 
 . b o o k i n g - f o r m - n o t e   i   {   m a r g i n - r i g h t :   4 p x ;   } 
 
 / *   S i d e b a r   * / 
 . b o o k i n g - s i d e b a r   {   p o s i t i o n :   s t i c k y ;   t o p :   1 0 0 p x ;   } 
 
 . b o o k i n g - s i d e b a r - c a r d   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
     p a d d i n g :   2 4 p x ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . b o o k i n g - s i d e b a r - c a r d   h 5   { 
     m a r g i n - b o t t o m :   1 6 p x ; 
     f o n t - s i z e :   1 r e m ; 
 } 
 . b o o k i n g - s i d e b a r - c a r d   h 5   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   8 p x ;   } 
 
 / *   P a c k a g e   c a r d   * / 
 . b o o k i n g - p a c k a g e - c a r d   {   p a d d i n g :   0 ;   o v e r f l o w :   h i d d e n ;   } 
 . b o o k i n g - p a c k a g e - i m g   { 
     h e i g h t :   1 8 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
 } 
 . b o o k i n g - p a c k a g e - i m g   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   } 
 . b o o k i n g - p a c k a g e - p l a c e h o l d e r   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - s e c o n d a r y )   0 % ,   v a r ( - - d a r k )   1 0 0 % ) ; 
     c o l o r :   w h i t e ; 
 } 
 . b o o k i n g - p a c k a g e - p l a c e h o l d e r   i   {   f o n t - s i z e :   2 . 5 r e m ;   o p a c i t y :   0 . 5 ;   } 
 . b o o k i n g - p a c k a g e - b o d y   {   p a d d i n g :   2 0 p x ;   } 
 . b o o k i n g - p a c k a g e - b a d g e   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     f o n t - s i z e :   0 . 7 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     p a d d i n g :   3 p x   1 0 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 . b o o k i n g - p a c k a g e - b o d y   h 5   {   m a r g i n - b o t t o m :   6 p x ;   } 
 . b o o k i n g - p a c k a g e - b o d y   p   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 8 8 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   l i n e - h e i g h t :   1 . 5 ;   } 
 . b o o k i n g - p a c k a g e - m e t a   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 4 p x ; 
     f o n t - s i z e :   0 . 8 2 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 . b o o k i n g - p a c k a g e - m e t a   i   {   m a r g i n - r i g h t :   4 p x ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . b o o k i n g - p a c k a g e - p r i c e   { 
     f o n t - s i z e :   0 . 9 2 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     p a d d i n g - t o p :   1 2 p x ; 
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . b o o k i n g - p a c k a g e - p r i c e   s t r o n g   { 
     f o n t - s i z e :   1 . 3 r e m ; 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     f o n t - w e i g h t :   8 0 0 ; 
 } 
 
 / *   C o n t a c t   l i s t   * / 
 . b o o k i n g - c o n t a c t - l i s t   {   l i s t - s t y l e :   n o n e ;   p a d d i n g :   0 ;   m a r g i n :   0 ;   } 
 . b o o k i n g - c o n t a c t - l i s t   l i   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     g a p :   1 2 p x ; 
     m a r g i n - b o t t o m :   1 4 p x ; 
 } 
 . b o o k i n g - c o n t a c t - l i s t   l i : l a s t - c h i l d   {   m a r g i n - b o t t o m :   0 ;   } 
 . b o o k i n g - c o n t a c t - l i s t   l i   i   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     m a r g i n - t o p :   3 p x ; 
     f l e x - s h r i n k :   0 ; 
     w i d t h :   1 6 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
 } 
 . b o o k i n g - c o n t a c t - l i s t   l i   s t r o n g   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   0 . 8 5 r e m ;   m a r g i n - b o t t o m :   2 p x ;   } 
 . b o o k i n g - c o n t a c t - l i s t   l i   s p a n   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 8 5 r e m ;   } 
 
 . b t n - w h a t s a p p   { 
     w i d t h :   1 0 0 % ; 
     m a r g i n - t o p :   1 6 p x ; 
     b a c k g r o u n d :   # 2 5 d 3 6 6 ; 
     b o r d e r - c o l o r :   # 2 5 d 3 6 6 ; 
     c o l o r :   w h i t e ; 
     f o n t - w e i g h t :   6 0 0 ; 
 } 
 . b t n - w h a t s a p p : h o v e r   {   b a c k g r o u n d :   # 1 d a 8 5 1 ;   b o r d e r - c o l o r :   # 1 d a 8 5 1 ;   c o l o r :   w h i t e ;   } 
 
 / *   B e n e f i t s   * / 
 . b o o k i n g - b e n e f i t s - c a r d   { 
     b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ; 
     b o r d e r :   n o n e ; 
     c o l o r :   w h i t e ; 
 } 
 . b o o k i n g - b e n e f i t s - c a r d   h 5   {   c o l o r :   w h i t e ;   } 
 . b o o k i n g - b e n e f i t s - c a r d   h 5   i   {   c o l o r :   w h i t e ;   } 
 . b o o k i n g - b e n e f i t s - l i s t   {   l i s t - s t y l e :   n o n e ;   p a d d i n g :   0 ;   m a r g i n :   0 ;   } 
 . b o o k i n g - b e n e f i t s - l i s t   l i   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 0 p x ; 
     p a d d i n g :   6 p x   0 ; 
     f o n t - s i z e :   0 . 9 r e m ; 
 } 
 . b o o k i n g - b e n e f i t s - l i s t   l i   i   {   o p a c i t y :   0 . 7 ;   f l e x - s h r i n k :   0 ;   } 
 
 / *   = = =   T O U R   D E T A I L   P A G E   = = =   * / 
 . d e t a i l - h e r o   {   h e i g h t :   6 0 v h ;   m i n - h e i g h t :   4 0 0 p x ;   p o s i t i o n :   r e l a t i v e ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 a 5 6 3 2   0 % ,   # 1 a 1 a 2 e   1 0 0 % ) ;   } 
 . d e t a i l - h e r o - o v e r l a y   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( r g b a ( 0 , 0 , 0 , 0 . 3 ) ,   r g b a ( 0 , 0 , 0 , 0 . 6 ) ) ;   } 
 . d e t a i l - h e r o   . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : : b e f o r e   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 5 ) ;   } 
 . d e t a i l - h e r o   . b r e a d c r u m b - i t e m   a   {   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 6 5 ) ;   t e x t - d e c o r a t i o n :   n o n e ;   t r a n s i t i o n :   c o l o r   0 . 2 s ;   } 
 . d e t a i l - h e r o   . b r e a d c r u m b - i t e m   a : h o v e r   {   c o l o r :   w h i t e ;   } 
 . d e t a i l - h e r o   . b r e a d c r u m b - i t e m . a c t i v e   {   c o l o r :   w h i t e ;   } 
 . d e t a i l - h e r o - m e t a   {   d i s p l a y :   f l e x ;   g a p :   2 4 p x ;   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 5 ) ;   f o n t - s i z e :   0 . 9 5 r e m ;   f l e x - w r a p :   w r a p ;   } 
 
 . d e t a i l - l a y o u t   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 8 0 p x ; 
     g a p :   4 0 p x ; 
     a l i g n - i t e m s :   s t a r t ; 
 } 
 
 . d e t a i l - b a d g e s   {   d i s p l a y :   f l e x ;   f l e x - w r a p :   w r a p ;   g a p :   1 0 p x ;   m a r g i n - b o t t o m :   2 8 p x ;   } 
 
 / *   T a b s   � �    h o r i z o n t a l   s c r o l l   o n   m o b i l e   * / 
 . d e t a i l - t a b s   { 
     d i s p l a y :   f l e x ; 
     g a p :   4 p x ; 
     b o r d e r :   n o n e ; 
     b o r d e r - b o t t o m :   2 p x   s o l i d   v a r ( - - b o r d e r ) ; 
     m a r g i n - b o t t o m :   2 8 p x ; 
     o v e r f l o w - x :   a u t o ; 
     - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
     s c r o l l b a r - w i d t h :   n o n e ; 
     p a d d i n g - b o t t o m :   0 ; 
 } 
 . d e t a i l - t a b s : : - w e b k i t - s c r o l l b a r   {   d i s p l a y :   n o n e ;   } 
 . d e t a i l - t a b s   . n a v - i t e m   {   f l e x :   0   0   a u t o ;   } 
 . d e t a i l - t a b s   . n a v - l i n k   { 
     b o r d e r :   n o n e ; 
     b o r d e r - b o t t o m :   3 p x   s o l i d   t r a n s p a r e n t ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - s i z e :   0 . 8 8 r e m ; 
     p a d d i n g :   1 2 p x   1 6 p x ; 
     w h i t e - s p a c e :   n o w r a p ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
 } 
 . d e t a i l - t a b s   . n a v - l i n k . a c t i v e   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o r d e r - b o t t o m - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
 } 
 . d e t a i l - t a b s   . n a v - l i n k : h o v e r : n o t ( . a c t i v e )   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 
 / *   T a b   c o n t e n t   * / 
 . d e t a i l - t a b - b o d y   { 
     p a d d i n g :   3 0 p x ; 
     b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 . d e t a i l - t a b - b o d y   h 4   {   m a r g i n - b o t t o m :   1 6 p x ;   } 
 . d e t a i l - t a b - c o n t e n t   {   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   l i n e - h e i g h t :   1 . 8 ;   } 
 
 . d e t a i l - i n c l u d e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;   g a p :   3 0 p x ;   } 
 . d e t a i l - c h e c k l i s t   {   l i s t - s t y l e :   n o n e ;   p a d d i n g :   0 ;   } 
 . d e t a i l - c h e c k l i s t   l i   {   m a r g i n - b o t t o m :   1 0 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   f l e x - s t a r t ;   g a p :   1 0 p x ;   } 
 . d e t a i l - c h e c k l i s t   l i   i   {   m a r g i n - t o p :   3 p x ;   f l e x - s h r i n k :   0 ;   } 
 . c h e c k l i s t - i n c l u d e d   i   {   c o l o r :   v a r ( - - s e c o n d a r y ) ;   } 
 . c h e c k l i s t - e x c l u d e d   i   {   c o l o r :   # e 5 3 9 3 5 ;   } 
 
 / *   T o u r   g a l l e r y   * / 
 . d e t a i l - g a l l e r y - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   g a p :   1 2 p x ;   } 
 . d e t a i l - g a l l e r y - i t e m   {   d i s p l a y :   b l o c k ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;   o v e r f l o w :   h i d d e n ;   a s p e c t - r a t i o :   4 / 3 ;   } 
 . d e t a i l - g a l l e r y - i t e m   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;   } 
 . d e t a i l - g a l l e r y - i t e m : h o v e r   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   } 
 
 / *   = = =   D E S T I N A T I O N   D E T A I L   P A G E   = = =   * / 
 
 / *   H e r o   * / 
 . d e s t - h e r o   {   h e i g h t :   6 0 v h ;   m i n - h e i g h t :   4 2 0 p x ;   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 a 5 6 3 2   0 % ,   # 1 a 1 a 2 e   1 0 0 % ) ;   } 
 . d e s t - h e r o - s l i d e   {   p o s i t i o n :   a b s o l u t e ;   i n s e t :   0 ;   } 
 . d e s t - h e r o - s l i d e   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   o b j e c t - p o s i t i o n :   c e n t e r ;   d i s p l a y :   b l o c k ;   } 
 . d e s t - h e r o - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   i n s e t :   0 ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 2 6 , 2 6 , 4 6 , 0 . 7 5 )   0 % ,   r g b a ( 2 6 , 2 6 , 4 6 , 0 . 3 5 )   1 0 0 % ) ;   } 
 . d e s t - h e r o - c o n t e n t   {   p o s i t i o n :   a b s o l u t e ;   i n s e t :   0 ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   f l e x - e n d ;   p a d d i n g - b o t t o m :   6 0 p x ;   z - i n d e x :   2 ;   } 
 . d e s t - h e r o - t i t l e   {   f o n t - s i z e :   2 . 8 r e m ;   f o n t - w e i g h t :   8 0 0 ;   c o l o r :   w h i t e ;   m a r g i n - b o t t o m :   1 2 p x ;   l i n e - h e i g h t :   1 . 1 5 ;   } 
 . d e s t - h e r o - s u b t i t l e   {   f o n t - s i z e :   1 . 1 r e m ;   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ;   m a x - w i d t h :   6 0 0 p x ;   l i n e - h e i g h t :   1 . 6 ;   m a r g i n :   0 ;   } 
 
 / *   S t a t s   b a r   * / 
 . d e s t - s t a t s - b a r   {   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   p a d d i n g :   2 0 p x   0 ;   } 
 . d e s t - s t a t s - r o w   {   d i s p l a y :   f l e x ;   g a p :   0 ;   f l e x - w r a p :   w r a p ;   } 
 . d e s t - s t a t   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 2 p x ;   p a d d i n g :   1 2 p x   2 8 p x ;   b o r d e r - r i g h t :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   f l e x :   1 ;   m i n - w i d t h :   1 8 0 p x ;   } 
 . d e s t - s t a t : l a s t - c h i l d   {   b o r d e r - r i g h t :   n o n e ;   } 
 . d e s t - s t a t   i   {   f o n t - s i z e :   1 . 3 r e m ;   c o l o r :   v a r ( - - p r i m a r y ) ;   w i d t h :   2 4 p x ;   t e x t - a l i g n :   c e n t e r ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - s t a t   s m a l l   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   0 . 7 5 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   0 . 5 p x ;   m a r g i n - b o t t o m :   2 p x ;   } 
 . d e s t - s t a t   s t r o n g   {   f o n t - s i z e :   0 . 9 5 r e m ;   c o l o r :   v a r ( - - d a r k ) ;   } 
 
 / *   L a y o u t   * / 
 . d e s t - l a y o u t   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 6 0 p x ;   g a p :   5 0 p x ;   a l i g n - i t e m s :   s t a r t ;   } 
 . d e s t - m a i n   {   m i n - w i d t h :   0 ;   } 
 
 / *   S e c t i o n s   * / 
 . d e s t - s e c t i o n   {   m a r g i n - b o t t o m :   4 8 p x ;   } 
 . d e s t - s e c t i o n : l a s t - c h i l d   {   m a r g i n - b o t t o m :   0 ;   } 
 
 / *   S e c t i o n   h e a d e r   * / 
 . d e s t - s e c t i o n - h e a d e r   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   f l e x - s t a r t ;   g a p :   1 6 p x ;   m a r g i n - b o t t o m :   2 8 p x ;   } 
 . d e s t - s e c t i o n - i c o n   {   w i d t h :   4 8 p x ;   h e i g h t :   4 8 p x ;   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   c o l o r :   w h i t e ;   b o r d e r - r a d i u s :   1 2 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   1 . 1 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - s e c t i o n - i c o n - g r e e n   {   b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ;   } 
 . d e s t - s e c t i o n - t i t l e   {   f o n t - s i z e :   1 . 4 r e m ;   f o n t - w e i g h t :   7 0 0 ;   m a r g i n :   0 ;   l i n e - h e i g h t :   1 . 3 ;   } 
 . d e s t - s e c t i o n - s u b t i t l e   {   f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   m a r g i n :   4 p x   0   0   0 ;   } 
 
 / *   D e s c r i p t i o n   * / 
 . d e s t - d e s c r i p t i o n   {   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   l i n e - h e i g h t :   1 . 8 5 ;   f o n t - s i z e :   1 . 0 2 r e m ;   } 
 
 / *   A t t r a c t i o n s   g r i d   * / 
 . d e s t - a t t r a c t i o n s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ;   g a p :   1 6 p x ;   } 
 . d e s t - a t t r a c t i o n - c a r d   {   b a c k g r o u n d :   w h i t e ;   b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   p a d d i n g :   2 2 p x   2 0 p x ;   t e x t - a l i g n :   c e n t e r ;   t r a n s i t i o n :   a l l   0 . 2 5 s   e a s e ;   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   } 
 . d e s t - a t t r a c t i o n - c a r d : : b e f o r e   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   h e i g h t :   3 p x ;   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   o p a c i t y :   0 ;   t r a n s i t i o n :   o p a c i t y   0 . 2 5 s   e a s e ;   } 
 . d e s t - a t t r a c t i o n - c a r d : h o v e r   {   b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;   } 
 . d e s t - a t t r a c t i o n - c a r d : h o v e r : : b e f o r e   {   o p a c i t y :   1 ;   } 
 . d e s t - a t t r a c t i o n - n u m   {   w i d t h :   3 2 p x ;   h e i g h t :   3 2 p x ;   b a c k g r o u n d :   r g b a ( 2 2 9 , 1 4 8 , 3 6 , 0 . 1 ) ;   c o l o r :   v a r ( - - p r i m a r y ) ;   b o r d e r - r a d i u s :   5 0 % ;   d i s p l a y :   i n l i n e - f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   0 . 8 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   m a r g i n - b o t t o m :   1 2 p x ;   } 
 . d e s t - a t t r a c t i o n - n a m e   {   f o n t - s i z e :   0 . 9 5 r e m ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   v a r ( - - t e x t ) ;   m a r g i n :   0 ;   l i n e - h e i g h t :   1 . 4 ;   } 
 
 / *   A c t i v i t i e s   g r i d   * / 
 . d e s t - a c t i v i t i e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 1 6 0 p x ,   1 f r ) ) ;   g a p :   1 4 p x ;   } 
 . d e s t - a c t i v i t y - c a r d   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 2 p x ;   b a c k g r o u n d :   w h i t e ;   b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ;   p a d d i n g :   1 6 p x   1 8 p x ;   t r a n s i t i o n :   a l l   0 . 2 5 s   e a s e ;   } 
 . d e s t - a c t i v i t y - c a r d : h o v e r   {   b o r d e r - c o l o r :   v a r ( - - s e c o n d a r y ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w ) ;   } 
 . d e s t - a c t i v i t y - i c o n   {   w i d t h :   4 0 p x ;   h e i g h t :   4 0 p x ;   b a c k g r o u n d :   r g b a ( 2 6 , 8 6 , 5 0 , 0 . 0 8 ) ;   c o l o r :   v a r ( - - s e c o n d a r y ) ;   b o r d e r - r a d i u s :   1 0 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   1 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - a c t i v i t y - n a m e   {   f o n t - s i z e :   0 . 9 r e m ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   v a r ( - - t e x t ) ;   } 
 
 / *   B e s t   t i m e   c a r d   * / 
 . d e s t - b e s t t i m e - c a r d   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   0 ;   b a c k g r o u n d :   w h i t e ;   b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   o v e r f l o w :   h i d d e n ;   } 
 . d e s t - b e s t t i m e - l e f t   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 6 p x ;   p a d d i n g :   2 4 p x   2 8 p x ;   f l e x :   1 ;   } 
 . d e s t - b e s t t i m e - i c o n   {   w i d t h :   5 2 p x ;   h e i g h t :   5 2 p x ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 0 a 9 4 0 ,   # e 5 9 4 2 4 ) ;   c o l o r :   w h i t e ;   b o r d e r - r a d i u s :   1 4 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   1 . 3 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - b e s t t i m e - l a b e l   {   f o n t - s i z e :   0 . 7 8 r e m ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   0 . 0 5 e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - w e i g h t :   6 0 0 ;   } 
 . d e s t - b e s t t i m e - v a l u e   {   f o n t - s i z e :   1 . 1 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   v a r ( - - t e x t ) ;   m a r g i n :   2 p x   0   0   0 ;   } 
 . d e s t - b e s t t i m e - d i v i d e r   {   w i d t h :   1 p x ;   h e i g h t :   4 8 p x ;   b a c k g r o u n d :   v a r ( - - b o r d e r ) ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - b e s t t i m e - r i g h t   {   p a d d i n g :   2 4 p x   2 8 p x ;   f l e x :   1 ;   } 
 . d e s t - b e s t t i m e - t i p   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ;   } 
 . d e s t - b e s t t i m e - t i p   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   f o n t - s i z e :   1 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - b e s t t i m e - t i p   s p a n   {   f o n t - s i z e :   0 . 8 8 r e m ;   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   l i n e - h e i g h t :   1 . 5 ;   } 
 
 / *   G a l l e r y   * / 
 . d e s t - g a l l e r y   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   g a p :   1 4 p x ;   } 
 . d e s t - g a l l e r y - i t e m   {   d i s p l a y :   b l o c k ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;   o v e r f l o w :   h i d d e n ;   a s p e c t - r a t i o :   4 / 3 ;   p o s i t i o n :   r e l a t i v e ;   } 
 . d e s t - g a l l e r y - i t e m   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   o b j e c t - f i t :   c o v e r ;   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ;   } 
 . d e s t - g a l l e r y - i t e m : h o v e r   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 0 6 ) ;   } 
 . d e s t - g a l l e r y - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   i n s e t :   0 ;   b a c k g r o u n d :   r g b a ( 2 6 , 2 6 , 4 6 , 0 . 3 5 ) ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   o p a c i t y :   0 ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ;   } 
 . d e s t - g a l l e r y - o v e r l a y   i   {   f o n t - s i z e :   1 . 5 r e m ;   c o l o r :   w h i t e ;   } 
 . d e s t - g a l l e r y - i t e m : h o v e r   . d e s t - g a l l e r y - o v e r l a y   {   o p a c i t y :   1 ;   } 
 
 / *   M a p   * / 
 . d e s t - m a p - w r a p   {   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   o v e r f l o w :   h i d d e n ;   b o x - s h a d o w :   v a r ( - - s h a d o w ) ;   } 
 . d e s t - m a p - w r a p   i f r a m e   {   d i s p l a y :   b l o c k ;   } 
 
 / *   S i d e b a r   * / 
 . d e s t - s i d e b a r - s t i c k y   {   p o s i t i o n :   s t i c k y ;   t o p :   1 0 0 p x ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   2 0 p x ;   } 
 . d e s t - i n f o - c a r d   {   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w ) ;   p a d d i n g :   2 8 p x ;   b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   } 
 . d e s t - i n f o - c a r d   h 5   {   m a r g i n :   0   0   1 8 p x   0 ;   f o n t - s i z e :   1 . 0 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   8 p x ;   } 
 . d e s t - i n f o - c a r d   h 5   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . d e s t - i n f o - l i s t   {   l i s t - s t y l e :   n o n e ;   p a d d i n g :   0 ;   m a r g i n :   0 ;   } 
 . d e s t - i n f o - l i s t   l i   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 4 p x ;   p a d d i n g :   1 4 p x   0 ;   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   } 
 . d e s t - i n f o - l i s t   l i : l a s t - c h i l d   {   b o r d e r - b o t t o m :   n o n e ;   } 
 . d e s t - i n f o - l i s t   l i   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   w i d t h :   2 0 p x ;   t e x t - a l i g n :   c e n t e r ;   f o n t - s i z e :   0 . 9 5 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . d e s t - i n f o - l i s t   l i   s m a l l   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   0 . 7 5 r e m ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   0 . 5 p x ;   m a r g i n - b o t t o m :   2 p x ;   } 
 . d e s t - i n f o - l i s t   l i   s t r o n g   {   f o n t - s i z e :   0 . 9 5 r e m ;   } 
 
 / *   C T A   C a r d   * / 
 . d e s t - c t a - c a r d   {   b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   p a d d i n g :   3 6 p x   2 8 p x ;   t e x t - a l i g n :   c e n t e r ;   c o l o r :   w h i t e ;   } 
 . d e s t - c t a - i c o n   {   w i d t h :   5 6 p x ;   h e i g h t :   5 6 p x ;   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ;   b o r d e r - r a d i u s :   5 0 % ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   1 . 4 r e m ;   m a r g i n :   0   a u t o   1 6 p x ;   } 
 . d e s t - c t a - c a r d   h 5   {   c o l o r :   w h i t e ;   m a r g i n :   0   0   8 p x   0 ;   f o n t - s i z e :   1 . 1 5 r e m ;   } 
 . d e s t - c t a - c a r d   p   {   o p a c i t y :   0 . 8 5 ;   f o n t - s i z e :   0 . 9 r e m ;   m a r g i n :   0   0   2 2 p x   0 ;   } 
 
 / *   B o o k i n g   c a r d   * / 
 . b o o k i n g - c a r d   { 
     p o s i t i o n :   s t i c k y ; 
     t o p :   1 0 0 p x ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
     o v e r f l o w :   h i d d e n ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . b o o k i n g - c a r d - h e a d e r   { 
     b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     t e x t - a l i g n :   c e n t e r ; 
     p a d d i n g :   2 2 p x   2 4 p x ; 
 } 
 . b o o k i n g - c a r d - h e a d e r   h 4   {   m a r g i n :   0 ;   f o n t - w e i g h t :   8 0 0 ;   f o n t - s i z e :   1 . 1 5 r e m ;   } 
 . b o o k i n g - c a r d - b o d y   {   p a d d i n g :   2 8 p x ;   } 
 
 . b o o k i n g - p r i c e   {   t e x t - a l i g n :   c e n t e r ;   m a r g i n - b o t t o m :   4 p x ;   } 
 . b o o k i n g - p r i c e - c u r r e n t   {   f o n t - s i z e :   2 . 2 r e m ;   f o n t - w e i g h t :   8 0 0 ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . b o o k i n g - p r i c e - o l d   {   t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 9 r e m ;   m a r g i n - r i g h t :   8 p x ;   } 
 . b o o k i n g - d i s c o u n t   { 
     b a c k g r o u n d :   # e 5 3 9 3 5 ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   2 p x   1 0 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - p i l l ) ; 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - l e f t :   8 p x ; 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 } 
 . b o o k i n g - p r i c e - p e r   { 
     d i s p l a y :   b l o c k ; 
     t e x t - a l i g n :   c e n t e r ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     p a d d i n g - b o t t o m :   2 0 p x ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 
 . b o o k i n g - f i e l d   {   m a r g i n - b o t t o m :   1 6 p x ;   } 
 . b o o k i n g - f i e l d : l a s t - o f - t y p e   {   m a r g i n - b o t t o m :   2 2 p x ;   } 
 . b o o k i n g - f i e l d   l a b e l   { 
     d i s p l a y :   b l o c k ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     m a r g i n - b o t t o m :   6 p x ; 
 } 
 . b o o k i n g - f i e l d   l a b e l   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - r i g h t :   6 p x ;   } 
 
 . b o o k i n g - s u b m i t   {   w i d t h :   1 0 0 % ;   } 
 
 . b o o k i n g - h e l p   { 
     t e x t - a l i g n :   c e n t e r ; 
     m a r g i n - t o p :   2 0 p x ; 
     p a d d i n g - t o p :   2 0 p x ; 
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . b o o k i n g - h e l p   p   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   0 . 8 5 r e m ;   m a r g i n - b o t t o m :   8 p x ;   } 
 
 / *   = = =   R E S P O N S I V E   � �    T A B L E T   ( � 0 �   9 9 1 p x )   = = =   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
 
     / *   T o p   b a r :   h i d e   l e f t   s e c t i o n   * / 
     . t o p - b a r - l e f t   {   d i s p l a y :   n o n e ;   } 
 
     / *   H a m b u r g e r   t o g g l e   * / 
     . n a v - t o g g l e   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   5 p x ; 
         w i d t h :   4 4 p x ; 
         h e i g h t :   4 4 p x ; 
         b a c k g r o u n d :   n o n e ; 
         b o r d e r :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
         z - i n d e x :   1 0 6 0 ; 
         p a d d i n g :   0 ; 
         - w e b k i t - t a p - h i g h l i g h t - c o l o r :   t r a n s p a r e n t ; 
     } 
     . n a v - t o g g l e . a c t i v e   . h a m b u r g e r - l i n e : n t h - c h i l d ( 1 )   { 
         t r a n s f o r m :   t r a n s l a t e Y ( 7 p x )   r o t a t e ( 4 5 d e g ) ; 
     } 
     . n a v - t o g g l e . a c t i v e   . h a m b u r g e r - l i n e : n t h - c h i l d ( 2 )   { 
         o p a c i t y :   0 ; 
         t r a n s f o r m :   s c a l e X ( 0 ) ; 
     } 
     . n a v - t o g g l e . a c t i v e   . h a m b u r g e r - l i n e : n t h - c h i l d ( 3 )   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 7 p x )   r o t a t e ( - 4 5 d e g ) ; 
     } 
 
     / *   O v e r l a y   b a c k d r o p   * / 
     . n a v - o v e r l a y   { 
         d i s p l a y :   n o n e ; 
         p o s i t i o n :   f i x e d ; 
         i n s e t :   0 ; 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
         z - i n d e x :   1 0 4 0 ; 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 2 p x ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 2 p x ) ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
     } 
     . n a v - o v e r l a y . a c t i v e   { 
         d i s p l a y :   b l o c k ; 
         o p a c i t y :   1 ; 
     } 
 
     / *   S l i d e - i n   n a v   m e n u   * / 
     . m a i n - n a v   {   z - i n d e x :   1 0 5 0 ;   } 
     . n a v - m e n u   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   s t r e t c h ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         r i g h t :   0 ; 
         w i d t h :   3 0 0 p x ; 
         m a x - w i d t h :   8 5 v w ; 
         h e i g h t :   1 0 0 v h ; 
         h e i g h t :   1 0 0 d v h ; 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         z - i n d e x :   1 0 5 0 ; 
         p a d d i n g :   8 0 p x   2 4 p x   3 2 p x ; 
         o v e r f l o w - y :   a u t o ; 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
         b o x - s h a d o w :   - 4 p x   0   2 4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         g a p :   0 ; 
         o v e r s c r o l l - b e h a v i o r :   c o n t a i n ; 
         t r a n s f o r m :   t r a n s l a t e X ( 1 0 0 % ) ; 
     } 
     . n a v - m e n u . a c t i v e   { 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
     } 
 
     / *   M o b i l e   n a v   l i n k s   � �    b i g   t o u c h   t a r g e t s   * / 
     . n a v - m e n u   >   l i   >   a   { 
         p a d d i n g :   1 4 p x   0 ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
         t e x t - a l i g n :   l e f t ; 
     } 
     . n a v - m e n u   >   l i : l a s t - c h i l d   >   a   { 
         b o r d e r - b o t t o m :   n o n e ; 
     } 
     . n a v - m e n u   >   l i : : a f t e r   {   d i s p l a y :   n o n e ;   } 
 
     / *   M o b i l e   d r o p d o w n   t o g g l e   * / 
     . d r o p d o w n - t o g g l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         w i d t h :   1 0 0 % ; 
         t e x t - a l i g n :   l e f t ; 
     } 
     . d r o p d o w n - a r r o w   { 
         d i s p l a y :   i n l i n e ; 
         f o n t - s i z e :   0 . 7 r e m ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
         c o l o r :   v a r ( - - m u t e d ) ; 
     } 
     . h a s - d r o p d o w n . o p e n   >   . d r o p d o w n - t o g g l e   . d r o p d o w n - a r r o w   { 
         t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
     } 
 
     / *   M o b i l e   d r o p d o w n   * / 
     . n a v - d r o p d o w n   { 
         p o s i t i o n :   s t a t i c   ! i m p o r t a n t ; 
         o p a c i t y :   1   ! i m p o r t a n t ; 
         v i s i b i l i t y :   v i s i b l e   ! i m p o r t a n t ; 
         t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
         b o x - s h a d o w :   n o n e ; 
         b o r d e r :   n o n e ; 
         b o r d e r - t o p :   n o n e ; 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         p a d d i n g :   0 ; 
         t r a n s i t i o n :   m a x - h e i g h t   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ,   p a d d i n g   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - l i g h t ) ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
         m a r g i n :   4 p x   0   8 p x ; 
         l e f t :   a u t o   ! i m p o r t a n t ; 
         m i n - w i d t h :   0   ! i m p o r t a n t ; 
     } 
     . h a s - d r o p d o w n . o p e n   >   . n a v - d r o p d o w n   { 
         m a x - h e i g h t :   5 0 0 p x ; 
         p a d d i n g :   1 2 p x   0 ; 
         o v e r f l o w - y :   a u t o ; 
         s c r o l l b a r - w i d t h :   t h i n ; 
         s c r o l l b a r - c o l o r :   v a r ( - - p r i m a r y )   v a r ( - - l i g h t ) ; 
     } 
     . h a s - d r o p d o w n . o p e n   >   . n a v - d r o p d o w n : : - w e b k i t - s c r o l l b a r   {   w i d t h :   4 p x ;   } 
     . h a s - d r o p d o w n . o p e n   >   . n a v - d r o p d o w n : : - w e b k i t - s c r o l l b a r - t h u m b   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   b o r d e r - r a d i u s :   4 p x ;   } 
     . h a s - d r o p d o w n . o p e n   >   . n a v - d r o p d o w n : : - w e b k i t - s c r o l l b a r - t r a c k   {   b a c k g r o u n d :   v a r ( - - l i g h t ) ;   } 
     . m e g a - d r o p d o w n   { 
         m i n - w i d t h :   0   ! i m p o r t a n t ; 
         p a d d i n g :   8 p x   1 6 p x   ! i m p o r t a n t ; 
         l e f t :   a u t o   ! i m p o r t a n t ; 
         t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
     } 
     . m e g a - d r o p d o w n : : b e f o r e   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   } 
     . m e g a - d r o p d o w n - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . m e g a - d r o p d o w n - h e a d e r   {   m a r g i n - b o t t o m :   8 p x ;   p a d d i n g - b o t t o m :   8 p x ;   } 
     . m e g a - d r o p d o w n - i t e m   {   p a d d i n g :   1 0 p x   1 2 p x ;   } 
     . n a v - m e n u   >   l i : h o v e r   >   . m e g a - d r o p d o w n   {   t r a n s f o r m :   n o n e   ! i m p o r t a n t ;   } 
     . h a s - d r o p d o w n . o p e n   >   . m e g a - d r o p d o w n   { 
         t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
         p a d d i n g :   8 p x   1 6 p x   ! i m p o r t a n t ; 
         m a x - h e i g h t :   6 0 0 p x ; 
     } 
     . n a v - d r o p d o w n   l i   a   { 
         p a d d i n g :   1 2 p x   2 0 p x ; 
         f o n t - s i z e :   0 . 9 r e m ; 
     } 
 
     / *   G r i d   l a y o u t s   * / 
     . h e r o - s e c t i o n   {   m i n - h e i g h t :   4 5 0 p x ;   } 
     . h e r o - t i t l e   {   f o n t - s i z e :   2 r e m ;   } 
     . s e a r c h - b o x   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;   } 
 
     / *   S e a r c h   F A B   +   h i d d e n   s e a r c h   b a r   o n   t a b l e t   * / 
     . s e a r c h - f a b   {   d i s p l a y :   f l e x ;   } 
     . s e a r c h - s e c t i o n   { 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         o p a c i t y :   0 ; 
         m a r g i n - t o p :   0 ; 
         t r a n s i t i o n :   m a x - h e i g h t   0 . 4 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) , 
                                 o p a c i t y   0 . 3 5 s   e a s e , 
                                 m a r g i n - t o p   0 . 3 5 s   e a s e ; 
     } 
     . s e a r c h - s e c t i o n . o p e n   { 
         m a x - h e i g h t :   3 0 0 p x ; 
         o p a c i t y :   1 ; 
         m a r g i n - t o p :   - 3 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 0 ; 
     } 
     . f e a t u r e - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . d e s t - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . t o u r - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . b l o g - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . s t a t s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . s t a t - i t e m : : a f t e r   {   d i s p l a y :   n o n e ;   } 
     . f o o t e r - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . c t a - c o n t e n t   {   f l e x - d i r e c t i o n :   c o l u m n ;   t e x t - a l i g n :   c e n t e r ;   g a p :   2 0 p x ;   } 
 
     / *   P a g e   h e a d e r   * / 
     . p a g e - h e a d e r   {   p a d d i n g :   1 0 0 p x   0   4 0 p x ;   } 
     . p a g e - h e a d e r   h 1   {   f o n t - s i z e :   2 r e m ;   } 
 
     / *   S e c t i o n   h e a d e r s   * / 
     . s e c t i o n - h e a d e r   h 2   {   f o n t - s i z e :   1 . 8 r e m ;   } 
 
     / *   S a f a r i   s e c t i o n   * / 
 
 
     / *   D e s t i n a t i o n   c a r d s   * / 
     . d e s t - c a r d   {   h e i g h t :   2 8 0 p x ;   } 
 
     / *   T e s t i m o n i a l s   * / 
     . t e s t i m o n i a l - c a r d   {   p a d d i n g :   2 4 p x ;   } 
 
     / *   S t a t s   * / 
     . s t a t - n u m b e r   {   f o n t - s i z e :   2 r e m ;   } 
 
     / *   N e w s l e t t e r   * / 
     . n e w s l e t t e r - f o r m   {   m a x - w i d t h :   1 0 0 % ;   } 
 
     / *   C T A   * / 
     . c t a - s e c t i o n   {   p a d d i n g :   4 0 p x   0 ;   } 
 
     / *   F o o t e r   * / 
     . f o o t e r - t o p   {   p a d d i n g :   4 0 p x   0   2 0 p x ;   } 
 
     / *   P r e v e n t   b o d y   s c r o l l   w h e n   m e n u   o p e n   * / 
     b o d y . m e n u - o p e n   { 
         o v e r f l o w :   h i d d e n ; 
         p o s i t i o n :   f i x e d ; 
         w i d t h :   1 0 0 % ; 
     } 
 
     / *   A d m i n   t a b l e   o v e r f l o w   * / 
     . t a b l e - w r a p p e r   {   o v e r f l o w - x :   a u t o ;   - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ;   } 
     . a d m i n - c a r d - b o d y   . t a b l e - w r a p p e r   {   m a r g i n :   0   - 1 6 p x ;   p a d d i n g :   0   1 6 p x ;   } 
 
     / *   A d m i n   f o r m   p a d d i n g   * / 
     . f o r m - s e c t i o n   {   p a d d i n g :   2 4 p x ;   } 
 
     / *   D e t a i l   p a g e :   2 - c o l u m n   o n   t a b l e t   * / 
     . d e t a i l - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 2 0 p x ;   g a p :   3 0 p x ;   } 
     . d e t a i l - h e r o   {   h e i g h t :   5 0 v h ;   m i n - h e i g h t :   3 4 0 p x ;   } 
     . b o o k i n g - c a r d   {   p o s i t i o n :   s t a t i c ;   } 
 
     / *   B o o k i n g   p a g e   * / 
     . b o o k i n g - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 4 0 p x ;   g a p :   3 0 p x ;   } 
     . b o o k i n g - s i d e b a r   {   p o s i t i o n :   s t a t i c ;   } 
 
     / *   A b o u t   p a g e   * / 
     . t e a m - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   } 
 
     / *   G a l l e r y :   r e d u c e   c o l u m n s   o n   t a b l e t   * / 
     . g a l l e r y - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   } 
 
     / *   C o n t a c t   p a g e   * / 
     . c o n t a c t - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 4 0 p x ;   g a p :   3 0 p x ;   } 
     . c o n t a c t - s i d e b a r   {   p o s i t i o n :   s t a t i c ;   } 
 } 
 
 / *   = = =   R E S P O N S I V E   � �    P H O N E   ( � 0 �   7 6 7 p x )   = = =   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   { 
     . h e r o - s e c t i o n   {   m i n - h e i g h t :   3 8 0 p x ;   } 
     . h e r o - t i t l e   {   f o n t - s i z e :   1 . 6 r e m ;   } 
     . h e r o - s u b t i t l e   {   f o n t - s i z e :   0 . 9 5 r e m ;   } 
     . h e r o - a r r o w   {   d i s p l a y :   n o n e ;   } 
     . h e r o - d o t s   {   b o t t o m :   1 6 p x ;   } 
     . s e a r c h - b o x   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
 
     / *   �  � �  �   S E A R C H   F A B   � �    f l o a t i n g   b u t t o n   r e v e a l s   s e a r c h   b a r   �  � �  �   * / 
     . s e a r c h - f a b   { 
         d i s p l a y :   f l e x ; 
         p o s i t i o n :   f i x e d ; 
         b o t t o m :   2 4 p x ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
         z - i n d e x :   1 0 2 0 ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         p a d d i n g :   1 4 p x   2 4 p x ; 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   4 0 p x ; 
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
         f o n t - s i z e :   0 . 8 8 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         b o x - s h a d o w :   0   6 p x   2 4 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 4 5 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) , 
                                 b o x - s h a d o w   0 . 3 s   e a s e , 
                                 o p a c i t y   0 . 3 s   e a s e ; 
         - w e b k i t - t a p - h i g h l i g h t - c o l o r :   t r a n s p a r e n t ; 
     } 
     . s e a r c h - f a b   i   {   f o n t - s i z e :   1 r e m ;   } 
     . s e a r c h - f a b : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 5 5 ) ; 
     } 
     . s e a r c h - f a b : a c t i v e   { 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   s c a l e ( 0 . 9 5 ) ; 
         t r a n s i t i o n - d u r a t i o n :   0 . 1 s ; 
     } 
     . s e a r c h - f a b . h i d d e n   { 
         o p a c i t y :   0 ; 
         p o i n t e r - e v e n t s :   n o n e ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 2 0 p x ) ; 
     } 
 
     / *   S e a r c h   s e c t i o n   � �    h i d d e n   b y   d e f a u l t ,   s l i d e s   d o w n   w h e n   r e v e a l e d   * / 
     . s e a r c h - s e c t i o n   { 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         o p a c i t y :   0 ; 
         m a r g i n - t o p :   0 ; 
         t r a n s i t i o n :   m a x - h e i g h t   0 . 4 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) , 
                                 o p a c i t y   0 . 3 5 s   e a s e , 
                                 m a r g i n - t o p   0 . 3 5 s   e a s e ; 
     } 
     . s e a r c h - s e c t i o n . o p e n   { 
         m a x - h e i g h t :   3 0 0 p x ; 
         o p a c i t y :   1 ; 
         m a r g i n - t o p :   - 3 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 0 ; 
     } 
 
     / *   �  � �  �   H O R I Z O N T A L   S W I P E   C A R O U S E L S   � �    M O B I L E   U X   �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  � �  �   * / 
     / *   C o n t a i n e r :   s c r o l l - s n a p   w i t h   p e e k   o f   n e x t   c a r d   +   e d g e   f a d e   h i n t   * / 
     . f e a t u r e - g r i d , 
     . d e s t - g r i d , 
     . t o u r - g r i d , 
     . g a l l e r y - g r i d , 
     . b l o g - g r i d , 
     . t e s t i m o n i a l - g r i d   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         o v e r f l o w - x :   a u t o ; 
         o v e r f l o w - y :   h i d d e n ; 
         s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
         g a p :   1 4 p x ; 
         p a d d i n g :   4 p x   2 0 p x   1 6 p x ; 
         m a r g i n :   0   - 2 0 p x ; 
         s c r o l l b a r - w i d t h :   n o n e ; 
         s c r o l l - p a d d i n g - l e f t :   2 0 p x ; 
     } 
     . f e a t u r e - g r i d : : - w e b k i t - s c r o l l b a r , 
     . d e s t - g r i d : : - w e b k i t - s c r o l l b a r , 
     . t o u r - g r i d : : - w e b k i t - s c r o l l b a r , 
     . g a l l e r y - g r i d : : - w e b k i t - s c r o l l b a r , 
     . b l o g - g r i d : : - w e b k i t - s c r o l l b a r , 
     . t e s t i m o n i a l - g r i d : : - w e b k i t - s c r o l l b a r   { 
         d i s p l a y :   n o n e ; 
     } 
     / *   R i g h t - e d g e   f a d e   h i n t   � �    m a s k s   c o n t e n t   t o   s h o w   " m o r e   t o   s c r o l l "   * / 
     . f e a t u r e - g r i d , 
     . d e s t - g r i d , 
     . t o u r - g r i d , 
     . g a l l e r y - g r i d , 
     . b l o g - g r i d , 
     . t e s t i m o n i a l - g r i d   { 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 5 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 5 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
     } 
     . f e a t u r e - g r i d   >   * , 
     . d e s t - g r i d   >   * , 
     . t o u r - g r i d   >   * , 
     . g a l l e r y - g r i d   >   * , 
     . b l o g - g r i d   >   * , 
     . t e s t i m o n i a l - g r i d   >   *   { 
         f l e x :   0   0   8 0 % ; 
         m i n - w i d t h :   0 ; 
         s c r o l l - s n a p - a l i g n :   s t a r t ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) , 
                                 o p a c i t y   0 . 3 5 s   e a s e , 
                                 b o x - s h a d o w   0 . 3 5 s   e a s e ; 
     } 
 
     / *   D i m   n o n - a c t i v e   c a r d s   t o   h i n t   a t   t h e   f o c u s e d   o n e   * / 
     . f e a t u r e - g r i d   >   * . s w i p e - d i m , 
     . d e s t - g r i d   >   * . s w i p e - d i m , 
     . t o u r - g r i d   >   * . s w i p e - d i m , 
     . g a l l e r y - g r i d   >   * . s w i p e - d i m , 
     . b l o g - g r i d   >   * . s w i p e - d i m , 
     . t e s t i m o n i a l - g r i d   >   * . s w i p e - d i m   { 
         o p a c i t y :   0 . 5 5 ; 
         t r a n s f o r m :   s c a l e ( 0 . 9 6 ) ; 
     } 
 
     / *   T o u c h   f e e d b a c k   � �    p r e s s   s t a t e   * / 
     . f e a t u r e - g r i d   >   * : a c t i v e , 
     . d e s t - g r i d   >   * : a c t i v e , 
     . t o u r - g r i d   >   * : a c t i v e , 
     . g a l l e r y - g r i d   >   * : a c t i v e , 
     . b l o g - g r i d   >   * : a c t i v e , 
     . t e s t i m o n i a l - g r i d   >   * : a c t i v e   { 
         t r a n s f o r m :   s c a l e ( 0 . 9 7 ) ; 
         t r a n s i t i o n - d u r a t i o n :   0 . 1 s ; 
     } 
 
     / *   �  � �  �   F e a t u r e   c a r d s   � �    m o b i l e   �  � �  �   * / 
     . f e a t u r e - g r i d   {   g a p :   1 2 p x ;   } 
     . f e a t u r e - g r i d   >   *   {   f l e x :   0   0   7 2 % ;   } 
     . f e a t u r e - c a r d   {   p a d d i n g :   2 4 p x   1 6 p x ;   } 
     . f e a t u r e - i c o n   {   w i d t h :   5 6 p x ;   h e i g h t :   5 6 p x ;   f o n t - s i z e :   1 . 3 r e m ;   m a r g i n - b o t t o m :   1 4 p x ;   } 
     . f e a t u r e - c a r d   h 5   {   f o n t - s i z e :   0 . 9 5 r e m ;   m a r g i n - b o t t o m :   6 p x ;   } 
     . f e a t u r e - c a r d   p   {   f o n t - s i z e :   0 . 8 2 r e m ;   l i n e - h e i g h t :   1 . 5 ;   } 
 
     / *   �  � �  �   D e s t i n a t i o n   c a r d s   � �    m o b i l e   �  � �  �   * / 
     . d e s t - g r i d   >   *   {   f l e x :   0   0   8 0 % ;   h e i g h t :   2 2 0 p x ;   } 
     . d e s t - c a r d   {   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;   } 
     . d e s t - c a r d - o v e r l a y   {   p a d d i n g :   1 8 p x ;   } 
     . d e s t - c a r d   h 4   {   f o n t - s i z e :   1 . 0 5 r e m ;   } 
     . d e s t - c a r d   p   {   f o n t - s i z e :   0 . 8 r e m ;   } 
 
     / *   �  � �  �   T o u r   c a r d s   � �    m o b i l e   �  � �  �   * / 
     . t o u r - g r i d   >   *   {   f l e x :   0   0   8 0 % ;   } 
     . t o u r - c a r d - i m g   {   h e i g h t :   1 6 0 p x ;   } 
     . t o u r - c a r d - b o d y   {   p a d d i n g :   1 4 p x ;   } 
     . t o u r - c a r d - m e t a   {   g a p :   1 0 p x ;   f o n t - s i z e :   0 . 7 5 r e m ;   m a r g i n - b o t t o m :   6 p x ;   } 
     . t o u r - c a r d - t i t l e   {   f o n t - s i z e :   0 . 9 5 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
     . t o u r - c a r d - f o o t e r   {   p a d d i n g :   1 0 p x   1 4 p x ;   } 
     . t o u r - p r i c e   {   f o n t - s i z e :   1 . 1 r e m ;   } 
 
     / *   �  � �  �   G a l l e r y   � �    m o b i l e   �  � �  �   * / 
     . g a l l e r y - g r i d   >   *   {   f l e x :   0   0   6 2 % ;   } 
     . g a l l e r y - g r i d   {   g a p :   1 0 p x ;   } 
 
     / *   �  � �  �   B l o g   c a r d s   � �    m o b i l e   �  � �  �   * / 
     . b l o g - g r i d   >   *   {   f l e x :   0   0   8 0 % ;   } 
     . b l o g - c a r d - i m g   {   h e i g h t :   1 6 0 p x ;   } 
     . b l o g - c a r d - b o d y   {   p a d d i n g :   1 4 p x ;   } 
     . b l o g - c a r d - m e t a   {   f o n t - s i z e :   0 . 7 2 r e m ;   g a p :   1 0 p x ;   m a r g i n - b o t t o m :   6 p x ;   } 
     . b l o g - c a r d - t i t l e   {   f o n t - s i z e :   0 . 9 2 r e m ;   m a r g i n - b o t t o m :   6 p x ;   } 
     . b l o g - c a r d - e x c e r p t   {   f o n t - s i z e :   0 . 8 2 r e m ;   - w e b k i t - l i n e - c l a m p :   2 ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 
     / *   �  � �  �   T e s t i m o n i a l   c a r d s   � �    m o b i l e   �  � �  �   * / 
     . t e s t i m o n i a l - g r i d   >   *   {   f l e x :   0   0   8 0 % ;   } 
     . t e s t i m o n i a l - c a r d   {   p a d d i n g :   2 0 p x ;   } 
     . t e s t i m o n i a l - q u o t e   {   f o n t - s i z e :   2 r e m ;   m a r g i n - b o t t o m :   8 p x ;   } 
     . t e s t i m o n i a l - c o n t e n t   {   f o n t - s i z e :   0 . 8 5 r e m ;   l i n e - h e i g h t :   1 . 6 ;   m a r g i n - b o t t o m :   1 4 p x ;   - w e b k i t - l i n e - c l a m p :   5 ;   d i s p l a y :   - w e b k i t - b o x ;   - w e b k i t - b o x - o r i e n t :   v e r t i c a l ;   o v e r f l o w :   h i d d e n ;   } 
 
     / *   �  � �  �   R i g h t - e d g e   f a d e   o v e r l a y   ( i n j e c t e d   b y   J S )   �  � �  �   * / 
     . s w i p e - f a d e   { 
         d i s p l a y :   n o n e ; 
     } 
 
     / *   �  � �  �   S w i p e   d o t s   +   c o u n t e r   �  � �  �   * / 
     . s w i p e - f o o t e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   1 4 p x ; 
         m a r g i n - t o p :   1 4 p x ; 
     } 
     . s w i p e - c o u n t e r   { 
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
         f o n t - s i z e :   0 . 7 2 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
         m i n - w i d t h :   4 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
     } 
     . s w i p e - d o t s   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
     } 
     . s w i p e - d o t s   . d o t   { 
         w i d t h :   8 p x ; 
         h e i g h t :   8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   v a r ( - - b o r d e r ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   0 ; 
     } 
     . s w i p e - d o t s   . d o t : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - t e x t - m u t e d ) ; 
     } 
     . s w i p e - d o t s   . d o t . a c t i v e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         w i d t h :   2 2 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         b o x - s h a d o w :   0   0   6 p x   r g b a ( 2 2 9 ,   1 4 8 ,   3 6 ,   0 . 3 5 ) ; 
     } 
 
     / *   �  � �  �   S t a t s   r o w   � �    m o b i l e   �  � �  �   * / 
     . s t a t s - g r i d   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         o v e r f l o w - x :   a u t o ; 
         s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
         g a p :   1 4 p x ; 
         p a d d i n g :   4 p x   2 0 p x   1 2 p x ; 
         m a r g i n :   0   - 2 0 p x ; 
         s c r o l l b a r - w i d t h :   n o n e ; 
     } 
     . s t a t s - g r i d : : - w e b k i t - s c r o l l b a r   {   d i s p l a y :   n o n e ;   } 
     . s t a t s - g r i d   { 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
     } 
     . s t a t s - g r i d   >   *   { 
         f l e x :   0   0   4 2 % ; 
         m i n - w i d t h :   0 ; 
         s c r o l l - s n a p - a l i g n :   s t a r t ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 6 ) ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
         p a d d i n g :   1 8 p x   1 2 p x ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 5 s   e a s e ,   t r a n s f o r m   0 . 3 5 s   e a s e ; 
     } 
     . s t a t s - g r i d   >   * . s w i p e - d i m   { 
         o p a c i t y :   0 . 5 ; 
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ; 
     } 
     . s t a t - i t e m : : a f t e r   {   d i s p l a y :   n o n e ;   } 
     . s t a t - i c o n   {   w i d t h :   4 0 p x ;   h e i g h t :   4 0 p x ;   f o n t - s i z e :   1 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
     . s t a t - n u m b e r   {   f o n t - s i z e :   1 . 6 r e m ;   } 
     . s t a t - l a b e l   {   f o n t - s i z e :   0 . 7 5 r e m ;   } 
 
     / *   �  � �  �   B o o t s t r a p   r o w   g r i d s   ( s a f a r i ,   d a y t r i p )   �  � �  �   * / 
     . m o b i l e - s w i p e r   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
         o v e r f l o w - x :   a u t o ; 
         o v e r f l o w - y :   h i d d e n ; 
         s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
         g a p :   1 4 p x ; 
         p a d d i n g :   4 p x   2 0 p x   1 6 p x ; 
         m a r g i n :   0   - 2 0 p x ; 
         s c r o l l b a r - w i d t h :   n o n e ; 
     } 
     . m o b i l e - s w i p e r : : - w e b k i t - s c r o l l b a r   {   d i s p l a y :   n o n e ;   } 
     . m o b i l e - s w i p e r   { 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
     } 
     . m o b i l e - s w i p e r   >   *   { 
         f l e x :   0   0   8 0 %   ! i m p o r t a n t ; 
         m i n - w i d t h :   0 ; 
         s c r o l l - s n a p - a l i g n :   s t a r t ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) , 
                                 o p a c i t y   0 . 3 5 s   e a s e ; 
     } 
     . m o b i l e - s w i p e r   >   * . s w i p e - d i m   { 
         o p a c i t y :   0 . 5 5 ; 
         t r a n s f o r m :   s c a l e ( 0 . 9 6 ) ; 
     } 
     . m o b i l e - s w i p e r   >   * : a c t i v e   { 
         t r a n s f o r m :   s c a l e ( 0 . 9 7 ) ; 
         t r a n s i t i o n - d u r a t i o n :   0 . 1 s ; 
     } 
 
     . f o o t e r - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . f o o t e r - b o t t o m   . c o n t a i n e r   {   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   1 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 
     / *   S m a l l e r   l o g o   o n   p h o n e   * / 
     . n a v - b r a n d   i m g   {   h e i g h t :   4 0 p x ;   } 
     . n a v - b r a n d   . b r a n d - t e x t   {   f o n t - s i z e :   1 . 1 r e m ;   } 
     . m a i n - n a v   . c o n t a i n e r   {   h e i g h t :   6 4 p x ;   } 
 
     / *   P a g e   h e a d e r   * / 
     . p a g e - h e a d e r   {   p a d d i n g :   8 0 p x   0   3 0 p x ;   } 
     . p a g e - h e a d e r   h 1   {   f o n t - s i z e :   1 . 6 r e m ;   } 
 
     / *   S e c t i o n   h e a d e r s   * / 
     . s e c t i o n - h e a d e r   h 2   {   f o n t - s i z e :   1 . 5 r e m ;   } 
     . s e c t i o n - h e a d e r   p   {   f o n t - s i z e :   0 . 9 5 r e m ;   } 
 
     / *   T o u r   c a r d s   * / 
     . t o u r - c a r d - i m g   {   h e i g h t :   1 8 0 p x ;   } 
 
     / *   S t a t s   * / 
     . s t a t - n u m b e r   {   f o n t - s i z e :   1 . 8 r e m ;   } 
     . s t a t - l a b e l   {   f o n t - s i z e :   0 . 8 r e m ;   } 
 
     / *   T e s t i m o n i a l s   * / 
     . t e s t i m o n i a l - c a r d   {   p a d d i n g :   2 0 p x ;   } 
 
     / *   C T A   /   N e w s l e t t e r   * / 
     . c t a - s e c t i o n   {   p a d d i n g :   3 2 p x   0 ;   } 
     . c t a - c o n t e n t   h 2   {   f o n t - s i z e :   1 . 4 r e m ;   } 
     . n e w s l e t t e r - f o r m   i n p u t [ t y p e = " e m a i l " ]   {   w i d t h :   1 0 0 % ;   } 
 
     / *   F o o t e r   * / 
     . f o o t e r - t o p   {   p a d d i n g :   3 2 p x   0   1 6 p x ;   } 
     . f o o t e r - t o p   h 3   {   f o n t - s i z e :   1 r e m ;   } 
 
     / *   4 0 4   * / 
     . p a g e - 4 0 4   . e r r o r - c o d e   {   f o n t - s i z e :   5 r e m ;   } 
 
     / *   S e a r c h   f i e l d s   * / 
     . s e a r c h - f i e l d   l a b e l   {   f o n t - s i z e :   0 . 7 8 r e m ;   } 
 
     / *   F o r m   c o n t r o l s   * / 
     . f o r m - c o n t r o l   {   f o n t - s i z e :   1 6 p x ;   / *   p r e v e n t s   i O S   z o o m   * /   } 
 
     / *   A d m i n   t a b l e s   � �    s t a c k e d   c a r d   v i e w   * / 
     . a d m i n - t a b l e   t h e a d   {   d i s p l a y :   n o n e ;   } 
     . a d m i n - t a b l e   t b o d y   t r   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         p a d d i n g :   1 2 p x   1 6 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - a d m - b o r d e r ) ; 
     } 
     . a d m i n - t a b l e   t b o d y   t d   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   6 p x   0 ; 
         b o r d e r :   n o n e ; 
         w h i t e - s p a c e :   n o r m a l ; 
     } 
     . a d m i n - t a b l e   t b o d y   t d : : b e f o r e   { 
         c o n t e n t :   a t t r ( d a t a - l a b e l ) ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   0 . 7 8 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 0 4 e m ; 
         c o l o r :   v a r ( - - a d m - t e x t - m u t e d ) ; 
         m i n - w i d t h :   1 0 0 p x ; 
     } 
 
     / *   D e t a i l   p a g e :   s i n g l e   c o l u m n   o n   p h o n e   * / 
     . d e t a i l - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . d e t a i l - h e r o   {   h e i g h t :   5 0 v h ;   m i n - h e i g h t :   3 0 0 p x ;   } 
     . d e t a i l - h e r o - m e t a   {   g a p :   1 2 p x ;   f o n t - s i z e :   0 . 8 5 r e m ;   f l e x - d i r e c t i o n :   c o l u m n ;   } 
 
     / *   T a b s :   m e d i u m   b o r d e r e d   i t e m s   i n   a   s c r o l l a b l e   r o w   * / 
     . d e t a i l - t a b s   { 
         f l e x - w r a p :   n o w r a p ; 
         g a p :   6 p x ; 
         b o r d e r - b o t t o m :   n o n e ; 
         o v e r f l o w - x :   a u t o ; 
         p a d d i n g - b o t t o m :   0 ; 
     } 
     . d e t a i l - t a b s   . n a v - i t e m   {   f l e x :   0   0   a u t o ;   } 
     . d e t a i l - t a b s   . n a v - l i n k   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   6 p x ; 
         p a d d i n g :   8 p x   1 4 p x ; 
         f o n t - s i z e :   0 . 8 r e m ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ; 
         w h i t e - s p a c e :   n o w r a p ; 
     } 
     . d e t a i l - t a b s   . n a v - l i n k   s p a n   {   d i s p l a y :   n o n e ;   } 
     . d e t a i l - t a b s   . n a v - l i n k   i   {   f o n t - s i z e :   0 . 8 5 r e m ;   m a r g i n :   0 ;   } 
     . d e t a i l - t a b s   . n a v - l i n k . a c t i v e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     } 
 
     . d e t a i l - t a b - b o d y   {   p a d d i n g :   2 0 p x ;   } 
     . d e t a i l - i n c l u d e s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   2 4 p x ;   } 
     . d e t a i l - g a l l e r y - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
 
     / *   D e s t i n a t i o n   d e t a i l   * / 
     . d e s t - h e r o   {   h e i g h t :   5 0 v h ;   m i n - h e i g h t :   3 4 0 p x ;   } 
     . d e s t - h e r o - t i t l e   {   f o n t - s i z e :   2 r e m ;   } 
     . d e s t - h e r o - s u b t i t l e   {   f o n t - s i z e :   0 . 9 5 r e m ;   } 
     . d e s t - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   3 6 p x ;   } 
     . d e s t - s i d e b a r - s t i c k y   {   p o s i t i o n :   s t a t i c ;   } 
     . d e s t - g a l l e r y   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . d e s t - a t t r a c t i o n s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   } 
     . d e s t - a c t i v i t i e s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;   } 
     . t r u s t - b a r - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   g a p :   2 0 p x ;   } 
     . w c u - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   } 
     . p a r t n e r s - t r a c k   {   g a p :   3 2 p x ;   } 
 
     / *   B o o k i n g   s i d e b a r   g o e s   b e l o w   c o n t e n t ,   f u l l   w i d t h ,   s t i c k y   b o t t o m   * / 
     . b o o k i n g - c a r d   {   p o s i t i o n :   s t a t i c ;   b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;   } 
     . d e t a i l - s i d e b a r   {   o r d e r :   3 ;   } 
     . b o o k i n g - c a r d - h e a d e r   {   p a d d i n g :   1 8 p x ;   } 
     . b o o k i n g - c a r d - b o d y   {   p a d d i n g :   2 2 p x ;   } 
     . b o o k i n g - p r i c e - c u r r e n t   {   f o n t - s i z e :   1 . 8 r e m ;   } 
 
     / *   A b o u t   p a g e   * / 
     . a b o u t - s t o r y   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   4 0 p x ;   } 
     . a b o u t - s t o r y - i m g   {   h e i g h t :   2 8 0 p x ;   } 
     . a b o u t - s t a t - b a d g e   {   b o t t o m :   - 1 6 p x ;   r i g h t :   1 6 p x ;   p a d d i n g :   1 6 p x   2 0 p x ;   } 
     . a b o u t - s t a t - n u m b e r   {   f o n t - s i z e :   1 . 6 r e m ;   } 
     . a b o u t - s t a t - l a b e l   {   f o n t - s i z e :   0 . 7 2 r e m ;   } 
 
     / *   T e a m :   h o r i z o n t a l   s w i p e   * / 
     . t e a m - g r i d   { 
         d i s p l a y :   f l e x ; 
         o v e r f l o w - x :   a u t o ; 
         s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
         g a p :   1 6 p x ; 
         p a d d i n g - b o t t o m :   8 p x ; 
         s c r o l l b a r - w i d t h :   n o n e ; 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   b l a c k   8 8 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
     } 
     . t e a m - g r i d : : - w e b k i t - s c r o l l b a r   {   d i s p l a y :   n o n e ;   } 
     . t e a m - c a r d   { 
         f l e x :   0   0   8 0 % ; 
         m i n - w i d t h :   0 ; 
         s c r o l l - s n a p - a l i g n :   s t a r t ; 
     } 
     . t e a m - c a r d - i m g   {   h e i g h t :   1 8 0 p x ;   } 
     . t e a m - c a r d - b o d y   {   p a d d i n g :   1 6 p x ;   } 
 
     / *   B o o k i n g   p a g e   * / 
     . b o o k i n g - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . b o o k i n g - f o r m - h e a d e r   {   p a d d i n g :   2 4 p x ;   } 
     . b o o k i n g - f o r m   {   p a d d i n g :   2 4 p x ;   } 
     . b o o k i n g - s i d e b a r   {   o r d e r :   - 1 ;   } 
     . b o o k i n g - p a c k a g e - i m g   {   h e i g h t :   1 5 0 p x ;   } 
 
     / *   T o u r   c a r d   i m a g e   w r a p p e r   * / 
     . t o u r - c a r d - i m g - w r a p   {   h e i g h t :   1 8 0 p x ;   } 
 
     / *   C o n t a c t   p a g e   * / 
     . c o n t a c t - i n f o - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   1 6 p x ;   m a r g i n - b o t t o m :   3 2 p x ;   } 
     . c o n t a c t - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . c o n t a c t - f o r m - h e a d e r   {   p a d d i n g :   2 4 p x ;   } 
     . c o n t a c t - f o r m   {   p a d d i n g :   2 4 p x ;   } 
     . c o n t a c t - s i d e b a r   {   o r d e r :   - 1 ;   } 
 
     / *   B l o g   p a g e   * / 
     . b l o g - t o o l b a r   {   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   s t r e t c h ;   } 
     . b l o g - s e a r c h   {   m a x - w i d t h :   1 0 0 % ;   } 
     . b l o g - f i l t e r s   {   j u s t i f y - c o n t e n t :   f l e x - s t a r t ;   } 
 
     / *   D e s t i n a t i o n   d e t a i l   * / 
     . d e s t - h e r o   {   h e i g h t :   4 5 v h ;   m i n - h e i g h t :   3 0 0 p x ;   } 
     . d e s t - h e r o - c o n t e n t   {   p a d d i n g - b o t t o m :   4 0 p x ;   } 
     . d e s t - h e r o - t i t l e   {   f o n t - s i z e :   1 . 6 r e m ;   } 
     . d e s t - h e r o - s u b t i t l e   {   f o n t - s i z e :   0 . 8 8 r e m ;   } 
     . d e s t - s t a t s - r o w   {   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   0 ;   } 
     . d e s t - s t a t   {   b o r d e r - r i g h t :   n o n e ;   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r ) ;   p a d d i n g :   1 4 p x   2 0 p x ;   } 
     . d e s t - s t a t : l a s t - c h i l d   {   b o r d e r - b o t t o m :   n o n e ;   } 
     . d e s t - g a l l e r y   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . d e s t - a t t r a c t i o n s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   g a p :   1 2 p x ;   } 
     . d e s t - a t t r a c t i o n - c a r d   {   p a d d i n g :   1 6 p x   1 4 p x ;   } 
     . d e s t - a t t r a c t i o n - n a m e   {   f o n t - s i z e :   0 . 8 8 r e m ;   } 
     . d e s t - a c t i v i t i e s - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;   g a p :   1 0 p x ;   } 
     . d e s t - a c t i v i t y - c a r d   {   p a d d i n g :   1 2 p x   1 4 p x ;   g a p :   1 0 p x ;   } 
     . d e s t - a c t i v i t y - i c o n   {   w i d t h :   3 4 p x ;   h e i g h t :   3 4 p x ;   f o n t - s i z e :   0 . 8 5 r e m ;   } 
     . d e s t - a c t i v i t y - n a m e   {   f o n t - s i z e :   0 . 8 2 r e m ;   } 
     . d e s t - b e s t t i m e - c a r d   {   f l e x - d i r e c t i o n :   c o l u m n ;   } 
     . d e s t - b e s t t i m e - d i v i d e r   {   w i d t h :   1 0 0 % ;   h e i g h t :   1 p x ;   } 
     . d e s t - b e s t t i m e - l e f t ,   . d e s t - b e s t t i m e - r i g h t   {   p a d d i n g :   2 0 p x ;   } 
     . d e s t - s e c t i o n - h e a d e r   {   m a r g i n - b o t t o m :   2 0 p x ;   } 
     . d e s t - s e c t i o n - t i t l e   {   f o n t - s i z e :   1 . 2 5 r e m ;   } 
     . t r u s t - b a r   {   p a d d i n g :   3 6 p x   0 ;   } 
     . t r u s t - b a r - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   g a p :   1 0 p x ;   } 
     . t r u s t - n u m b e r   {   f o n t - s i z e :   2 r e m ;   } 
     . t r u s t - l a b e l   {   f o n t - s i z e :   0 . 7 5 r e m ;   } 
     . w c u - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   2 0 p x ;   }     . p a r t n e r s - t r a c k   {   g a p :   2 0 p x ;   } 
     . p a r t n e r - l o g o   i m g   {   h e i g h t :   6 5 p x ;   } 
     . w a - w i d g e t   {   b o t t o m :   2 0 p x ;   l e f t :   2 0 p x ;   } 
     . d e s t - s e c t i o n - t i t l e   {   f o n t - s i z e :   1 . 2 5 r e m ;   } 
 } 
 
 / *   = = =   F R O N T E N D   T O A S T   N O T I F I C A T I O N S   = = =   * / 
 . f r o n t e n d - t o a s t s   { 
     p o s i t i o n :   f i x e d ; 
     t o p :   9 0 p x ; 
     r i g h t :   2 0 p x ; 
     z - i n d e x :   1 0 0 0 0 ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   1 0 p x ; 
     m a x - w i d t h :   4 0 0 p x ; 
     w i d t h :   c a l c ( 1 0 0 v w   -   4 0 p x ) ; 
 } 
 . f e - t o a s t   { 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     b o x - s h a d o w :   0   1 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 2 ) ,   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 6 ) ; 
     p a d d i n g :   1 6 p x   1 8 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 4 p x ; 
     a n i m a t i o n :   f e T o a s t I n   0 . 4 5 s   c u b i c - b e z i e r ( 0 . 2 1 , 1 . 0 2 , 0 . 7 3 , 1 ) ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 } 
 . f e - t o a s t . f e - t o a s t - e x i t   { 
     a n i m a t i o n :   f e T o a s t O u t   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 0 6 , 0 . 7 1 , 0 . 5 5 , 1 )   f o r w a r d s ; 
 } 
 . f e - t o a s t - i c o n   {   f o n t - s i z e :   1 . 3 r e m ;   f l e x - s h r i n k :   0 ;   } 
 . f e - t o a s t - b o d y   {   f l e x :   1 ;   f o n t - s i z e :   0 . 9 r e m ;   f o n t - w e i g h t :   5 0 0 ;   c o l o r :   v a r ( - - t e x t ) ;   } 
 . f e - t o a s t - c l o s e   { 
     b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   c u r s o r :   p o i n t e r ; 
     f o n t - s i z e :   1 . 2 r e m ;   p a d d i n g :   4 p x ;   l i n e - h e i g h t :   1 ;   t r a n s i t i o n :   c o l o r   0 . 2 s ;   f l e x - s h r i n k :   0 ; 
 } 
 . f e - t o a s t - c l o s e : h o v e r   {   c o l o r :   v a r ( - - t e x t ) ;   } 
 . f e - t o a s t - p r o g r e s s   { 
     p o s i t i o n :   a b s o l u t e ;   b o t t o m :   0 ;   l e f t :   0 ;   h e i g h t :   3 p x ;   b o r d e r - r a d i u s :   0   0   0   v a r ( - - r a d i u s - l g ) ; 
     t r a n s i t i o n :   w i d t h   l i n e a r ;   o p a c i t y :   0 . 7 ;   w i d t h :   1 0 0 % ; 
 } 
 . f e - t o a s t - s u c c e s s   {   b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - s e c o n d a r y ) ;   } 
 . f e - t o a s t - s u c c e s s   . f e - t o a s t - i c o n   {   c o l o r :   v a r ( - - s e c o n d a r y ) ;   } 
 . f e - t o a s t - s u c c e s s   . f e - t o a s t - p r o g r e s s   {   b a c k g r o u n d :   v a r ( - - s e c o n d a r y ) ;   } 
 . f e - t o a s t - e r r o r ,   . f e - t o a s t - d a n g e r   {   b o r d e r - l e f t :   4 p x   s o l i d   # e 5 3 9 3 5 ;   } 
 . f e - t o a s t - e r r o r   . f e - t o a s t - i c o n ,   . f e - t o a s t - d a n g e r   . f e - t o a s t - i c o n   {   c o l o r :   # e 5 3 9 3 5 ;   } 
 . f e - t o a s t - e r r o r   . f e - t o a s t - p r o g r e s s ,   . f e - t o a s t - d a n g e r   . f e - t o a s t - p r o g r e s s   {   b a c k g r o u n d :   # e 5 3 9 3 5 ;   } 
 . f e - t o a s t - w a r n i n g   {   b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y ) ;   } 
 . f e - t o a s t - w a r n i n g   . f e - t o a s t - i c o n   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . f e - t o a s t - w a r n i n g   . f e - t o a s t - p r o g r e s s   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   } 
 . f e - t o a s t - i n f o ,   . f e - t o a s t - n o n e   {   b o r d e r - l e f t :   4 p x   s o l i d   # 1 9 7 6 d 2 ;   } 
 . f e - t o a s t - i n f o   . f e - t o a s t - i c o n ,   . f e - t o a s t - n o n e   . f e - t o a s t - i c o n   {   c o l o r :   # 1 9 7 6 d 2 ;   } 
 . f e - t o a s t - i n f o   . f e - t o a s t - p r o g r e s s ,   . f e - t o a s t - n o n e   . f e - t o a s t - p r o g r e s s   {   b a c k g r o u n d :   # 1 9 7 6 d 2 ;   } 
 @ k e y f r a m e s   f e T o a s t I n   {   f r o m   {   t r a n s f o r m :   t r a n s l a t e X ( 1 2 0 % )   s c a l e ( 0 . 9 5 ) ;   o p a c i t y :   0 ;   }   t o   {   t r a n s f o r m :   t r a n s l a t e X ( 0 )   s c a l e ( 1 ) ;   o p a c i t y :   1 ;   }   } 
 @ k e y f r a m e s   f e T o a s t O u t   {   f r o m   {   t r a n s f o r m :   t r a n s l a t e X ( 0 )   s c a l e ( 1 ) ;   o p a c i t y :   1 ;   }   t o   {   t r a n s f o r m :   t r a n s l a t e X ( 1 2 0 % )   s c a l e ( 0 . 9 5 ) ;   o p a c i t y :   0 ;   }   } 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   { 
     . f r o n t e n d - t o a s t s   {   t o p :   a u t o ;   b o t t o m :   2 0 p x ;   r i g h t :   1 0 p x ;   l e f t :   1 0 p x ;   m a x - w i d t h :   n o n e ;   w i d t h :   a u t o ;   } 
 } 
 
 / *   = = =   U T I L I T I E S   = = =   * / 
 . s e a r c h - f a b   {   d i s p l a y :   n o n e ;   } 
 . s w i p e - d o t s ,   . s w i p e - f o o t e r ,   . s w i p e - c o u n t e r   {   d i s p l a y :   n o n e ;   } 
 . s w i p e - d i m   {   o p a c i t y :   1   ! i m p o r t a n t ;   t r a n s f o r m :   n o n e   ! i m p o r t a n t ;   } 
 . t e x t - p r i m a r y - c   {   c o l o r :   v a r ( - - p r i m a r y )   ! i m p o r t a n t ;   } 
 . b g - p r i m a r y - s   {   b a c k g r o u n d :   v a r ( - - p r i m a r y )   ! i m p o r t a n t ;   } 
 . b g - d a r k - s   {   b a c k g r o u n d :   v a r ( - - d a r k )   ! i m p o r t a n t ;   } 
 . f w - 7 0 0   {   f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ;   } 
 . f w - 8 0 0   {   f o n t - w e i g h t :   8 0 0   ! i m p o r t a n t ;   }  
 
/* ===== Error Pages ===== */
.error-code {
  font-size: clamp(7rem, 16vw, 11rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -4px;
}
