/* Font Face Declarations */
@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ChangaOne';
    src: url('../fonts/ChangaOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/GothamRounded-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/GothamRounded-Light.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/GothamRoundedMedium_21022.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/GothamRoundedBold_21016.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --yas-blue: #3a5ba7;
    --yas-light-blue: #00A8E8;
    --yas-red: #DC143C;
    --yas-dark: #1a132e;
    --yas-gray: #939198;
    
    /* Font Family Variables */
    --font-bebas: 'BebasNeue', sans-serif;
    --font-changa: 'ChangaOne', cursive;
    --font-gotham: 'Gotham', sans-serif;
    --font-gotham-rounded: 'GothamRounded', sans-serif;
}

/* iOS Safari Color Fixes */
@supports (-webkit-touch-callout: none) {
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    body {
        -webkit-text-size-adjust: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-gotham);
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#getting-around, #top-sights, #theme-parks, #packages, #deals {
    scroll-margin-top: 120px;
}

/* Header Styles */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.fixed-top.scrolled{
    padding: 0.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yas-blue) !important;
    color: #3a5ba7 !important; /* iOS fallback */
}

.navbar-brand img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.navbar-brand .yas-logo {
    font-style: italic;
    font-weight: 800;
    color: var(--yas-light-blue);
    color: #00A8E8; /* iOS fallback */
}

.navbar-brand small {
    font-size: 0.7em;
    font-weight: 400;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 45%;
    background-color: var(--yas-dark);
    background-color: #1a132e; /* iOS fallback */
}

.navbar-nav .nav-link {
    color: var(--yas-dark) !important;
    color: #1a132e !important; /* iOS fallback */
    font-weight: 700;
    margin: 0;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-text-fill-color: #1a132e; /* iOS Safari fix */
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yas-blue) 0%, var(--yas-light-blue) 100%);
    background: -webkit-radial-gradient(circle, #3a5ba7 0%, #00A8E8 100%); /* iOS fallback */
    background: radial-gradient(circle, #3a5ba7 0%, #00A8E8 100%); /* iOS fallback */
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    opacity: 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    color: #ffffff !important; /* iOS fallback */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 91, 167, 0.3);
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

.navbar-nav .nav-link:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.navbar-nav .nav-link:hover::after {
    left: 100%;
}

.navbar-nav .nav-link:hover i {
    color: white;
    transform: rotate(360deg) scale(1.2);
}

.navbar-nav .nav-link span {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.navbar-nav .nav-link.active {
    color: white !important;
    color: #ffffff !important; /* iOS fallback */
    background: linear-gradient(135deg, var(--yas-blue), var(--yas-light-blue));
    background: -webkit-linear-gradient(135deg, #3a5ba7, #00A8E8); /* iOS fallback */
    background: linear-gradient(135deg, #3a5ba7, #00A8E8); /* iOS fallback */
    box-shadow: 0 4px 15px rgba(58, 91, 167, 0.25);
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

.navbar-nav .nav-link.active i {
    color: white;
}

.navbar-nav .nav-link i {
    margin-right: 0.3rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Fixed Query Button */
.fixed-query-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--yas-blue);
    background: #3a5ba7; /* iOS fallback */
    color: white;
    color: #ffffff; /* iOS fallback */
    padding: 0.8rem 2rem;
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    font-weight: 600;
    cursor: pointer;
    transform-origin: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

.fixed-query-btn:hover {
    background: var(--yas-light-blue);
    background: #00A8E8; /* iOS fallback */
    color: white;
    color: #ffffff; /* iOS fallback */
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 450px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 80vh;
    min-height: 450px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-slide.slick-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,51,102,0.7), rgba(0,51,102,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.slide-content {
    text-align: left;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.hero-slide.slick-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yas-light-blue);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out 0.5s;
}

.hero-slide.slick-active .slide-subtitle {
    opacity: 1;
    transform: translateX(0);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.7s;
}

.hero-slide.slick-active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.9s;
}

.hero-slide.slick-active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.btn-discover {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--yas-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 1.1s;
}

.hero-slide.slick-active .btn-discover {
    opacity: 1;
    transform: translateY(0);
}

.btn-discover:hover {
    background: #b0102e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    color: white;
}

/* Hero Slider Controls */
.hero-slider .slick-dots {
    bottom: 40px;
    z-index: 10;
    text-align: left;
    padding-left: 2rem;
}

.hero-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 8px;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-slider .slick-dots li button::before {
    display: none;
}

.hero-slider .slick-dots li.slick-active button {
    background: var(--yas-light-blue);
    border-color: white;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .hero-slider .slick-dots {
        text-align: center;
        padding-left: 0;
        bottom: 20px;
    }
}

/* Section Styles */
.section-title {
    font-size: 1.7rem;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: var(--font-changa);
}

.section-title.small {
    font-size: 1.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--yas-light-blue);
    color: #00A8E8; /* iOS fallback */
    font-weight: 600;
    margin-bottom: 0.5rem;
    -webkit-text-fill-color: #00A8E8; /* iOS Safari fix */
}

.section-subtitle.dark {
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    -webkit-text-fill-color: #3a5ba7; /* iOS Safari fix */
}

.section-description {
    color: var(--yas-gray);
    font-size: 1rem;
}

/* Theme Parks Section */
.theme-parks-section {
    background: #174a98;
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

    .font-light{
        font-family: var(--font-gotham-rounded);
        font-weight:100;
    }
.font-dark {
    color: #1a132e;
}
    .theme-parks-section .decoration-img {
        position: absolute;
        z-index: 0;
        opacity: 0.3;
        pointer-events: none;
    }

.theme-parks-section .decoration-img.top-left {
    top: 0;
    left: 0;
}

.theme-parks-section .decoration-img.bottom-right {
    bottom: 0;
    right: 0;
}

.theme-parks-section .container {
    position: relative;
    z-index: 1;
}

.theme-parks-section .section-title {
    color: white;
}

.theme-parks-section .section-subtitle {
    color: var(--yas-light-blue);
}

.theme-parks-section .section-description {
    color: #f0f0f0;
}

.theme-park-card {
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
    margin-bottom: 2rem;
}

.theme-park-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.theme-park-card-body a {
    color: #ffffff;
}

.theme-park-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-park-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 0;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.theme-park-card h5 {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-family: var(--font-changa);
    letter-spacing: 0.5px;
}

.theme-park-card-body p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-size: 0.9rem;
    width: 90%;
}

.theme-park-card-body p.show {
    max-height: 200px;
    margin-top: 0.5rem;
    opacity: 1;
}

.card-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--yas-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(220,20,60,0.45);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.card-icon:hover {
    transform: scale(1.1);
    background: #b0102e;
}

.card-icon.active {
    transform: rotate(180deg);
    background: #b0102e;
}

/* Package Cards */
.package-card {
    position: relative;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#packages .container {
    width: 70%;
}


.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    object-fit: cover;
    width: 100%;
}

#packages h5 {
font-family: var(--font-bebas);
font-size: 2rem;
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.btn-book {
    background: linear-gradient(to right, #e11f26, #e65825);
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.5s 
ease;
    margin-top: 1rem;
    text-decoration: none;
    border: 1px solid #ffffff;
    box-shadow: 0 0 5px #bcbbbb;
    font-family: var(--font-changa);
}

.btn-book:hover {
    background: #b0102e;
    color: white;
    transition: background 0.5s 
ease;
}

/* Rewards Section */
.rewards-section {
    padding:  0;
    background: #f9f9f9;
}

.rewards-section .container {
    width: 60%;
}

.reward-tier {
    text-align: center;
    padding: 3rem 2rem 1rem;
    background: linear-gradient(to bottom, #010260, #0aa2d5);
    border-radius: 20px;
    margin: 4rem 0 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    color: white;
}

.reward-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.reward-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #8b9dc3;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.reward-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.reward-tier h5 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: white;
    font-family: var(--font-changa);
}

.reward-tier p.text-muted {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
}

/* Info Boxes */
.info-bg{
    background: #e9f9ff;
}
.info-box {
    background: #ffffff;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid;
    border-top-color: #012577;
    border-right-color: #086888;
    border-bottom-color: #078dba;
    border-left-color: #1d95be;
    overflow: hidden;
}

.info-box h5 {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.info-box h5 i {
    display: none;
}

.info-box p {
    color: #666;
    font-size: 0.69rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--font-gotham-rounded);
    font-weight:100;
}

.info-box-icon {
    font-size: 3rem;
    color: var(--yas-light-blue);
}

/* Group Rewards Section */
.group-rewards-section {
    background: white;
    padding: 1.5rem 0 0;
}
.group-rewards-section .container{
    width: 80%;
}
.group-rewards-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0aa2d5;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: var(--font-changa);
    letter-spacing: 1px;
}

.group-rewards-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.group-reward-card {
       /* background: #f5f5f5; */
       padding: 0.5rem 1.5rem 0.5rem;
       border-radius: 5px;
       margin-bottom: 2rem;
       position: relative;
       text-align: left;
        box-shadow: 0 2px 10px rgb(0 0 0 / 16%); 
       overflow: visible;
       width: 250px;
       margin: 30px auto;
}

.group-reward-card::before{
    position: absolute;
    content: '';
    top: 14px;
    left: -15px;
    width: 100%;
    height: 100%;
    /* background: #5a4444; */
    z-index: 1;
    border-radius: 0;
    border: 1px solid #d2d2d2;
    border-right: none;
    border-top: none;
}

.diamond-icon {
    position: absolute;
    top: -45px;
    left: -38px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #010260 0%, #0aa2d5 100%);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 8px;
}

.diamond-icon img {
    color: white;
    font-size: 1.5rem;
    transform: rotate(-45deg);
}

.group-reward-card h5 {
    color: #666;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.group-reward-card p {
    color: #666;
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Shuttle Section */
#getting-around h3{
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 1.2rem;
}

.shuttle-slider {
    margin: 2rem 0;
    padding: 0 50px;
}

.shuttle-slider .slick-list {
    margin: 0 -15px;
}

.shuttle-slider .slick-slide {
    padding: 0 15px;
}

.shuttle-card {
    position: relative;
    border-radius: 15px;
    margin-bottom: 2rem;
    margin-right: 0;
}

.shuttle-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px; 
    border: 1px solid var(--yas-dark);
}

.shuttle-card-content {
    background: #ffffff;
    padding: 1rem;
    text-align: center;
    border-radius: 15px;
    margin: -35px 15px 0;
    box-shadow: 0 0 10px #b2b2b2;
    z-index: 999;
    position: relative;
}

.shuttle-card-content h5 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.shuttle-card-content .btn-know-more {
    background: linear-gradient(to bottom, #003366, #0aa2d5);
    background: -webkit-linear-gradient(to bottom, #003366, #0aa2d5); /* iOS fallback */
}

.btn-know-more {
    background: linear-gradient(to right, #e11f26, #e65825);
    background: -webkit-linear-gradient(to bottom, #e11f26, #e65825); /* iOS fallback */
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: white;
    color: #ffffff; /* iOS fallback */
    padding: 0.4rem 1.5rem;
    border: none;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    cursor: pointer;
    width: auto;
    margin: 0 auto;
    display: block;
    font-family: var(--font-changa);
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

.btn-know-more:hover {
    opacity: 0.9;
    color: white;
}

/* Shuttle Slider Arrows */
.shuttle-slider .slick-prev,
.shuttle-slider .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.shuttle-slider .slick-prev {
    left: 0;
}

.shuttle-slider .slick-next {
    right: 0;
}

.shuttle-slider .slick-prev:before,
.shuttle-slider .slick-next:before {
    font-size: 30px;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    opacity: 0.8;
}

.shuttle-slider .slick-prev:hover:before,
.shuttle-slider .slick-next:hover:before {
    opacity: 1;
}

/* Shuttle Slider Dots */
.shuttle-slider .slick-dots {
    bottom: -40px;
}

.shuttle-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    opacity: 0.5;
}

.shuttle-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
}

/* Top Sights Carousel */
.sights-slider {
    margin: 2rem 0;
    padding: 0 50px;
}

.sights-slider .slick-list {
    margin: 0 -15px;
    overflow-y: clip;
}

.sights-slider .slick-slide {
    padding: 0 15px;
}

.sights-card {
    position: relative;
    border-radius: 15px;
    margin: 0;
    transition: transform 0.3s ease;
}

.sights-card:hover {
    transform: translateY(-5px);
}

.sights-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.sights-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 0 15px 15px;
    margin: 0 15px;
    background: linear-gradient(to top, black, #0000000a);
}

.sights-card h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sights-card .btn-know-more {
    background: linear-gradient(to bottom, #e11f26, #e65825);
    background: -webkit-linear-gradient(to bottom, #e11f26, #e65825); /* iOS fallback */
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: white;
    color: #ffffff; /* iOS fallback */
    padding: 0.4rem 1.5rem;
    border: none;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    cursor: pointer;
    width: auto;
    margin: 0 auto;
    border: 1px solid #fff;
    display: block;
    font-family: var(--font-changa);
    -webkit-text-fill-color: #ffffff; /* iOS Safari fix */
}

.sights-card .btn-know-more:hover {
    opacity: 0.9;
    color: white;
}

/* Sights Slider Arrows */
.sights-slider .slick-prev,
.sights-slider .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.sights-slider .slick-prev {
    left: 0;
}

.sights-slider .slick-next {
    right: 0;
}

.sights-slider .slick-prev:before,
.sights-slider .slick-next:before {
    font-size: 30px;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    opacity: 0.8;
}

.sights-slider .slick-prev:hover:before,
.sights-slider .slick-next:hover:before {
    opacity: 1;
}

/* Sights Slider Dots */
.sights-slider .slick-dots {
    bottom: -40px;
}

.sights-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    opacity: 0.5;
}

.sights-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
}

/* Footer */
.footer {
    background: var(--yas-blue);
    background: #3a5ba7; /* iOS fallback */
    color: white;
    color: #ffffff; /* iOS fallback */
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Background Section */
.bg-light-gray {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .fixed-query-btn {
        display: none;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Hotel Cards Section */
.hotel-bg {
    background: #f0f0f0;
}
.hotel-slider-item {
    background: #ffffff;
    margin-right: 15px;
    margin-left: 15px;
    transition: all 0.4s;
    height: auto;
    border-radius: 150px 150px 0 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}

    .hotel-slider-image-box {
        border: 5px solid #ffffff;
        height: 180px;
        width: 255px;
        margin: auto;
        border-radius: 20px;
        transition: background 0.3s ease, color 0.3s ease;
    }

.hotel-slider-item:hover .hotel-slider-image-box{
        background: var(--yas-dark);
    color: #ffffff;
}
.hotel-slider-image-box img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.hotel-slider-heading {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
    padding: 0 15px;
}

.hotel-slider-item:hover .hotel-slider-heading h5{
    color: var(--yas-dark);
}

.hotel-slider-heading h5 {
    font-size: 14px;
    min-height: 40px;
    margin-top: 40px;
    transition: color 0.3s ease;
}

    .hotel-slider-heading img {
        border-radius: 15px;
        margin: 3px;
    }

.hotel-slider-booking {
    text-align: center;
    background: linear-gradient(to bottom, #003366, #0aa2d5);
    padding: 5px;
    margin: auto;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hotel-slider-item:hover .hotel-slider-booking{
    background: var(--yas-dark);
}

.hotel-slider-booking a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    margin: auto;
    font-weight: 400;
    display: block;
}

/* Hotel Slider */
.hotel-slider {
    padding: 0 40px;
}

.hotel-slider .slick-list {
    margin: 0 -15px;
    overflow-y: clip;
}


/* Hotel Slider Arrows */
.hotel-slider .slick-prev,
.hotel-slider .slick-next {
    z-index: 1;
    width: 40px;
    height: 28px;
}

.hotel-slider .slick-prev {
    left: -45px;
}

.hotel-slider .slick-next {
    right: -45px;
}

.hotel-slider .slick-prev:before,
.hotel-slider .slick-next:before {
    font-size: 30px;
    color: var(--yas-blue);
    color: #3a5ba7; /* iOS fallback */
    opacity: 0.8;
}

.hotel-slider .slick-prev:hover:before,
.hotel-slider .slick-next:hover:before {
    opacity: 1;
}

@media (max-width: 768px) {
    .hotel-card-image {
        height: 200px;
    }
    
    .hotel-card-title {
        font-size: 1rem;
    }
    
    .btn-hotel-book {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hotel-slider-image-box{
        width: unset;   
        height: unset;
    }

    .hotel-slider .slick-dots{
        bottom: -50px;   
    }
}


.breadcrumb-item + .breadcrumb-item::before{
    color:white
}
