:root {
    --red: #b30000;
    --gold: #ff0000;
    --dark: #222;
    --light: #fff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fffaf0;
    color: #333;
    top: 0 !important;
    /* Force body to top */
}

/* Aggressive Google Translate UI Removal */
.goog-te-banner-frame,
.goog-te-banner,
.goog-te-menu-value,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}

iframe.goog-te-banner-frame {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

header {
    background: linear-gradient(135deg, #ffffff, #fff5e2);
    color: #fff;
    padding: 28px 16px;
    text-align: center
}

header h1 {
    margin: 0;
    font-size: 36px;
    letter-spacing: 1px
}

header p {
    margin: 8px 0 0;
    opacity: .95
}

/* Updated Nav for Bootstrap responsiveness but keeping original look */
.navbar {
    background: #ff0000 !important;
    padding: 0px !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none;
    padding: 10px 15px !important;
}

/* Mobile Offcanvas Styling */
.offcanvas {
    background-color: var(--gold) !important;
    width: 280px !important;
}

.offcanvas-body .nav-link {
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.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(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Premium Hero Carousel & Animations */
.hero {
    height: 60vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

#heroCarousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    width: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-btn {
    padding: 14px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    background: var(--red);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.5);
    border: 2px solid #fff;
    transition: none !important;
}

.hero-btn:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.5) !important;
    background: var(--red) !important;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 35px;
    border-radius: 10px;
    background-color: var(--red);
}

/* Modern Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    background-size: 40%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--red);
    border-color: var(--red);
}

.section {
    padding: 80px 20px;
}

.tour-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    background-color: #f5f5f5;
}

.tour-card .card-body {
    padding: 15px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card .btn {
    display: block;
    color: var(--light) !important;
    background-color: var(--red) !important;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.card p {
    margin: 0 0 15px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.card .badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.contact-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    padding: 22px;
    height: 100%;
}

footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 22px;
    margin-top: 40px
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 1000;
}

.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scrolling-wrapper>[class*="col-"] {
    flex: 0 0 auto;
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.districts-grid-scroll {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.district-item {
    width: 160px;
}

.districts-grid-scroll::-webkit-scrollbar {
    height: 6px;
}

.districts-grid-scroll::-webkit-scrollbar-track {
    background: #f8f8f8;
    border-radius: 10px;
}

.districts-grid-scroll::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

/* Hide Lightbox Scrollbars and fix sizing */
.glightbox-container .gslide-image,
.glightbox-container .gslide-inner-content,
.glightbox-container .gslide,
.glightbox-container .gslide-image img {
    overflow: hidden !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* For mobile adjust floating buttons */
@media(max-width:700px) {
    .hero h2 {
        font-size: 32px
    }
}

/* Custom Language Selector - New Styling Classes */
.language-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-btn {
    background: #333;
    color: #fff;
    border: 1px solid #444;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.language-btn.active {
    background: #444;
    border-color: var(--red);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 180px;
    display: none;
    z-index: 1050;
    padding: 8px 0;
    border: 1px solid #eee;
}

.language-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: 0.2s;
}

.language-option:hover {
    background: #f8f9fa;
    color: var(--red);
}

.language-option.active {
    background: #fff5f5;
    color: var(--red);
    font-weight: 600;
}

/* Mobile Lang Modal Classes */
.mobile-lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-lang-modal.show {
    display: flex;
}

.mobile-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mobile-modal-content {
    position: relative;
    width: 85%;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-modal-header {
    background: var(--red);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-lang-body {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
    background: #f8f9fa;
}

.mobile-lang-option {
    padding: 15px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-lang-option span {
    font-size: 24px;
}

.mobile-lang-option.active {
    background: #fff5f5;
    border-color: var(--red);
    color: var(--red);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.1);
}

/* Absolute Hiding of Google Translate Banner and Bars */
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-te-gadget-simple,
.goog-te-gadget-simple img,
.goog-te-gadget-bar,
.goog-te-menu-frame,
.skiptranslate.goog-te-gadget>div,
#google_translate_element {
    display: none !important;
}

html,
body {
    top: 0 !important;
    position: static !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}