:root {
    --gold: #ffc107;
    --gold-dark: #e0a800;
    --gold-light: #fff3cd;
    --text-dark: #333;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: linear-gradient(135deg,#f8f9fa,#eef2f5);
}

h1, h2, h3, h4 {
    color: #222;
}

.section-title,
.login-title {
    color: var(--gold-dark);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.toast-message {
    min-width: 260px;
    max-width: 350px;
    padding: 14px 18px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    animation: slideIn .3s ease;
    opacity: .95;
}


/* COLORS */

.toast-success {
    background: #198754;
}

.toast-error {
    background: #dc3545;
}

.toast-warning {
    background: #ffc107;
    color: black;
}


/* ANIMATION */

@keyframes slideIn {

    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes fadeOut {

    to {
        opacity: 0;
        transform: translateX(120%);
    }
}


.day-card {
    background: white;
    border-radius: 18px;
    padding: 0;
    transition: .25s ease;
    border: 1px solid #eee;
}

    .day-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }


.day-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    border-radius: 18px 18px 0 0;
}


.day-card-body {
    padding: 18px;
}


.day-badge {
    background: var(--gold);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}


.section-box {
    background: #fafafa;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #eee;
}


.section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}


.preview-image {
    max-height: 120px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.admin-layout {
    display: flex;
    height: calc(100vh - 80px);
    overflow: hidden;
}


/* GLASS SIDEBAR */

.glass-sidebar {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-right: 1px solid rgba(255,255,255,0.25);
    color: #FFD700;
    transition: .35s ease;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* WIDTH STATES */

.admin-sidebar.expanded {
    width: 260px;
}

.admin-sidebar.collapsed {
    width: 70px;
}


/* TOGGLE ICON */

.sidebar-toggle {
    cursor: pointer;
    margin-bottom: 15px;
    color: #FFD700;
}


/* TITLE */

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
}


/* HIDE TITLE COLLAPSED */

.admin-sidebar.collapsed .sidebar-title {
    display: none;
}


/* BUTTON */

.sidebar-btn {
    border: none;
    background: transparent;
    color: #FFD700;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: .3s ease;
}


    /* NAVBAR STYLE UNDERLINE EFFECT */

    .sidebar-btn::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background: var(--gold);
        transition: .3s ease;
    }


    .sidebar-btn:hover::after {
        width: 100%;
    }

    .sidebar-btn:hover {
        background: rgba(255,193,7,0.08);
        border-radius: 10px;
    }

.btn-warning,
.btn-primary {
    background: linear-gradient(135deg,var(--gold),var(--gold-dark));
    border: none;
    color: #000;
}

    .btn-warning:hover,
    .btn-primary:hover {
        box-shadow: 0 8px 20px rgba(255,193,7,0.35);
        transform: translateY(-2px);
    }

    /* ACTIVE ITEM */

    .sidebar-btn.active::after {
        width: 100%;
    }


    /* ICON SIZE */

    .sidebar-btn .material-symbols-rounded {
        font-size: 22px;
    }


/* COLLAPSED MODE TEXT HIDE */

.admin-sidebar.collapsed .sidebar-text {
    display: none;
}


/* CONTENT */

.admin-content {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    height: 103%;
}


/* MOVING TRAVEL BACKGROUND SYSTEM */

.travel-moving-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}


/* ICON BASE STYLE */


#mainContent {
    position: relative;
    z-index: 2;
}

.travel-icon {
    position: absolute;
    font-size: 80px; /* increased from 42px */

    opacity: .35; /* increased from .15 */

    color: #FFD700;
    font-variation-settings: 'FILL' 1, /* filled icon instead of outline */
    'wght' 500, /* thicker stroke */
    'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0px 0px 6px rgba(255,215,0,.35));
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* LEFT → RIGHT AIRPLANE */

.i1 {
    top: 12%;
    animation: moveRight 40s linear infinite;
}


/* RIGHT → LEFT CAR */

.i2 {
    top: 65%;
    animation: moveLeft 48s linear infinite;
}


/* DIAGONAL BIKE */

.i3 {
    top: 80%;
    animation: moveDiagonal 42s linear infinite;
}


/* CAMERA FLOAT SIDE */

.i4 {
    top: 35%;
    animation: moveRightSlow 55s linear infinite;
}


/* MAP SLIDE */

.i5 {
    top: 50%;
    animation: moveLeftSlow 60s linear infinite;
}


/* LUGGAGE DIAGONAL */

.i6 {
    top: 20%;
    animation: moveDiagonalReverse 50s linear infinite;
}


/* TRAIN FAST */

.i7 {
    top: 75%;
    animation: moveRightFast 32s linear infinite;
}


/* COMPASS FLOAT */

.i8 {
    top: 5%;
    animation: moveLeft 70s linear infinite;
}


/* ANIMATIONS */


/* LEFT → RIGHT */

@keyframes moveRight {

    from {
        left: -10%;
    }

    to {
        left: 110%;
    }
}


/* RIGHT → LEFT */

@keyframes moveLeft {

    from {
        left: 110%;
    }

    to {
        left: -10%;
    }
}


/* FAST VERSION */

@keyframes moveRightFast {

    from {
        left: -10%;
    }

    to {
        left: 110%;
    }
}


/* SLOW VERSION */

@keyframes moveRightSlow {

    from {
        left: -10%;
    }

    to {
        left: 110%;
    }
}


@keyframes moveLeftSlow {

    from {
        left: 110%;
    }

    to {
        left: -10%;
    }
}


/* DIAGONAL */

@keyframes moveDiagonal {

    from {
        left: -10%;
        transform: translateY(0);
    }

    to {
        left: 110%;
        transform: translateY(-120px);
    }
}


/* REVERSE DIAGONAL */

@keyframes moveDiagonalReverse {

    from {
        left: 110%;
        transform: translateY(0);
    }

    to {
        left: -10%;
        transform: translateY(120px);
    }
}


.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

/* CARD BASE */

.testimonial-card-ui {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.4);
    overflow: hidden;
}

    /* HOVER GLOW EFFECT */

    .testimonial-card-ui::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient( 120deg, transparent, rgba(255,215,0,.25), transparent );
        opacity: 0;
        transition: .4s;
    }

    .testimonial-card-ui:hover::before {
        opacity: 1;
    }

    /* HOVER FLOAT */

    .testimonial-card-ui:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

/* STARS */

.testimonial-stars {
    font-size: 22px;
    margin-bottom: 12px;
}

.star {
    color: #ccc;
}

    .star.filled {
        color: #FFD700;
    }

/* TEXT */

.testimonial-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* USER INFO */

.testimonial-user {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.testimonial-country {
    font-weight: 400;
    color: #888;
    margin-left: 6px;
}

/* TITLE */

.testimonials-section h2 {
    font-weight: 700;
    letter-spacing: .5px;
}

.quote-icon {
    font-size: 32px;
    color: #FFD700;
    opacity: .6;
    margin-bottom: 10px;
}

.section-padding {
    padding: 80px 0;
}

/* HERO */

.about-hero {
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)), url('/stockimages/aboutbg.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


/* FEATURE CARD */

.feature-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s ease;
}

    .feature-card:hover {
        transform: translateY(-10px) scale(1.03);
    }


/* VALUE BOX */

.value-box {
    padding: 30px;
    border-left: 4px solid #FFD700;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: .3s;
}

    .value-box:hover {
        transform: translateX(8px);
    }


/* IMAGE STYLE */

.section-img {
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    transition: .4s;
}

    .section-img:hover {
        transform: scale(1.04);
    }


/* CTA */

.cta-section {
    background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url('/stockimages/contact-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 90px 0;
    text-align: center;
}

#adminTableWrapper thead th {
    position: sticky;
    top: 0;
    background: white;
    z-index: 2;
}

.hotel-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    height: 320px;
}

.hotel-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.hotel-section-header {
    padding: 6px 10px;
    font-weight: 600;
    font-size: 13px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.hotel-section-body {
    overflow-y: auto;
    flex: 1;
}


.login-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #eef2f5);
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #333;
}

.login-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: .5px;
    color: #c9a400;
}

.login-card label {
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

/* ⚠️ IMPORTANT: scoped input */
.login-card .form-control {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.15);
    color: #333;
    border-radius: 12px;
    padding: 10px 12px;
}

    .login-card .form-control::placeholder {
        color: rgba(0,0,0,0.5);
    }

    .login-card .form-control:focus {
        background: #fff;
        border-color: var(--gold);
        box-shadow: 0 0 0 2px rgba(255,193,7,0.25);
        color: #333;
    }

.login-btn {
    width: 100%;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    border: none;
    color: #000;
    transition: all .3s ease;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255,193,7,0.4);
    }

.login-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
    color: #666;
}

/* PASSWORD TOGGLE */
#togglePassword:hover {
    color: #ffc107;
}

.day-card,
.section-box,
.testimonial-card-ui,
.login-card {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* MOBILE GLASS MENU FIX */
@media (max-width: 991px) {

    .navbar-collapse {
        position: absolute;
        top: 65px;
        left: 10px;
        right: 10px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 12px;
        padding: 15px;
        border: 1px solid rgba(255,255,255,0.25);
        z-index: 1000;
        /* 🔥 THIS IS CRITICAL */
        overflow: hidden;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 5px;
    }
}

.gm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

    .gm-overlay.active {
        display: flex;
    }

.gm-modal {
    width: 95vw;
    height: 92vh;
    max-width: 1400px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(.95);
    opacity: 0;
    transition: .25s ease;
}

.gm-overlay.active .gm-modal {
    transform: scale(1);
    opacity: 1;
}

.gm-body {
    flex: 1;
    overflow-y: auto;
}

/* CLOSE BUTTON */
.gm-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 10;
    border: none;
    background: black;
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
}