@charset "UTF-8";

:root {
    --brand-blue: #003B95;     /* Booking header blue */
    --cta-blue: #006CE4;       /* CTA blue */
    --accent-yellow: #FFB700;  /* Outline around CTA cards */
}

body {
    color: #1b1b1b;
}

/* ---------- HERO ---------- */
.hero {
    background: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-blue);
    opacity: 0.75;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: clamp(2.2rem, 2.5vw + 1.2rem, 4rem);
    line-height: 1.08;
}

.hero .lead {
    opacity: .9;
    font-size: 1.25rem;
}

.badge-strip {
    background: #128948;
    border-radius: 8px;
    padding: .65rem 1rem;
    display: inline-flex;
    gap: .5rem;
    font-weight: 600;
}

/* CTA card (reused) */
.cta-card {
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
    border: 4px solid var(--accent-yellow);
}

.cta-card .btn {
    background: var(--cta-blue);
    border: none;
}

.cta-card .btn:hover {
    filter: brightness(.95);
}

.check i {
    color: #16a34a;
}

/* ---------- ROTATING WORDS (CSS only) ---------- */
.rotator {
    display: inline-block;
    min-width: 7ch;        /* prevents layout shift */
    position: relative;
}

.r-word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(100%);
    color: #7dd3fc;         /* tailwind-ish sky-300 vibe */
    transition: opacity .4s ease, transform .4s ease;
}

.r-word.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* run the cycle using keyframes on the container */
.rotator {
    --cycle: 10s;          /* total cycle duration */
    --step: calc(var(--cycle) / 4);
    animation: rotator var(--cycle) linear infinite;
}

@keyframes rotator {
    0%   { }
    24.9% { }
    25%  { }
}

/* Each word's timing (nth-child) */
.rotator .r-word:nth-child(1) {
    animation: showWord var(--cycle) linear infinite;
}

.rotator .r-word:nth-child(2) {
    animation: showWord2 var(--cycle) linear infinite;
}

.rotator .r-word:nth-child(3) {
    animation: showWord3 var(--cycle) linear infinite;
}

.rotator .r-word:nth-child(4) {
    animation: showWord4 var(--cycle) linear infinite;
}

@keyframes showWord {
    0%   { opacity: 1; transform: translateY(0); }
    20%  { opacity: 1; transform: translateY(0); }
    25%  { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; }
}

@keyframes showWord2 {
    0%, 24.9% { opacity: 0; transform: translateY(100%); }
    25%, 45% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; }
}

@keyframes showWord3 {
    0%, 49.9% { opacity: 0; transform: translateY(100%); }
    50%, 70%  { opacity: 1; transform: translateY(0); }
    75%      { opacity: 0; transform: translateY(-100%); }
    100%     { opacity: 0; }
}

@keyframes showWord4 {
    0%, 74.9% { opacity: 0; transform: translateY(100%); }
    75%, 95%  { opacity: 1; transform: translateY(0); }
    100%     { opacity: 0; }
}

/* ---------- STATS ---------- */
.stats {
    background: #f6f6f6;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(0, 0, 0, .06), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 0, 0, .05), transparent 50%);
    opacity: .45;
    pointer-events: none;
}

.stat-kpi {
    font-weight: 800;
    font-size: clamp(1.8rem, 2.4vw + 1rem, 3.4rem);
}

/* ---------- STEPS ---------- */
.steps {
    padding: 80px 0;
}

/* ---------- BLUE STRIP FOOTER ---------- */
.blue-strip {
    background: var(--brand-blue);
    color: #fff;
    padding: 80px 0;
    margin-bottom: 0;
}

.blue-strip h2 {
    font-weight: 800;
    font-size: clamp(2rem, 2.2vw + 1rem, 3.2rem);
}

/* Bootstrap 5 color overrides */
:root {
    --bs-primary: var(--cta-blue);
    --bs-primary-rgb: 0, 108, 228;
    --bs-primary-bg-subtle: #e6f3ff;
    --bs-primary-border-subtle: #b3d9ff;
}

.btn-primary {
    background-color: var(--cta-blue);
    border-color: var(--cta-blue);
}

.btn-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
    filter: brightness(.95);
}

.bg-primary {
    background-color: var(--brand-blue) !important;
}

.btn-outline-primary {
    border-color: var(--cta-blue);
    color: var(--cta-blue);
}

.btn-outline-primary:hover {
    background-color: var(--cta-blue);
    border-color: var(--cta-blue);
    color: #fff;
}

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

/* Keep existing useful styles from original */
.site-header {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9991;
    padding: 10px 0;
}

.navbar-transparent {
    background-color: transparent;
}

.site-header.fixed-header {
    position: fixed;
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.header-two {
    position: relative;
    z-index: 111;
    background-color: #353B44;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-white .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");
}

.navbar-transparent .navbar-toggler-white .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");
}

/* Breadcrumb Section */
.breadcrumb-section {
    margin-top: 0;
}

.site-header.navbar-transparent ~ .breadcrumb-section {
    margin-top: 70px; /* Space for absolute header */
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-section .breadcrumb-item a:hover {
    text-decoration: underline !important;
}

/* Bootstrap icons fallback */
.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentcolor;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
}

.preloader {
    width: 100%;
    height: 100%;
    background: var(--brand-blue);
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-p {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader-p:before,
.loader-p:after {
    content: "";
    border: 1em solid var(--cta-blue);
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader-p:before {
    animation-delay: 0.5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.476);
    z-index: 999;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 110;
    transition: 0.5s;
    cursor: pointer;
    transform: scale(0);
    background-color: var(--brand-blue);
}

.scroll-top:hover {
    color: #fff !important;
}

.scroll-top.show {
    transform: scale(1);
}

.logo {
    max-width: 160px !important;
    display: inline-block;
}

.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------- Social Icons ---------- */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li {
    margin: 0;
}

.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-list a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.social-list a svg,
.social-list a i {
    font-size: 1.2rem;
}
