:root {
  --primary-color: #005BA9;
  --secondary-color: #FF5733;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --border-radius: 12px;
}

.sar-group-booking-button {
  position: relative;
  padding-right: 30px;
}

.sar-badge {
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.5rem;
  padding: 5px 10px;
  border-radius: 20px;
  position: absolute;
  top: -11px;
  right: 0;
}

@font-face {
  font-family: 'Blankers';
  src: url('../fonts/blankers/Blankers.ttf') format('truetype'),
       url('../fonts/blankers/Blankers.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

#card-title {
  font-family: 'Blankers', sans-serif;
  padding: 10px;
  background: linear-gradient(45deg, var(--primary-color), #2c5364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.booking-card {
  background: white;
  border: none;
  box-shadow: none;
  transform: none !important;
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}

.booking-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.booking-card * {
  transform: none !important;
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}

.booking-card *:hover {
  transform: none !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  transform: none !important;
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: none !important;
}

.badge {
  background-color: var(--primary-color);
}

.badge-red {
  background-color: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.badge-blue {
  background-color: #3b82f6;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.swiper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.alert-info {
  background-color: rgba(0, 91, 169, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.lead {
  color: var(--text-color);
  line-height: 1.6;
  text-align: left;
}

hr {
  border-color: var(--primary-color);
  opacity: 0.2;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #004a8f;
  text-decoration: underline;
}

.fas {
  transition: var(--transition);
}

.fas:hover {
  transform: scale(1.1);
}

/* Video Background Section Styles */
.video-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  margin: 2rem 0;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  width: 100px;
  height: 100px;
  background: rgba(0, 91, 169, 0.9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(0, 91, 169, 1);
}

.play-button i {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.play-button-text {
  color: white;
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

/* Policy Tabs Styles */
.nav-tabs {
    border-bottom: 2px solid rgba(0, 91, 169, 0.1);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    margin-right: 0.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 91, 169, 0.05);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: white;
    border-bottom: 3px solid var(--primary-color);
}

.policy-content {
    padding: 1rem 0;
    text-align: left;
}

.policy-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
}

.policy-content h6 {
    color: var(--text-color);
    font-weight: 500;
    text-align: left;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.policy-content ul li ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.policy-content ul li ul li {
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.policy-content p {
    text-align: left;
    margin-bottom: 1rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav-tabs .nav-link i {
        margin-right: 0.25rem;
    }
} 