/* ==========================================================================
   RAJ TOUR & TRAVELS - MODERN MASTER STYLESHEET 2026
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0b0f3a;
    --accent-orange: #ff6d00;
    --dark-charcoal: #1a1a2e;
    --light-grey: #f8fafc;
    --pure-white: #ffffff;
    --text-muted: #64748b;
    --transition-smooth: all 0.3s ease;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.1);
}

body {
    background: var(--light-grey);
    color: var(--dark-charcoal);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn-premium {
    background: var(--accent-orange);
    color: var(--pure-white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 109, 0, 0.3);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-meta span i {
    color: var(--accent-orange);
    margin-right: 6px;
}

.whatsapp-link-top {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.whatsapp-link-top:hover {
    color: var(--pure-white);
}

/* ========== HEADER / NAVBAR ========== */
.app-header-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.brand-link-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 55px;
    width: auto;
}

.brand-text-block .main-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.brand-text-block .orange-accent {
    color: var(--accent-orange);
}

.brand-text-block .sub-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link-item {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-charcoal);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link-item:hover,
.nav-link-item.active-tab {
    color: var(--accent-orange);
}

.nav-link-item.active-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Dropdown */
.nav-dropdown-wrapper {
    position: relative;
}

.drop-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-dropdown-wrapper:hover .drop-arrow {
    transform: rotate(180deg);
}

.dropdown-pane-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    min-width: 220px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.nav-dropdown-wrapper:hover .dropdown-pane-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-pane-menu a {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.dropdown-pane-menu a:hover {
    background: var(--light-grey);
    color: var(--accent-orange);
    padding-left: 20px;
}

/* Nav CTA Button */
.btn-premium-nav {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    color: var(--pure-white);
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-premium-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
}

/* Mobile Menu Button */
.menu-toggle-widget {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-bar-line {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-desktop-btn {
        display: none;
    }
    
    .menu-toggle-widget {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--pure-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 25px 30px;
        gap: 15px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.mobile-active-frame {
        right: 0;
    }
    
    .nav-link-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-pane-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown-wrapper:hover .dropdown-pane-menu {
        max-height: 300px;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown-pane-menu a {
        padding: 8px 0;
    }
    
    /* Burger Animation */
    .menu-toggle-widget.open-state .burger-bar-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle-widget.open-state .burger-bar-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle-widget.open-state .burger-bar-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ========== FOOTER ========== */
.app-footer-wrapper {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo-layout {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
}

.footer-brand-text h4 {
    font-size: 18px;
    font-weight: 800;
}

.footer-brand-text span {
    font-size: 10px;
    color: var(--accent-orange);
}

.footer-desc-text {
    color: #a4a8cc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-loc-meta {
    font-size: 14px;
    color: #a4a8cc;
}

.footer-loc-meta i {
    color: var(--accent-orange);
    margin-right: 6px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-list-tree {
    list-style: none;
}

.footer-list-tree li {
    margin-bottom: 12px;
}

.footer-list-tree li a {
    color: #a4a8cc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-list-tree li a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-copyright-block {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a4a8cc;
    font-size: 13px;
}

/* ========== SLIDER & CARDS ========== */
.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.modern-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.dribbble-travel-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    height: 420px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.dribbble-travel-card:hover {
    transform: translateY(-8px);
}

.dribbble-travel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.card-text-wrapper h3 {
    color: var(--pure-white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-text-wrapper p {
    color: #ccc;
    font-size: 14px;
}

.card-action-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    z-index: 2;
    transition: var(--transition-smooth);
}

.dribbble-travel-card:hover .card-action-badge {
    background: var(--accent-orange);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .dribbble-travel-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 680px) {
    .dribbble-travel-card {
        flex: 0 0 100%;
    }
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.premium-card {
    background: var(--pure-white);
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-icon-frame {
    width: 70px;
    height: 70px;
    background: rgba(255, 109, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon-frame i {
    font-size: 32px;
    color: var(--accent-orange);
}

/* ========== ANIMATIONS ========== */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp FAB */
.floating-whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.floating-whatsapp-fab:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}