/**
 * Jusmaz Travel - Primary Stylesheet
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF7F00;
    --primary-dark: #cc6600;
    --bg-dark: #07090C;
    --bg-light: #F8F9FA;
    --bg-card-dark: #0F1319;
    --bg-card-light: #FFFFFF;
    --text-dark: #07090C;
    --text-white: #FFFFFF;
    --text-muted-dark: #8E9BAE;
    --text-muted-light: #6C757D;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Mixed Mode Containers --- */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- Inspiring Header --- */
.header-wrapper {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    background: rgba(15, 19, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    padding: 12px 24px;
    border-radius: 100px;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition);
}

.header-wrapper.scrolled {
    top: 10px;
}

.header-wrapper.scrolled .navbar {
    background: rgba(15, 19, 25, 0.95);
    max-width: 1300px;
    padding: 8px 30px;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    margin: 0 10px;
}

/* --- Slideshow Hero --- */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, var(--bg-dark) 30%, transparent 80%);
}

.hero-text-overlay {
    position: absolute;
    top: 55%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 10;
}

.hero-text-overlay h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-tagline {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* --- Content Styling --- */
.section-padding {
    padding: 140px 0;
}

.section-label {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btn-jusmaz {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-jusmaz:hover {
    background-color: #fff;
    color: var(--primary);
}

/* --- Premium Cards --- */
.content-card {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-dark);
}

.section-light .content-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-card:hover .card-img-container img {
    transform: scale(1.1);
}

.card-content {
    padding: 24px;
}

.card-meta {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Badge & UI Fixes --- */
.badge-jusmaz {
    background-color: var(--primary) !important;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 800;
}

.hover-primary:hover {
    color: var(--primary) !important;
}

/* --- Search & Filter UI --- */
.filter-bar {
    background: var(--bg-card-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-light .filter-bar {
    background: #fff;
    border-color: var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.search-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: #fff;
    border-radius: 100px;
    padding: 16px 30px 16px 60px;
    width: 100%;
    transition: var(--transition);
    font-size: 1rem;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.15);
    outline: none;
}

.section-light .search-input {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.section-light .search-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.1);
}

.section-light .filter-bar i.text-muted {
    color: #adb5bd !important;
}

.filter-btn {
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--border-dark);
    color: var(--text-muted-dark);
    background: transparent;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- Pagination --- */
.pagination-jusmaz .page-link {
    background: #fff;
    border: 1px solid #ddd;
    color: var(--bg-dark);
    margin: 0 5px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.pagination-jusmaz .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- Premium Footer Redesign --- */
.footer {
    padding: 100px 0 40px;
}

.footer-new {
    background: #050608;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: var(--text-muted-dark);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* --- Contact Light Mode --- */
.contact-light {
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-control-jusmaz {
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fdfdfd;
    transition: 0.3s;
}

.form-control-jusmaz:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.1);
    outline: none;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
}

/* --- Modal Fixes --- */
.modal-content-jusmaz {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    overflow: hidden;
}

.modal-header-jusmaz {
    border-bottom: 1px solid var(--border-dark);
    padding: 25px 30px;
}

/* Ensure no blank sections - handle GSAP better */
.reveal-gsap {
    visibility: hidden;
    /* Prevent flash but keep space */
}



/* Ensure no blue from Bootstrap */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: #fff;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-gsap {
    opacity: 0;
}

/* Contact Specific */
.contact-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(7, 9, 12, 0.8), rgba(7, 9, 12, 0.8)), url('../img/optimised/photo-1577971132997-c10be9372519.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.info-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 127, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
}

.fw-900 {
    font-weight: 900;
}

.tracking-widest {
    letter-spacing: 0.25em;
}

.italic {
    font-style: italic;
}


/* --- Typography SEO --- */
.seo-text {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
}

.section-light .seo-text {
    color: var(--text-muted-light);
}

.section-dark .text-muted,
.footer .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* --- About Split --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
    }

    .hero-text-overlay {
        left: 5%;
        bottom: 10%;
        top: auto;
        transform: none;
    }
}