/* Barbados Landing Page - Custom Styles */

/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    --primary-blue: #29348e;
    --secondary-blue: #004d99;
    --light-blue: #0066cc;
    --dark-blue: #001a33;
    --white: #ffffff;
    --text-dark: #4a4a4a;
    --text-light: #666666;
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.02) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alexandria', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* ============================================
   Header Styles
   ============================================ */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
}
.navbar {
    position: relative;
    z-index: 1;
}

.navbar-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
}

.navbar-nav{
    background: #ffffff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}

.navbar-nav .nav-link {
    color: #1b1b1b;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 5px;
}

.navbar-nav .btn-contact {
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 5px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    cursor: pointer;
}

.navbar-nav .btn-contact:hover {
    background: var(--secondary-blue);
    color: var(--white) !important;
}

.navbar-nav .btn-contact i {
    margin-right: 0.5rem;
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Send Query Button (Vertical)
   ============================================ */
.send-query-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--primary-blue);
    padding: 1.5rem 0.8rem;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.send-query-btn a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.send-query-btn:hover {
    background: var(--secondary-blue);
}

@media (max-width: 768px) {
    .send-query-btn {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    margin-top: 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 21/8;
    position: relative;
    min-height: 500px;
    max-height: 800px;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
}

.hero-content {
    text-align: left;
    padding: 2rem;
    max-width: 1200px;
    margin-left: 0;
    margin-top: 20%;
}

.hero-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Slick Carousel Customization for Hero */
.hero-carousel .slick-dots {
    bottom: 30px;
    z-index: 2;
    display: none !important;
}

.hero-carousel .slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
    opacity: 0.5;
}

.hero-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
}

.hero-carousel .slick-prev,
.hero-carousel .slick-next {
    display: none !important;
}

.hero-carousel .slick-prev {
    left: 30px;
}

.hero-carousel .slick-next {
    right: 30px;
}

.hero-carousel .slick-prev:before,
.hero-carousel .slick-next:before {
    font-size: 40px;
    color: var(--white);
    opacity: 0.8;
}

.hero-carousel .slick-prev:hover:before,
.hero-carousel .slick-next:hover:before {
    opacity: 1;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--white);
    padding: 5rem 0;
}

.about-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.8;
    font-weight: 300;
}

.know-more-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.know-more-btn:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

/* ============================================
   Best Time to Visit Section
   ============================================ */
.best-time-section {
    padding: 5rem 0;
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.best-time-section .container {
    background: var(--primary-blue);
    padding: 1rem;
    border-radius: 20px;
}

.best-time-section .section-title {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.visit-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.visit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visit-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--white);
}

.visit-list li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 22px;
    background-image: url('../images/bullet.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.visit-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

/* Visit Section Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-in {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

.visit-list li:before {
    transition: transform 0.3s ease;
}

.visit-list li:hover:before {
    transform: scale(1.2);
}

.visit-list li {
    transition: transform 0.2s ease, padding-left 0.2s ease;
}

.visit-list li:hover {
    transform: translateX(5px);
    padding-left: 1.5rem;
}

/* ============================================
   Connectivity Section
   ============================================ */
.connectivity-section {
    background: linear-gradient(rgb(40 40 40 / 90%), rgb(24 24 24 / 90%)), url(../images/connectivitybg.webp) center / cover;
    padding: 5rem 0;
    position: relative;
}

.connectivity-tabs {
    border-bottom: 0px;
    margin-bottom: 2rem;
    justify-content: center;
}

.connectivity-tabs .nav-link {
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 3px;
}

.connectivity-tabs .nav-link.active {
    color: var(--text-dark);
    background: #ffffff;
    border: 1px solid #fff;
    border-radius:3px;
}

.connectivity-content {
    color: var(--white);
}

.connectivity-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
}

.connectivity-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.connectivity-tabs .nav-item{
    margin: 0 20px;
}

.route-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.8rem;
    font-weight: 300;
}

.route-list li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
    left: 0;
    width: 15px;
    height: 22px;
    background-image: url('../images/flighticon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    transition: transform 0.3s ease;
}

/* Connectivity Section Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-down {
    animation: slideDown 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
    opacity: 0;
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeInUp 0.5s ease-out;
}

.tab-pane.active {
    animation: fadeInUp 0.5s ease-out;
}

/* Connectivity Hover Effects */
.connectivity-tabs .nav-link {
    transition: all 0.3s ease;
}

.connectivity-tabs .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.connectivity-tabs .nav-link.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.route-list li {
    transition: transform 0.2s ease, padding-left 0.2s ease;
}

.route-list li:hover {
    transform: translateX(5px);
    padding-left: 1.8rem;
}

.route-list li:hover:before {
    transform: scale(1.2) rotate(5deg);
}

.connectivity-subtitle {
    transition: color 0.3s ease;
}

.route-list:hover ~ .connectivity-subtitle,
.route-list:hover + .connectivity-subtitle {
    color: var(--light-blue);
}

/* ============================================
   Things to Do Section
   ============================================ */
.things-to-do-section {
    background: var(--white);
    padding: 5rem 0;
}

.categories-carousel,
.nature-carousel {
    margin: 2rem 0;
}

.nature-carousel .slick-slide {
    height: 160px;
}

.category-card {
    margin:0 7px 5px;
    cursor: pointer;
    height:330px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 6px #dad7d7;
    border: 1px solid var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 6px #dad7d7;
}

.category-image {
    height: 60%;
    overflow: hidden;
    position: relative;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content-box {
    height: 40%;
    background: var(--white);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.category-card.active .category-content-box {
    background: var(--primary-blue);
}

.category-content-box h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-content-box p {
    color: var(--text-dark);
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

.nature-card {
    padding: 0 2px;
    text-align: center;
    cursor: pointer;
    position: relative;
    height: 160px;
    pointer-events: auto;
}

.nature-carousel .slick-slide {
    pointer-events: auto;
}

.nature-carousel .slick-slide .nature-card {
    pointer-events: auto;
}

.nature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
    border: 1px solid var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}


.nature-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.nature-card p {
    display: none;
}

.nature-card.active p {
    display: block;
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    color: var(--white);
    font-size: 0.7rem;
    margin: 0;
    padding: 0 1rem;
    text-align: center;
    z-index: 1;
}

.category-card.active {
    position: relative;
}

.category-card.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.category-card.active h4 {
    color: var(--white);
}

.category-card.active p {
    color: var(--white);
}   

.nature-card.active {
    position: relative;
}

.nature-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-blue);
    border-radius: 10px;
    pointer-events: none;
}

.nature-card.active h4 {
    color: var(--white);
    font-weight: 700;
}

.nature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.nature-card.active:hover {
    transform: translateY(-5px);
}

/* Category Tab Content */
.category-tab-content {
    min-height: 400px;
}

.category-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.category-content.active {
    display: block;
    position: relative;
}

.featured-attraction {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.featured-attraction img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

.attraction-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
}

.attraction-overlay p {
    width: 50%;
}

/* Slick Carousel Customization for Categories */
.categories-carousel .slick-prev,
.categories-carousel .slick-next,
.nature-carousel .slick-prev,
.nature-carousel .slick-next {
    z-index: 1;
    width: 20px;
    height: 140px;
    background: var(--primary-blue);
    border-radius: 0;
    position: absolute;
    border: 1px solid var(--white);
}

.categories-carousel .slick-prev,
.nature-carousel .slick-prev {
    left: -13px;
}

.categories-carousel .slick-next,
.nature-carousel .slick-next {
    right: -13px;
}

.categories-carousel .slick-prev:before,
.categories-carousel .slick-next:before,
.nature-carousel .slick-prev:before,
.nature-carousel .slick-next:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.categories-carousel .slick-prev:before,
.nature-carousel .slick-prev:before {
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--white) transparent transparent;
    opacity: 1;
}

.categories-carousel .slick-next:before,
.nature-carousel .slick-next:before {
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 15px;
    opacity: 1;
    border-color: transparent transparent transparent var(--white);
}

.categories-carousel .slick-prev:after,
.categories-carousel .slick-next:after,
.nature-carousel .slick-prev:after,
.nature-carousel .slick-next:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
}

.categories-carousel .slick-next:after,
.nature-carousel .slick-next:after {
    left: auto;
    right: 0;
}

/* Nature Carousel Wrapper */
.nature-carousel-wrapper {
    position: absolute;
    top: 70%;
    width: 50%;
    right: 0;
}

/* Nature Carousel Dots - Right Bottom */
.nature-carousel-wrapper .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 80px;
    width: auto;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nature-carousel-wrapper .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.nature-carousel-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nature-carousel-wrapper .slick-dots li button:before {
    display: none;
}

.nature-carousel-wrapper .slick-dots li.slick-active button {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    width: 14px;
    height: 14px;
}

/* Active slide indicator text */
.nature-carousel-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.nature-carousel-indicator .current-slide {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ============================================
   Events Section
   ============================================ */
.events-section {
    background: var(--primary-blue);
    padding: 5rem 0;
}

.events-section .section-title {
    color: var(--white);
}

.events-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}

.events-section-left:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.events-section-left:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.events-section-middle {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: stretch;
}

.events-section-right:nth-of-type(1) {
    grid-column: 3;
    grid-row: 1;
}

.events-section-right:nth-of-type(2) {
    grid-column: 3;
    grid-row: 2;
}

.event-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    width: 100%;
}

.event-card-full {
    height: 100%;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1rem 1.5rem;
    color: var(--white);
    text-align: left;
}

.event-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Hotels Section
   ============================================ */
.hotels-section {
    background: var(--white);
    padding: 5rem 0;
}

.hotels-carousel {
    margin: 2rem 0;
}

.hotel-card {
    margin: 0 7px 5px;
    cursor: pointer;
    height: 330px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 6px #dad7d7;
    border: 1px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 6px #dad7d7;
}

.hotel-card .category-image {
    height: 60%;
    overflow: hidden;
    position: relative;
}

.hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-card:hover img {
    transform: scale(1.05);
}

.hotel-card .category-content-box {
    height: 40%;
    background: var(--white);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hotel-card .category-content-box h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    text-transform: unset;
    letter-spacing: unset;
}

.book-now-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    font-size: 0.7rem;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
    width: max-content;
}

.book-now-btn:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.hotels-carousel .slick-dots {
    bottom: -50px;
}

.hotels-carousel .slick-dots li button:before {
    color: var(--primary-blue);
    font-size: 12px;
}

.hotels-carousel .slick-prev,
.hotels-carousel .slick-next {
    z-index: 1;
    width: 20px;
    height: 140px;
    background: var(--primary-blue);
    border-radius: 0;
    position: absolute;
    border: 1px solid var(--white);
}

.hotels-carousel .slick-prev {
    left: -13px;
}

.hotels-carousel .slick-next {
    right: -13px;
}

.hotels-carousel .slick-prev:before,
.hotels-carousel .slick-next:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.hotels-carousel .slick-prev:before {
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--white) transparent transparent;
    opacity: 1;
}

.hotels-carousel .slick-next:before {
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 15px;
    opacity: 1;
    border-color: transparent transparent transparent var(--white);
}

.hotels-carousel .slick-prev:after,
.hotels-carousel .slick-next:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
}

.hotels-carousel .slick-next:after {
    left: auto;
    right: 0;
}

.hotels-carousel .slick-prev:before,
.hotels-carousel .slick-next:before {
    color: var(--primary-blue);
    font-size: 30px;
}

/* ============================================
   Media Gallery Section
   ============================================ */
.media-gallery-section {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--primary-blue);
    padding: 2rem 0;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .categories-carousel .slick-prev,
    .nature-carousel .slick-prev,
    .hotels-carousel .slick-prev {
        left: -30px;
    }
    
    .categories-carousel .slick-next,
    .nature-carousel .slick-next,
    .hotels-carousel .slick-next {
        right: -30px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .carousel-container {
        aspect-ratio: 16/9;
        min-height: 400px;
        max-height: 600px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        display: flex;
    }
    
    .events-section-left,
    .events-section-middle,
    .events-section-right {
        grid-column: 1;
        grid-row: auto;
    }
    
    .event-card-full {
        height: 300px;
    }
    
    .hero-carousel .slick-prev,
    .hero-carousel .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .slick-prev:before,
    .hero-carousel .slick-next:before {
        font-size: 30px;
    }
    
    .categories-carousel .slick-prev,
    .nature-carousel .slick-prev,
    .hotels-carousel .slick-prev {
        left: -20px;
    }
    
    .categories-carousel .slick-next,
    .nature-carousel .slick-next,
    .hotels-carousel .slick-next {
        right: -20px;
    }
    
    .featured-attraction {
        height: 300px;
    }

    .events-section-left:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .events-section-left:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }

    .events-section-middle {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .carousel-container {
        aspect-ratio: 16/9;
        min-height: unset;
        max-height: 550px;
    }
    
    .navbar-nav .btn-contact {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .categories-carousel .slick-prev,
    .nature-carousel .slick-prev,
    .hotels-carousel .slick-prev {
        left: -10px;
    }
    
    .categories-carousel .slick-next,
    .nature-carousel .slick-next,
    .hotels-carousel .slick-next {
        right: -10px;
    }
    
    .featured-attraction {
        height: 250px;
    }
    
    .attraction-overlay h3 {
        font-size: 1.5rem;
    }
    
    .event-card {
        height: 250px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .things-to-do-section{
        padding-top: 20px !important;
        padding-bottom: 0 !important;
    }
    
    .hotels-section{
        padding-top: 1rem !important;
    }

    .categories-carousel, .nature-carousel{
        margin: 10px 0 !important;
    }

    .attraction-overlay p{
        width: 100%;
    }
    .nature-carousel-wrapper{
        width: 100%;
        position: relative;
        top: 0;
        right: 0;
    }
    .hero-title {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 1rem;
    }
    
    .carousel-container {
        aspect-ratio: 16/10;
        min-height: unset;
        max-height: 450px;
    }
    
    .hero-carousel .slick-prev,
    .hero-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .hero-carousel .slick-prev {
        left: 10px;
    }
    
    .hero-carousel .slick-next {
        right: 10px;
    }
    
    .hero-carousel .slick-prev:before,
    .hero-carousel .slick-next:before {
        font-size: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .categories-carousel .slick-prev,
    .nature-carousel .slick-prev,
    .hotels-carousel .slick-prev,
    .categories-carousel .slick-next,
    .nature-carousel .slick-next,
    .hotels-carousel .slick-next {
        display: none !important;
    }
    
    .footer-logo {
        max-width: 150px;
    }

    .about-section{
        padding: 0 0 !important;
    }
}

/* ============================================
   Smooth Scrolling
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary-blue {
    color: var(--primary-blue);
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.mt-section {
    margin-top: 5rem;
}

.mb-section {
    margin-bottom: 5rem;
}

