/* ========================================
TRAVELTOUR - CLEAN & ORGANIZED CSS
Mobile Styles Consolidated at Bottom
======================================== */

/* ========================================
CSS VARIABLES & RESET
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'El Messiri', 'Open Sans', sans-serif;
    font-weight: 600;
}

.section {
    padding: 60px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
2. TOP BAR STYLES
======================================== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-dark);
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--primary-dark);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-dark);
}

.top-bar-left a span {
    display: inline !important;
}

.btn-tailor-top {
    background: var(--primary-dark);
    color: var(--black) !important;
    padding: 5px 23px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-tailor-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
3. NAVBAR STYLES
======================================== */


.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 50px;
    flex-shrink: 0;
}

.logo-img {
    height: 83px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    margin: 0 12px;
    color: var(--black) !important;
    transition: var(--transition);
    padding: 10px 0 !important;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: var(--black);
    transition: 0.2s;
}

.dropdown-item:hover {
    background: var(--primary);
    color: var(--black);
    padding-left: 25px;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-right-content select {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    outline: none;
    min-width: 95px;
    margin-left: 12px;
    font-weight: 500;
}

.navbar-right-content select:hover {
    border-color: var(--primary-dark);
}

.navbar-center-content {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.dropdown-icon {
    font-size: 11px;
    margin-left: 4px;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 5px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ========================================
4. MOBILE SIDEBAR STYLES
======================================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    display: block !important;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: var(--primary);
}

.sidebar-lang-currency {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-lang-currency select {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 12px;
    background: var(--white);
    font-size: 13px;
    outline: none;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary-dark);
    padding-left: 15px;
}

.sidebar-link .dropdown-icon {
    font-size: 12px;
    transition: var(--transition);
}

.sidebar-link.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-gray);
    border-radius: 8px;
}

.sidebar-submenu.show {
    max-height: 300px;
}

.sidebar-submenu .dropdown-item {
    padding: 12px 15px 12px 30px;
    font-size: 14px;
    color: var(--gray);
    display: block;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar-submenu .dropdown-item:hover {
    color: var(--primary-dark);
    padding-left: 35px;
}

.sidebar-whatsapp {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
5. HERO SECTION
======================================== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.search-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.search-box .form-control,
.search-box .form-select {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(230, 219, 193, 0.25);
}

.btn-search {
    background: var(--primary-dark);
    color: var(--black);
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    min-height: 52px;
}

.btn-search:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 219, 193, 0.4);
}

/* ========================================
6. FEATURES BOX
======================================== */
.features-box {
    background: var(--primary);
    padding: 50px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-item {
    color: var(--black);
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
7. SECTION TITLE
======================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-dark);
}

.section-title p {
    color: var(--gray);
    margin-top: 15px;
}

.section-title a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.section-title a:hover {
    color: var(--black);
}

/* ========================================
8. POPULAR DESTINATIONS
======================================== */
.dest-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 15px;
}

.dest-main {
    grid-row: span 2;
}

.dest-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.dest-item:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.dest-overlay h4,
.dest-overlay h5 {
    margin-bottom: 5px;
}

.dest-overlay p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.9;
}

.dest-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: rotate(-45deg);
}

.dest-arrow i {
    font-size: 20px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.4s ease;
}

.dest-item:hover .dest-arrow {
    background: white;
    transform: rotate(-45deg) scale(1.1);
}

.dest-item:hover .dest-arrow i {
    color: var(--black);
    transform: rotate(45deg);
}

.tour-count {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

/* ========================================
9. TOURS SECTION (Background Only)
======================================== */
.tours {
    padding: 100px 0;
    background: var(--light-gray);
}

/* ========================================
10. SUMMER DEALS PROMO
======================================== */
.promo-banner-new {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../img/tailormade2.webp') center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
}

.promo-banner-new .row {
    align-items: center !important;
}

.promo-text-side {
    padding: 107px 83px;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.promo-content-wrapper {
    max-width: 60%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.promo-content-wrapper > * {
    display: block;
    margin-bottom: 12px;
}

.promo-content-wrapper > *:last-child {
    margin-bottom: 0;
}

.promo-content-wrapper .sub-title {
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
}

.promo-content-wrapper h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.promo-content-wrapper .desc-text {
    font-size: 16px;
    opacity: 0.9;
}

.promo-action-wrapper {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    width: 405px;
}

.btn-promo-white {
    border: 2px solid white;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-promo-white:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.promo-img-side {
    display: none !important;
}

@media (max-width: 991px) {
    .promo-text-side {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
    }
    .promo-content-wrapper {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promo-action-wrapper {
        margin-left: 0;
        margin-top: 25px;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .btn-promo-white {
        border: 2px solid white;
        color: white;
        padding: 14px 20px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        white-space: nowrap;
        text-align: center;
        width: 280px;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
    }
}

/* ========================================
11. RECOMMENDED & VIDEO SECTION
======================================== */
.recommended {
    padding: 100px 0;
}

.video-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.pexels.com/photos/36605767/pexels-photo-36605767.jpeg')
    center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.video-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.play-button i {
    font-size: 30px;
    margin-left: 5px;
    color: var(--black);
}

/* ========================================
12. TESTIMONIALS CAROUSEL
======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    cursor: grab;
    flex: 1;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonial-card {
    background: var(--primary);
    padding: 30px 25px;
    border-radius: 10px;
    color: var(--black);
    text-align: center;
    width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 35px;
    opacity: 0.3;
    margin-bottom: 15px;
    color: var(--black);
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid var(--black);
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.stars {
    color: var(--black);
    margin: 4px 0;
    font-size: 11px;
}

.stars i {
    margin-right: 2px;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-dark);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-dark);
}

/* ========================================
13. CATEGORIES & NEWSLETTER
======================================== */
.categories {
    background: var(--primary);
    padding: 80px 0;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 15px;
}

.category-item {
    color: var(--gray);
    padding: 10px 0;
    transition: var(--transition);
    cursor: pointer;
}

.category-item:hover {
    color: var(--primary-dark);
    padding-left: 10px;
}

.category-item i {
    margin-right: 10px;
    color: var(--primary-dark);
}

.newsletter {
    background: var(--light-gray);
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--primary-dark);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
}

.social-footer a {
    color: var(--gray);
    margin-right: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.social-footer a:hover {
    color: var(--primary-dark);
}

/* ========================================
14. BLOG & FOOTER
======================================== */
.blog {
    padding: 100px 0;
}

.blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 380px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px;
    color: var(--white);
}

.blog-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 13px;
    opacity: 0.8;
}

.featured-in {
    padding: 60px 0;
    text-align: center;
}

.featured-in h3 {
    margin-bottom: 40px;
    color: var(--black);
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.featured-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.featured-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h5 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 18px;
}

footer p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 30px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-social a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ========================================
15. BTN VIEW ALL
======================================== */
.btn-view-all {
    display: inline-block;
    background: transparent;
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid var(--primary-dark);
}

.btn-view-all:hover {
    background: var(--primary-dark);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-view-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ========================================
16. MOBILE RESPONSIVE - ALL IN ONE PLACE
======================================== */

/* Tablet & Mobile - Max Width 991px */
@media (max-width: 991px) {
    .navbar-center-content {
        margin-left: 0;
    }
    .navbar-brand {
        margin-right: 20px;
    }
    .logo-img {
        height: 50px;
    }
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block !important;
    }
    .navbar-right-content {
        display: none !important;
    }
    .top-bar-left {
        gap: 15px;
    }
    .btn-tailor-top {
        padding: 6px 18px;
        font-size: 12px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .search-box {
        padding: 20px;
    }
    /* Features Mobile */
    .feature-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px 10px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .feature-icon i {
        font-size: 20px;
    }
    .feature-text h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .feature-text p {
        font-size: 12px;
    }
    /* Destinations Grid Mobile */
    .dest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .dest-main {
        grid-row: span 1;
        height: 400px;
    }
    .dest-item {
        height: 250px;
    }
    /* Promo Banner Mobile */
    .promo-banner-new {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../img/tailormade2.webp') center/cover no-repeat;
        background-size: cover;
        background-position: center;
    }
    .promo-img-side {
        display: none !important;
    }
    .promo-text-side {
        padding: 50px 25px;
        min-height: auto;
        text-align: center;
        align-items: center;
    }
    .promo-text-side h6 {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .promo-text-side h2 {
        font-size: 32px;
    }
    .promo-text-side p {
        font-size: 15px;
    }
    .btn-promo-white {
        padding: 12px 35px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    /* Testimonials Mobile */
    .testimonial-card {
        width: 320px;
        max-width: 320px;
    }
    .testimonials-carousel-wrapper {
        gap: 10px;
        padding: 0;
    }
    /* Categories Mobile */
    .category-list {
        grid-template-columns: 1fr;
    }
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-social a {
        margin: 0 8px;
    }
    /* Disable pseudo-elements in mobile */
    .nav-link::before,
    .nav-link::after,
    .sidebar-link::before,
    .sidebar-link::after,
    .sidebar-item::before,
    .sidebar-item::after,
    .dropdown-toggle::before {
        display: none !important;
        content: none !important;
    }
    /* ✅ تقليل المسافات بين الـ Sections في الموبايل */
    .features-box {
        padding: 30px 0;
        margin-top: -40px;
    }
    .section {
        padding: 45px 0;
    }
    .tours,
    .recommended,
    .blog,
    .testimonials {
        padding: 55px 0;
    }
    .section-title {
        margin-bottom: 35px;
    }
}

/* Mobile - Max Width 768px */
@media (max-width: 768px) {
    .top-bar-left a span {
        display: none;
    }
    .top-bar-left i {
        margin-right: 0;
        font-size: 16px;
    }
    .social-icons {
        display: none;
    }
    .btn-tailor-top {
        display: none;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar-brand {
        margin-right: 15px;
    }
    .logo-img {
        height: 70px;
        width: auto;
        object-fit: contain;
    }
    .navbar-toggler {
        padding: 8px;
        margin-left: auto;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .search-box {
        padding: 15px;
    }
    .feature-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .feature-icon {
        width: 55px;
        height: 55px;
        margin: 0 15px 0 0;
        flex-shrink: 0;
    }
    .feature-icon i {
        font-size: 22px;
        color: var(--primary);
    }
    .feature-text {
        font-size: 14px;
        text-align: left;
    }
    .feature-text h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .feature-text p {
        font-size: 12px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .tours {
        padding: 50px 0;
    }
    .promo-text-side {
        padding: 40px 25px;
    }
    .promo-text-side h2 {
        font-size: 32px;
    }
    .promo-img-side {
        min-height: 250px;
    }
    .testimonial-card {
        width: 300px;
        max-width: 300px;
        padding: 25px 20px;
    }
    .testimonial-card p {
        min-height: 90px;
        font-size: 13px;
    }
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .author-initial {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .blog-card {
        height: auto;
        min-height: 350px;
    }
}

/* Small Mobile - Max Width 576px */
@media (max-width: 576px) {
    .logo-img {
        height: 81px;
    }
    .navbar {
        height: 98px;
        padding: 8px 0;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }
    .hero {
        min-height: 600px;
    }
    /* Section Mobile */
    .section {
        padding: 30px 0;
    }
    .tours,
    .recommended,
    .blog,
    .testimonials {
        padding: 40px 0;
    }
    .promo-text-side {
        padding: 35px 20px;
    }
    .promo-text-side h2 {
        font-size: 28px;
    }
    .promo-text-side p {
        font-size: 14px;
    }
    .promo-img-side {
        min-height: 220px;
    }
    .btn-promo-white {
        padding: 11px 30px;
        font-size: 12px;
    }
    .testimonial-card {
        width: 280px;
        max-width: 280px;
    }
    .testimonial-card p {
        min-height: auto;
    }
    .carousel-nav {
        display: none;
    }
    footer {
        padding: 60px 0 20px;
    }
    footer h5 {
        font-size: 16px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile - Max Width 400px */
@media (max-width: 400px) {
    .logo-img {
        height: 81px;
    }
    .navbar {
        padding: 6px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
    .dest-item {
        height: 200px;
    }
    .dest-main {
        height: 300px;
    }
}

/* ========================================
PRICE ANIMATION EFFECTS
======================================== */
.price-animating {
    opacity: 0.1;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.price-updating {
    animation: priceSlideUpdate 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes priceSlideUpdate {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    40% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
    60% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}