.brand-story-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1b3088;
    margin-bottom: 1rem;
}

.brand-story-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.video-wrapper {
    overflow: hidden;
}

.audio-icon-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.audio-icon-btn:hover {
    background-color: rgba(0,0,0,0.7);
}

.cabins-section{
  background: #f6faff;
}

.cabins-title {
    font-weight: 600;
    color: #1e266d;
    letter-spacing: .3px;
	text-transform:uppercase;
}

.cabin-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #ebebeb;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  height:100%;
  display:flex;
  flex-direction:column;
}
.cabin-img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.cabin-body{
  padding:18px 18px 20px;
}
.cabin-name {
    text-transform: uppercase;
    color: #1b3088;
    letter-spacing: .12em;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 6px 0;
}
.cabin-divider{
  border:0;
  border-top:2px solid #e7d8c4;
  margin:10px 0 12px;
}
.cabin-info{
  color:#4e4e4e;
  font-size:.98rem;
  line-height:1.5;
  margin:0;
}

@media (max-width: 767.98px){
  .cabin-img{ height:200px; }
  .cabin-name{ letter-spacing:.1em; }
}


.theme-title {
  font-weight: 700;
  color: #1b3088;
}

.theme-title span {
  font-weight: 400;
  font-style: italic;
  color: #555;
}

.theme-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.theme-card-body {
  padding: 15px;
}

.theme-card-body h3 {
    font-weight: 600;
    color: #002d74;
    font-size: 18px;
    margin-bottom: 8px;
}

.theme-card-body p {
  font-size: 14px;
  color: #444;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}




.activities-section{
  background: linear-gradient(180deg, #eaf2ff, #f7fbff);
}

.activities-title{
  color: #1b3088;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.activities-title::after{
  content:"";
  display:block;
  height:3px;
  width: 260px;
  background:#1b3088;
  opacity:.25;
  margin-top: 10px;
}

.activity-card{
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(26,46,86,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(27,48,136,.08);
}
.activity-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.activity-media img{
  width: 100%;
  height: 190px;      
  object-fit: cover;
  display: block;
}

.activity-body{
  padding: 14px 16px 16px;
  color: #2d2d2d;
}
.activity-heading{
  color: #1b3088;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.activity-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #334;
    margin: 0;
    text-align: left;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .activity-media img{ height: 200px; }
}
@media (max-width: 575.98px){
  .activities-title::after{ width: 180px; }
  .activity-media img{ height: 190px; }
}




.dining-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b3088;
  text-transform: uppercase;
}

.dining-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 10px auto;
}

.dining-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dining-card-body {
  padding: 15px;
  text-align: left;
}

.dining-card-body h3 {
    font-weight: 600;
	font-size: 17px;
    color: #1b3088;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dining-card-body p {
  font-size: 0.95rem;
  color: #444;
}

.dining-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
