:root {
    --primary: #245FA1;
    --primary-dark: #1A4A7F;
    --accent: #D4AF37;
    --accent-dark: #B8942E;
    --dark: #1E2A3E;
    --gray: #5A6E8A;
    --white: #ffffff;
    --border-light: #E9EEF3;
    --footer-bg: #0F1A2A;
    --footer-text: #d1d5db;
    /* gray-300 */
    --footer-text-hover: #D4AF37;
    --footer-border: #374151;
    /* gray-700 */
    --whatsapp-bg: #25D366;
    --whatsapp-hover: #128C7E;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #f5f7fa;
    margin: 0;
}

.padding-90{
    padding: 90px 0px !important;
}

.border-radius-50{
    border-radius: 50px !important;
}

.icon-date-color{
    color: #245FA1;
}

.common-action-color{
    color: #245FA1;
}

.card-custom-header-title{
    color: #1E2A3E !important;
}

/* Top bar */
.top-bar {
    background: var(--white);
    color: var(--dark);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
}

/* Main navigation */
.navbar-custom {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 56px;
    width: auto;
}

@media (min-width: 768px) {
    .navbar-brand img {
        height: 64px;
    }
}

.nav-link-custom {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    color: white;
}

.nav-link-custom:hover {
    color: var(--accent);
}

.nav-link-custom.active {
    color: var(--accent);
}

/* Mobile menu */
.mobile-nav {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    margin-top: 0.5rem;
}

.mobile-nav .nav-link-mobile {
    color: var(--dark);
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
}

.mobile-nav .nav-link-mobile:hover {
    color: var(--primary);
}

.btn-wa {
    background: var(--accent);
    color: white;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-wa:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    color: white;
}

/* Star icons color */
.star-gold {
    color: #FFA500;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 48px;
        width: 300px;
    }
}

.footer-custom {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

.footer-custom a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-custom a:hover {
    color: var(--footer-text-hover) !important;
}

.footer-heading {
    color: var(--footer-text-hover);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: var(--footer-text-hover);
    color: var(--footer-bg) !important;
}

.social-icon:hover i,
.social-icon:hover svg {
    color: var(--footer-bg);
}

.btn-wa-footer {
    background-color: var(--whatsapp-bg);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s !important;
}

.btn-wa-footer:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    color: white;
}

.footer-link-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.bottom-bar {
    border-top: 1px solid var(--footer-border);
    padding: 1.5rem 0;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer-heading {
        margin-top: 1rem;
    }

    .bottom-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

/* Swiper Slide Background */
.swiper-slide {
    position: relative;
    height: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
    z-index: 0;
}

.swiper-slide-active::after {
    transform: scale(1.1);
}

/* Content */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

/* Title */
.slide-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtitle */
.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons Base */
.slide-content .btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    transition: 0.3s ease;
}

/* Primary Button (Explore Tours style) */
.btn-primary-custom {
    background: #2b6cb0;
    color: #fff;
    border: 2px solid #f6c23e;
}

.btn-primary-custom:hover {
    background: #1e4e8c;
}

/* Outline Button (Contact Us style) */
.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
}

/* Navigation arrows */
/* .swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
} */

/* Pagination dots */
/* .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #f6c23e;
    width: 25px;
    border-radius: 10px;
} */

/* Common style */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Arrow size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 14px !important;
    height: 14px !important;
    color: #fff;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Position tweak (optional) */
.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}


.about {
    padding: 80px 0;
}

.about h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

/* gradient underline */
.about-content h2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 80%;
    height: 2px;
    border-radius: 2px;

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            /* left fade */
            var(--primary),
            /* center color */
            rgba(255, 255, 255, 0)
            /* right fade */
        );
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}
