/**
 * LegendTours — Main Theme Stylesheet
 * Header · Footer · Utilities
 *
 * @package LegendTours
 * @since   1.0.0
 * © 2025 LegendTours — All rights reserved.
 */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    --lt-primary: #0170B9;
    --lt-primary-dark: #005fa3;
    --lt-accent: #FEBB02;
    --lt-accent-dark: #e5a802;
    --lt-dark: #1a1a2e;
    --lt-white: #ffffff;
    --lt-light: #f5f7fa;
    --lt-muted: #6b7280;
    --lt-border: rgba(0, 0, 0, 0.08);
    --lt-font: 'Alexandria', 'Cairo', system-ui, sans-serif;
    --lt-container: 1280px;
    --lt-hdr-h: 86px;
    --lt-r-sm: 8px;
    --lt-r-md: 12px;
    --lt-r-lg: 20px;
    --lt-sh-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --lt-sh-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --lt-sh-lg: 0 16px 56px rgba(0, 0, 0, 0.18);
    --lt-trans: all 0.25s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--lt-font);
    color: var(--lt-dark);
    background: var(--lt-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* ============================================================
   GTRANSLATE — Hide default floating widget
   (we use our own custom switcher in the header)
   ============================================================ */
#gt_float_wrapper,
.gt_float_switcher,
.gt-selected,
.goog-te-gadget,
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

/* Prevent Google Translate from adding top margin to body */
body {
    top: 0 !important;
}

body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}


/* Sticky Header Padding Fix */
/* Only apply padding to pages that DON'T have a hero section at the top */
body:not(.home):not(.page-template-template-legal):not(:has(.lt-page-hero)):not(:has(.lt-page-banner)) .site-content {
    padding-top: var(--lt-hdr-h);
}

.lt-main-content,
.lt-legal-page,
.lt-single-post-page,
.lt-archive-page {
    background-color: #f8fafc;
    /* Solid light background */
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    body:not(.home):not(.page-template-template-legal):not(:has(.lt-page-hero)):not(:has(.lt-page-banner)) .site-content {
        padding-top: 70px;
    }
}


/* ============================================================
   1. TOP BAR
   ============================================================ */
.lt-top-bar {
    background: #002244;
    /* Darker navy for premium feel */
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lt-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lt-top-bar-left,
.lt-top-bar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.lt-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lt-top-item i {
    color: var(--lt-accent);
    font-size: 14px;
}

.lt-top-item a {
    color: inherit;
    transition: var(--lt-trans);
}

.lt-top-item a:hover {
    color: #fff;
}

.lt-top-social {
    display: flex;
    gap: 15px;
}

.lt-top-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--lt-trans);
}

.lt-top-social a:hover {
    color: var(--lt-accent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lt-top-bar {
        display: none;
    }

    /* Hide on mobile for cleanliness */
}

/* ============================================================
   2. HEADER
   ============================================================ */
.lt-hdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Admin bar fix */
.admin-bar .lt-hdr {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .lt-hdr {
        top: 46px;
    }
}

/* ── Home & Hero Pages Exception (Starts Transparent) ── */
body.home .lt-hdr:not(.lt-hdr--scrolled),
body.page-template-template-legal .lt-hdr:not(.lt-hdr--scrolled),
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled),
body:has(.lt-page-banner) .lt-hdr:not(.lt-hdr--scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

/* ── Scrolled State (For Home and General refinement) ── */
.lt-hdr--scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* ── Content Transitions ── */
.lt-hdr-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    height: var(--lt-hdr-h);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
}

.lt-hdr--scrolled .lt-hdr-inner {
    height: calc(var(--lt-hdr-h) - 14px);
}

.lt-hdr-spacer {
    flex: 1;
}

/* Logo handling */
.lt-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.lt-hdr--scrolled .lt-logo img {
    max-height: 42px;
}

/* ── Header Colors Logic ── */

/* 1. Default (Scrolled/Non-home) - Dark Text */
.lt-hdr .lt-explore-btn,
.lt-hdr .lt-hdr-icon-btn,
.lt-hdr .lt-region-btn,
.lt-hdr .lt-login-btn,
.lt-hdr .lt-explore-btn span,
.lt-hdr .lt-region-btn span,
.lt-hdr .lt-region-name,
.lt-hdr .lt-logo-text {
    color: var(--lt-dark) !important;
    transition: all 0.4s ease;
}

.lt-hdr .lt-explore-btn i,
.lt-hdr .lt-hdr-icon-btn i,
.lt-hdr .lt-region-btn i,
.lt-hdr .lt-login-btn i,
.lt-hdr .lt-explore-btn .lt-chevron {
    color: var(--lt-dark) !important;
}

/* 2. Home & Hero Top Exception - White Text */
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn,
body.woocommerce-account .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn,
body.woocommerce-account .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn span,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn span,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-region-name,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-logo-text,
body.page-template-template-legal .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn,
body.page-template-template-legal .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn i,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn i,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn i,
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn i,
body.woocommerce-account .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn i,
body.woocommerce-account .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn i,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn i,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-login-btn i {
    color: #fff;
}

.lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn .lt-chevron,
body.page-template-template-legal .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn i,
body.page-template-template-legal .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn i,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-explore-btn i,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-hdr-icon-btn i {
    color: #fff !important;
}

/* 3. Icons Specific (Scrolled/Solid) */
.lt-hdr--scrolled .lt-explore-btn i,
.lt-hdr--scrolled .lt-login-btn i {
    color: var(--lt-primary) !important;
}

/* Avatar Styling */
.lt-user-avatar-btn .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-user-avatar-btn .avatar {
    border-color: rgba(255, 255, 255, 0.8);
}

.lt-hdr--scrolled .lt-user-avatar-btn .avatar {
    border-color: var(--lt-primary);
}

/* Region Button State */
.lt-region-btn {
    border-color: rgba(0, 0, 0, 0.08) !important;
    background: rgba(0, 0, 0, 0.03) !important;
}

body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-region-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.lt-hdr--scrolled .lt-region-btn {
    border-color: rgba(1, 112, 185, 0.2) !important;
    background: rgba(1, 112, 185, 0.05) !important;
}


/* ── Explore button ── */
.lt-hdr-explore {
    position: relative;
    flex-shrink: 0;
}

/* ── Main Navigation ── */
.lt-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
}

.lt-navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.lt-navbar>li {
    position: relative;
}

.lt-navbar>li>a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lt-dark);
    transition: var(--lt-trans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Color logic for nav links */
body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a,
body.woocommerce-account .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a,
body.woocommerce-cart .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a,
body.woocommerce-checkout .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a,
body:has(.lt-page-hero) .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a {
    color: #fff;
}

.lt-hdr--scrolled .lt-navbar>li>a {
    color: var(--lt-dark);
}

.lt-navbar>li>a:hover {
    color: var(--lt-primary);
}

body.home .lt-hdr:not(.lt-hdr--scrolled) .lt-navbar>li>a:hover {
    color: var(--lt-accent);
}

@media (max-width: 991px) {
    .lt-main-nav {
        display: none;
    }
}

/* ── Shared dropdown panel ── */
.lt-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    background: var(--lt-white);
    border-radius: var(--lt-r-md);
    box-shadow: var(--lt-sh-lg);
    border: 1px solid var(--lt-border);
    padding: 8px;
    z-index: 1000;
    animation: lt-fade-down 0.2s ease;
    min-width: 220px;
}

.lt-dropdown-panel.open {
    display: block;
}

.lt-dropdown-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--lt-muted);
    margin: 4px 6px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ════════════════════════════════════════════
   MEGA MENU
   ════════════════════════════════════════════ */
.lt-mega-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--lt-hdr-h);
    z-index: 9000;
    background: #fff;
    border-top: 1px solid var(--lt-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: lt-mega-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: top 0.4s ease;
}

.lt-hdr--scrolled~.lt-mega-menu,
.lt-hdr--scrolled+.lt-mega-menu {
    /* Fallback for different positions */
    top: calc(var(--lt-hdr-h) - 10px);
}

.lt-mega-menu.open {
    display: block;
}

@keyframes lt-mega-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner Container */
.lt-mega-inner {
    max-width: var(--lt-container);
    margin: 0 auto;
    display: flex;
    padding: 40px 28px;
    gap: 60px;
}

.lt-mega-section {
    flex: 1;
    min-width: 0;
}

.lt-mega-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--lt-muted);
    margin-bottom: 24px;
    opacity: 0.8;
}

/* Destinations Grid (2 columns) */
.lt-mega-dest-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

/* Lists */
.lt-mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lt-mega-list li {
    margin-bottom: 4px;
}

.lt-mega-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--lt-r-sm);
    color: var(--lt-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--lt-trans);
}

.lt-mega-list li a i {
    font-size: 1.1rem;
    color: var(--lt-primary);
    width: 24px;
    text-align: center;
    transition: transform 0.2s;
}

.lt-mega-list li a:hover {
    background: var(--lt-light);
    color: var(--lt-primary);
    transform: translateX(4px);
}

.lt-mega-list li a:hover i {
    transform: scale(1.1);
}

/* Vertical Divider */
.lt-mega-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--lt-border), transparent);
    align-self: stretch;
}

/* Footer Bar */
.lt-mega-footer {
    border-top: 1px solid var(--lt-border);
    background: #fafafa;
    padding: 16px 28px;
}

.lt-mega-footer-inner {
    max-width: var(--lt-container);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.lt-mega-view-all,
.lt-mega-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lt-primary);
    transition: var(--lt-trans);
}

.lt-mega-view-all:hover {
    gap: 12px;
    opacity: 0.8;
}

.lt-mega-contact {
    color: var(--lt-muted);
}

.lt-mega-contact:hover {
    color: var(--lt-primary);
}


/* Explore button */
.lt-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lt-dark);
    cursor: pointer;
    transition: var(--lt-trans);
    font-family: inherit;
}

.lt-explore-btn:hover,
.lt-explore-btn[aria-expanded="true"] {
    background: rgba(1, 112, 185, 0.06);
    color: var(--lt-primary);
}

.lt-explore-btn .lt-chevron {
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.22s;
}

.lt-explore-btn[aria-expanded="true"] .lt-chevron {
    transform: rotate(180deg);
}

/* ════════════════════════════════════════════
    PREMIUM PAGE HERO
    ════════════════════════════════════════════ */

.lt-page-hero {
    z-index: 1;
    overflow: hidden;
    position: relative;
    background-color: #002244;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0 160px;
    /* Increased bottom padding for overlap */
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
}

/* Elegant Overlay */
.lt-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 34, 68, 0.6) 0%, rgba(0, 34, 68, 0.2) 50%, rgba(0, 34, 68, 0.7) 100%);
    z-index: 1;
}

/* Subtle texture/pattern */
.lt-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 1;
    pointer-events: none;
}

.lt-page-hero .lt-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lt-page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.lt-page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Breadcrumbs */
.lt-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lt-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lt-breadcrumbs a:hover {
    opacity: 1;
}

.lt-breadcrumbs i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.lt-breadcrumbs span {
    color: #fff;
}


.lt-post-meta-hero {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

.lt-post-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
}


.lt-page-article,
.lt-article-card,
.lt-archive-page .lt-posts-grid {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.lt-archive-page .lt-posts-grid {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

@media (max-width: 768px) {

    .lt-page-article,
    .lt-article-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 992px) {
    .lt-page-hero {
        min-height: 380px;
        padding: 160px 0 80px;
    }

    .lt-page-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .lt-page-hero {
        min-height: 320px;
        padding: 140px 0 60px;
        text-align: center;
    }

    .lt-page-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .lt-page-subtitle {
        font-size: 1.1rem;
        margin: 0 auto;
    }
}

/* ════════════════════════════════════════════
   PAGE BANNER
   ════════════════════════════════════════════ */
.lt-page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lt-dark);
}

.lt-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lt-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.lt-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.4));
}

.lt-banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    color: #fff;
    padding-top: 60px;
    /* Offset for sticky header */
}

.lt-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.lt-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.lt-breadcrumbs a:hover {
    color: var(--lt-accent);
}

.lt-breadcrumbs i {
    font-size: 0.7rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .lt-page-banner {
        height: 280px;
    }

    .lt-banner-title {
        font-size: 2.2rem;
    }
}

/* ── 404 Specific ── */
.lt-banner-404 {
    height: 100vh;
    text-align: center;
}

.lt-banner-404 p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* ════════════════════════════════════════════
   POSTS & ARCHIVES
   ════════════════════════════════════════════ */
.lt-post-card {
    background: #fff;
    border-radius: var(--lt-r-md);
    overflow: hidden;
    box-shadow: var(--lt-sh-sm);
    transition: var(--lt-trans);
    border: 1px solid var(--lt-border);
}

.lt-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lt-sh-md);
}

.lt-post-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.lt-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-post-meta {
    padding: 20px;
}

.lt-post-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--lt-primary);
    margin-bottom: 8px;
}

.lt-post-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.lt-post-excerpt {
    font-size: 0.9rem;
    color: var(--lt-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.lt-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--lt-border);
    padding-top: 15px;
}

.lt-post-date {
    font-size: 0.85rem;
    color: var(--lt-muted);
}

.lt-read-more {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lt-primary);
}

/* ── Single Post Content ── */
.lt-single-post {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 24px;
}

.lt-entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.lt-entry-content p {
    margin-bottom: 25px;
}

.lt-entry-content h2,
.lt-entry-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   SINGLE POST LAYOUT (Raiq Style)
   ════════════════════════════════════════════ */
.lt-single-post-page {
    padding: 60px 0;
    background: #fdfdfd;
}

.lt-single-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1024px) {
    .lt-single-grid {
        grid-template-columns: 1fr;
    }
}

.lt-article-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--lt-r-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--lt-border);
}

/* ── Share Buttons ── */
.lt-post-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--lt-border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.lt-post-share span {
    font-weight: 700;
    color: var(--lt-muted);
    font-size: 0.9rem;
}

.lt-share-btns {
    display: flex;
    gap: 12px;
}

.lt-share-btns a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--lt-trans);
}

.lt-share-wa {
    background: #25D366;
}

.lt-share-fb {
    background: #1877F2;
}

.lt-share-tw {
    background: #000000;
}

.lt-share-tg {
    background: #0088cc;
}

.lt-share-btns a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    box-shadow: var(--lt-sh-md);
}

/* ── Sidebar & Widgets ── */
.lt-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.lt-widget {
    background: #fff;
    padding: 25px;
    border-radius: var(--lt-r-md);
    border: 1px solid var(--lt-border);
    margin-bottom: 30px;
}

.lt-widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lt-accent);
    display: inline-block;
}

.lt-mini-tour {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: center;
}

.lt-mini-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--lt-r-sm);
    overflow: hidden;
}

.lt-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-mini-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.3;
}

.lt-mini-price {
    color: var(--lt-primary);
    font-weight: 800;
    font-size: 0.85rem;
}

.lt-widget-cta {
    background: var(--lt-primary);
    color: #fff;
    border: none;
    text-align: center;
}

.lt-cta-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--lt-accent);
}

.lt-cta-card h3 {
    margin-bottom: 10px;
}

.lt-cta-card p {
    opacity: 0.85;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   PREMIUM RAIAQ HOME SECTIONS
   ════════════════════════════════════════════ */
.lt-cat-showcase {
    padding: 100px 0;
    background: var(--lt-white);
}

.lt-section-head {
    margin-bottom: 60px;
}

.lt-section-head.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lt-sub {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lt-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 1.1;
    color: var(--lt-dark);
}

/* ── Tour Cards ── */
.lt-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lt-product-card {
    border-radius: var(--lt-r-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--lt-sh-sm);
    transition: var(--lt-trans);
    border: 1px solid var(--lt-border);
    position: relative;
}

.lt-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lt-sh-lg);
    border-color: var(--lt-primary);
}

.lt-product-thumb {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.lt-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lt-product-card:hover .lt-product-thumb img {
    transform: scale(1.1);
}

.lt-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--lt-trans);
}

.lt-product-card:hover .lt-product-overlay {
    opacity: 1;
}

.lt-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--lt-accent);
    color: var(--lt-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 5;
}

.lt-product-info {
    padding: 25px;
}

.lt-product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.lt-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--lt-border);
}

.lt-meta-item {
    font-size: 0.85rem;
    color: var(--lt-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lt-meta-price .amount {
    font-weight: 800;
    color: var(--lt-primary);
    font-size: 1.2rem;
}

/* ── FAQ Refined ── */
.lt-faq-section {
    padding: 100px 0;
    background: var(--lt-light);
}

.lt-faq-grid {
    max-width: 850px;
    margin: 40px auto 0;
}

.lt-faq-item {
    background: #fff;
    border-radius: var(--lt-r-md);
    margin-bottom: 20px;
    border: 1px solid var(--lt-border);
    transition: var(--lt-trans);
}

.lt-faq-q {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.lt-faq-a {
    padding: 0 30px 24px;
    color: var(--lt-muted);
    line-height: 1.8;
    display: none;
    border-top: 1px solid transparent;
}

.lt-faq-item.active {
    border-color: var(--lt-primary);
    box-shadow: var(--lt-sh-md);
}

.lt-faq-item.active .lt-faq-a {
    display: block;
    border-color: var(--lt-border);
    padding-top: 20px;
}

.lt-faq-item.active .lt-faq-q {
    color: var(--lt-primary);
}

.lt-faq-q i {
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.lt-faq-item.active .lt-faq-q i {
    transform: rotate(180deg);
}

/* ── Contact Refined ── */
.lt-contact-section {
    padding: 100px 0;
    background: #fff;
}

.lt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.lt-contact-desc {
    font-size: 1.1rem;
    color: var(--lt-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.lt-info-icon {
    width: 54px;
    height: 54px;
    background: var(--lt-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(1, 112, 185, 0.3);
}

.lt-contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: var(--lt-r-lg);
    box-shadow: var(--lt-sh-lg);
    border: 1px solid var(--lt-border);
    position: relative;
    overflow: hidden;
}

.lt-contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--lt-primary);
}

.lt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.lt-contact-form input,
.lt-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--lt-light);
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-r-md);
    font-family: inherit;
    transition: var(--lt-trans);
}

.lt-contact-form input:focus,
.lt-contact-form textarea:focus {
    background: #fff;
    border-color: var(--lt-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 112, 185, 0.1);
}

/* ── Blog Refined ── */
.lt-blog-section {
    padding: 120px 0;
    background: #f8fafc;
}

.lt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lt-blog-card {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    height: 100%;
}

.lt-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--lt-primary-light);
}

.lt-blog-thumb {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.lt-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lt-blog-card:hover .lt-blog-thumb img {
    transform: scale(1.1);
}

.lt-blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lt-blog-date strong {
    font-size: 1.2rem;
    color: var(--lt-dark);
    display: block;
}

.lt-blog-date span {
    font-size: 0.75rem;
    color: var(--lt-primary);
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 4px;
}

.lt-blog-content {
    padding: 30px;
}

.lt-blog-cat {
    display: inline-block;
    color: var(--lt-primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lt-blog-title {
    font-size: 1.35rem;
    color: var(--lt-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.lt-blog-card:hover .lt-blog-title {
    color: var(--lt-primary);
}

.lt-blog-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.lt-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.lt-read-more {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--lt-dark);
}

.lt-blog-footer i {
    color: var(--lt-primary);
    transition: transform 0.3s ease;
}

.lt-blog-card:hover .lt-blog-footer i {
    transform: translateX(5px);
}

/* ── Testimonials Refined ── */
.lt-testimonials {
    padding: 100px 0;
    background: var(--lt-white);
}

.lt-testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.lt-testi-card {
    padding: 45px;
    border-radius: var(--lt-r-lg);
    background: #fff;
    border: 1px solid var(--lt-border);
    box-shadow: var(--lt-sh-md);
    position: relative;
}

.lt-testi-quote {
    font-size: 2.5rem;
    color: var(--lt-primary);
    opacity: 0.15;
    position: absolute;
    top: 30px;
    left: 30px;
}

.lt-testi-card p {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 30px;
}

.lt-testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--lt-border);
}

.lt-testi-stars {
    color: var(--lt-accent);
    font-size: 0.8rem;
}

/* ── Transfer Table Refined ── */
.lt-transfer-table {
    padding: 100px 0;
    background: var(--lt-light);
}

.lt-raiq-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.lt-raiq-table th {
    padding: 20px 30px;
    color: var(--lt-muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.lt-raiq-table td {
    padding: 25px 30px;
    background: #fff;
    border-top: 1px solid var(--lt-border);
    border-bottom: 1px solid var(--lt-border);
}

.lt-raiq-table tr td:first-child {
    border-left: 1px solid var(--lt-border);
    border-radius: var(--lt-r-md) 0 0 var(--lt-r-md);
}

.lt-raiq-table tr td:last-child {
    border-right: 1px solid var(--lt-border);
    border-radius: 0 var(--lt-r-md) var(--lt-r-md) 0;
}

.lt-table-veh {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lt-table-veh i {
    color: var(--lt-primary);
    font-size: 1.1rem;
}

.lt-table-price {
    color: var(--lt-primary);
    font-weight: 800;
    font-size: 1.2rem;
}

/* ── Animations ── */
.lt-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lt-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.lt-meta-top {
    margin-bottom: 10px;
}

.lt-meta-duration {
    font-size: 0.85rem;
    color: var(--lt-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lt-price-wrap {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lt-from {
    font-size: 0.8rem;
    color: var(--lt-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lt-meta-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lt-primary);
    line-height: 1;
}

.lt-meta-price ins {
    text-decoration: none;
}

.lt-meta-price del {
    font-size: 1rem;
    color: var(--lt-muted);
    font-weight: 400;
    margin-right: 8px;
}

.lt-product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

/* ── Global Buttons ── */
.lt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--lt-r-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lt-btn--primary {
    background: var(--lt-primary);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(1, 112, 185, 0.25);
}

.lt-btn--secondary {
    background: #fff;
    color: var(--lt-primary) !important;
    border: 2px solid var(--lt-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lt-btn--primary:hover {
    background: var(--lt-primary-dark);
    box-shadow: 0 8px 30px rgba(1, 112, 185, 0.35);
}

.lt-btn--secondary:hover {
    background: var(--lt-primary);
    color: #fff !important;
}

.lt-btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.lt-btn--full {
    width: 100%;
}

@media (max-width: 1024px) {

    .lt-product-grid,
    .lt-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lt-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lt-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .lt-product-grid,
    .lt-blog-grid,
    .lt-testi-grid {
        grid-template-columns: 1fr;
    }

    .lt-contact-form-card {
        padding: 30px;
    }

    .lt-form-row {
        grid-template-columns: 1fr;
    }
}

/* Hide on tablet */
@media (max-width:900px) {
    .lt-mega-menu {
        display: none !important;
    }
}

/* ── Right actions ── */
.lt-hdr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Icon buttons — brand identity colors ── */
.lt-hdr-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--lt-dark);
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--lt-trans);
    position: relative;
}

/* Search — accent yellow */
.lt-search-btn:hover {
    background: rgba(254, 187, 2, 0.12);
    color: var(--lt-accent-dark);
}

/* Wishlist — warm red */
.lt-wishlist-btn {
    color: var(--lt-dark);
}

.lt-wishlist-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Account — primary blue */
.lt-account-btn:hover {
    background: rgba(1, 112, 185, 0.12);
    color: var(--lt-primary);
}

/* ── Language switcher ── */
.lt-lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lt-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1.5px solid var(--lt-border);
    border-radius: 50px;
    background: transparent;
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--lt-trans);
}

.lt-lang-btn:hover {
    background: rgba(1, 112, 185, 0.06);
    border-color: var(--lt-primary);
    color: var(--lt-primary);
}

.lt-lang-btn[aria-expanded="true"] {
    border-color: var(--lt-primary);
    color: var(--lt-primary);
}

.lt-lang-code {
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

.lt-lang-btn .lt-chevron {
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.25s;
}

.lt-lang-btn[aria-expanded="true"] .lt-chevron {
    transform: rotate(180deg);
}

.lt-lang-dropdown {
    right: 0;
    min-width: 260px;
}

.lt-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.lt-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: var(--lt-r-sm);
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lt-trans);
    position: relative;
}

.lt-lang-option:hover {
    background: var(--lt-light);
}

.lt-lang-option.active {
    background: var(--lt-primary);
    color: #fff;
}

.lt-lang-flag-em {
    font-size: 1.2rem;
    line-height: 1;
}

.lt-lang-badge {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 4px;
    padding: 1px 5px;
    color: var(--lt-muted);
}

.lt-lang-option.active .lt-lang-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ── Currency switcher ── */
.lt-curr-switcher {
    position: relative;
    flex-shrink: 0;
}

.lt-curr-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border: 1.5px solid var(--lt-border);
    border-radius: 50px;
    background: transparent;
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--lt-trans);
}

.lt-curr-btn:hover {
    background: rgba(254, 187, 2, 0.08);
    border-color: var(--lt-accent);
    color: var(--lt-dark);
}

.lt-curr-btn[aria-expanded="true"] {
    border-color: var(--lt-accent);
}

.lt-curr-symbol {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lt-primary);
}

.lt-curr-btn .lt-chevron {
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.25s;
}

.lt-curr-btn[aria-expanded="true"] .lt-chevron {
    transform: rotate(180deg);
}

.lt-curr-dropdown {
    right: 0;
    min-width: 240px;
    max-height: 360px;
    overflow-y: auto;
}

.lt-curr-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--lt-r-sm);
    color: var(--lt-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lt-trans);
}

.lt-curr-option:hover {
    background: rgba(1, 112, 185, 0.07);
    color: var(--lt-primary);
}

.lt-curr-option.active {
    background: linear-gradient(135deg, var(--lt-primary), var(--lt-primary-dark));
    color: #fff;
    box-shadow: 0 2px 8px rgba(1, 112, 185, 0.25);
}

.lt-curr-flag {
    font-size: 1.25rem;
}

.lt-curr-name {
    flex: 1;
}

.lt-curr-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    padding: 2px 7px;
    color: var(--lt-muted);
}

.lt-curr-option.active .lt-curr-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ── Hamburger ── */
.lt-hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--lt-r-sm);
    transition: all 0.4s;
}

.lt-hdr-burger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.lt-hdr--scrolled .lt-hdr-burger span {
    background: var(--lt-dark);
}

.lt-hdr--scrolled .lt-hdr-burger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.lt-hdr-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lt-hdr-burger.active span:nth-child(2) {
    opacity: 0;
}

.lt-hdr-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Search overlay ── */
.lt-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(8px);
    align-items: flex-start;
    justify-content: center;
    padding-top: 130px;
}

.lt-search-overlay.open {
    display: flex;
}

.lt-search-overlay-inner {
    position: relative;
    width: min(680px, 90vw);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lt-white);
    border-radius: var(--lt-r-lg);
    padding: 10px 10px 10px 20px;
    box-shadow: var(--lt-sh-lg);
    animation: lt-fade-down 0.25s ease;
}

.lt-search-icon-in {
    color: var(--lt-muted);
    flex-shrink: 0;
}

.lt-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: inherit;
    background: transparent;
    color: var(--lt-dark);
    min-width: 0;
}

.lt-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--lt-r-sm);
    border: none;
    background: var(--lt-primary);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lt-search-submit:hover {
    background: var(--lt-primary-dark);
}

.lt-search-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.lt-search-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ── Mobile drawer ── */
body.lt-no-scroll {
    overflow: hidden;
}

.lt-mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lt-mobile-drawer.open {
    opacity: 1;
    pointer-events: auto;
}

.lt-mobile-drawer nav {
    position: absolute;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100%;
    background: var(--lt-white);
    padding: 0 0 32px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.2);
}

.lt-mobile-drawer.open nav {
    transform: translateX(0);
}

/* Drawer logo bar */
.lt-drawer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--lt-border);
    position: sticky;
    top: 0;
    background: var(--lt-white);
    z-index: 2;
}

.lt-drawer-logo img {
    height: 34px;
}

.lt-drawer-logo .lt-hdr-brand {
    font-size: 1.25rem;
}

.lt-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lt-muted);
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lt-drawer-close:hover {
    background: var(--lt-light);
    color: var(--lt-dark);
}

/* Mobile menu */
.lt-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.lt-mobile-menu li+li {
    margin-top: 2px;
}

.lt-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--lt-r-sm);
    color: var(--lt-dark);
    font-size: 0.97rem;
    font-weight: 600;
    transition: var(--lt-trans);
}

.lt-mobile-menu a:hover,
.lt-mobile-menu .current-menu-item>a {
    background: var(--lt-light);
    color: var(--lt-primary);
}

/* Mobile sections (currency / lang) */
.lt-mobile-section {
    padding: 16px 20px;
    border-top: 1px solid var(--lt-border);
}

.lt-mobile-section-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--lt-muted);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.lt-mobile-curr-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lt-mobile-curr-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--lt-r-sm);
    border: 1.5px solid var(--lt-border);
    color: var(--lt-dark);
    font-size: 0.9rem;
    transition: var(--lt-trans);
}

.lt-mobile-curr-item:hover {
    background: var(--lt-light);
    border-color: var(--lt-primary);
}

.lt-mobile-curr-item.active {
    background: var(--lt-primary);
    color: #fff;
    border-color: var(--lt-primary);
}

.lt-mobile-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.lt-mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: var(--lt-r-sm);
    border: 1.5px solid var(--lt-border);
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--lt-trans);
}

.lt-mobile-lang-item:hover {
    background: var(--lt-light);
}

.lt-mobile-lang-item.active {
    background: var(--lt-primary);
    color: #fff;
    border-color: var(--lt-primary);
}

/* ============================================================
   4. FOOTER
   ============================================================ */
.lt-footer {
    background: linear-gradient(160deg, #0a1628 0%, #0d2248 50%, #0170B9 100%);
    color: rgba(255, 255, 255, 0.88);
    padding-top: 80px;
}

.lt-footer-grid {
    max-width: var(--lt-container);
    margin: 0 auto;
    padding: 0 28px 64px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* Brand col */
.lt-footer-logo {
    filter: brightness(0) invert(1);
    max-width: 180px;
    height: auto;
}

.lt-footer-logo img {
    max-height: 100px;
    width: auto;
}

.lt-footer-brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.lt-footer-brand-text strong {
    color: var(--lt-accent);
}

.lt-footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.lt-footer-desc {
    font-size: 0.92rem;
    line-height: 1.85;
    opacity: 0.75;
    margin: 0 0 28px;
}

/* Social */
.lt-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lt-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--lt-trans);
}

.lt-social-btn:hover {
    background: var(--lt-accent);
    color: var(--lt-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.lt-social-wa:hover {
    background: #25D366 !important;
    color: #fff !important;
}

.lt-social-ta:hover {
    background: #34E0A1 !important;
    color: #fff !important;
}

.lt-social-btn svg {
    width: 1em;
    height: 1em;
    display: block;
}

/* Headings */
.lt-footer-heading {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Links list */
.lt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lt-footer-links li {
    margin-bottom: 10px;
}

.lt-footer-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--lt-trans);
}

.lt-footer-links a i {
    font-size: 0.8rem;
    color: var(--lt-accent);
    opacity: 0.8;
    width: 14px;
    text-align: center;
}

.lt-footer-links a:hover {
    color: #fff;
    padding-inline-start: 5px;
}

.lt-footer-links a:hover i {
    opacity: 1;
}

/* Navigation Menu prepended icons support */
.lt-footer-links li a::before {
    font-family: "Font Awesome 7 Sharp Duotone", "Font Awesome 7 Pro", sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--lt-accent);
    opacity: 0.8;
    transition: var(--lt-trans);
    display: inline-block;
    width: 14px;
    text-align: center;
}
.lt-footer-col:nth-child(2) .lt-footer-links li a::before {
    content: "\f054";
}
.lt-rtl .lt-footer-col:nth-child(2) .lt-footer-links li a::before {
    content: "\f053";
}
.lt-footer-col:nth-child(3) .lt-footer-links li a::before {
    content: "\f005";
}
/* If there's an explicit <i> icon in the markup (fallback), don't show the pseudo-element! */
.lt-footer-links li a i ~ *::before,
.lt-footer-links li a:has(i)::before {
    content: none !important;
    display: none !important;
}

/* Footer Bottom Navigation Menu styles */
.lt-footer-bottom-links-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lt-footer-bottom-links-nav li {
    margin: 0;
    padding: 0;
}
.lt-footer-bottom-links-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.83rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.lt-footer-bottom-links-nav li a:hover {
    opacity: 1;
}

/* Contact list */
.lt-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.lt-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 13px;
}

.lt-contact-icon {
    color: var(--lt-accent);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.lt-wa-icon {
    color: #25D366 !important;
}

.lt-footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

.lt-footer-contact a:hover {
    color: #fff;
}

/* Trust badges */
.lt-footer-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lt-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.lt-trust-badge i {
    color: var(--lt-accent);
    font-size: 0.9rem;
}

/* Bottom bar */
.lt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 28px;
}

.lt-footer-bottom-inner {
    max-width: var(--lt-container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lt-copyright {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.lt-developer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 15px;
}
.lt-goha-link {
    color: #FEBB02 !important;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(254, 187, 2, 0.3);
}
.lt-goha-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #FEBB02;
    transition: width 0.3s ease;
}
.lt-goha-link:hover {
    color: #fff !important;
    text-shadow: 0 0 15px #FEBB02;
}
.lt-goha-link:hover::after {
    width: 100%;
}

.lt-copyright a:hover {
    color: var(--lt-accent);
}

.lt-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.lt-footer-bottom-links a {
    font-size: 0.83rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.lt-footer-bottom-links a:hover {
    opacity: 1;
}

.lt-footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lt-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 48px;
    height: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.lt-payment-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FEBB02;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 187, 2, 0.25);
}
.lt-payment-badge i {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
}
.lt-payment-badge:hover i {
    color: #FEBB02;
}

/* ============================================================
   5. UTILITIES
   ============================================================ */
.lt-main {
    min-height: 60vh;
}

.lt-container {
    max-width: var(--lt-container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   6. ANIMATIONS
   ============================================================ */
@keyframes lt-fade-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lt-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   7. RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
    .lt-hdr-explore {
        display: none;
    }

    .lt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .lt-hdr-burger {
        display: flex;
    }

    .lt-mobile-drawer {
        display: block;
    }

    .lt-hdr-inner {
        height: 62px;
        padding: 0 16px;
        gap: 6px;
    }

    .lt-hdr-logo img {
        height: 44px;
    }

    .lt-search-trigger,
    .lt-wishlist-btn,
    .lt-account-btn {
        display: none;
    }

    .lt-lang-code {
        display: none;
    }

    .lt-curr-btn .lt-curr-code {
        display: none;
    }

    .lt-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lt-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .lt-footer-payments {
        justify-content: center;
    }
}

@media (max-width:480px) {
    .lt-lang-grid {
        grid-template-columns: 1fr;
    }

    .lt-search-overlay {
        padding-top: 80px;
    }
}

/* ============================================================
   REGION BUTTON (header trigger)
   ============================================================ */
.lt-region-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1.5px solid rgba(1, 112, 185, 0.25);
    border-radius: 50px;
    background: rgba(1, 112, 185, 0.05);
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--lt-trans);
    font-family: inherit;
}

.lt-region-btn:hover {
    border-color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.1);
    color: var(--lt-primary);
}

.lt-region-btn[aria-expanded="true"] {
    border-color: var(--lt-primary);
    color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.08);
}

.lt-region-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lt-region-label {
    font-size: 0.83rem;
    letter-spacing: 0.3px;
}

.lt-region-btn .lt-chevron {
    font-size: 0.7rem;
    opacity: 0.45;
    transition: transform 0.25s;
}

.lt-region-btn[aria-expanded="true"] .lt-chevron {
    transform: rotate(180deg);
}

/* ============================================================
   REGION OVERLAY + PANEL
   ============================================================ */
.lt-region-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 20, 40, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
    animation: lt-fade-in 0.2s ease;
}

.lt-region-overlay.open {
    display: flex;
}

.lt-region-panel {
    width: min(720px, 94vw);
    max-height: calc(100vh - 120px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: lt-slide-up 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lt-fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes lt-slide-up {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Panel head */
.lt-region-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--lt-border);
    flex-shrink: 0;
}

.lt-region-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lt-dark);
}

.lt-region-panel-title i {
    color: var(--lt-primary);
    font-size: 1.1rem;
}

.lt-region-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--lt-light);
    color: var(--lt-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--lt-trans);
}

.lt-region-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Panel body */
.lt-region-panel-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Sections */
.lt-region-section-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--lt-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 14px;
}

.lt-region-section-title i {
    color: var(--lt-primary);
}

/* Language grid — 4 cols */
.lt-region-lang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Currency grid — 3 cols */
.lt-region-curr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* Shared item */
.lt-region-lang-item,
.lt-region-curr-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1.5px solid var(--lt-border);
    border-radius: var(--lt-r-md);
    background: #fff;
    color: var(--lt-dark);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
    font-family: inherit;
    position: relative;
    width: 100%;
}

.lt-region-lang-item:hover,
.lt-region-curr-item:hover {
    border-color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.04);
    color: var(--lt-primary);
}

.lt-region-lang-item.active,
.lt-region-curr-item.active {
    border-color: var(--lt-primary);
    background: linear-gradient(135deg, rgba(1, 112, 185, 0.08), rgba(1, 112, 185, 0.04));
    color: var(--lt-primary);
}

.lt-region-item-flag {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

.lt-region-item-name {
    flex: 1;
    font-size: 0.85rem;
}

.lt-region-item-code {
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 2px 6px;
    color: var(--lt-muted);
    flex-shrink: 0;
}

.lt-region-lang-item.active .lt-region-item-code,
.lt-region-curr-item.active .lt-region-item-code {
    background: rgba(1, 112, 185, 0.12);
    color: var(--lt-primary);
}

/* Check icon */
.lt-region-check {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    color: var(--lt-primary);
    opacity: 0;
    transition: opacity 0.15s;
}

.lt-region-lang-item.active .lt-region-check,
.lt-region-curr-item.active .lt-region-check {
    opacity: 1;
}

/* Panel foot */
.lt-region-panel-foot {
    padding: 18px 28px 24px;
    border-top: 1px solid var(--lt-border);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    background: var(--lt-light);
}

.lt-region-apply {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--lt-primary), var(--lt-primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(1, 112, 185, 0.35);
    transition: transform 0.18s, box-shadow 0.18s;
}

.lt-region-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(1, 112, 185, 0.45);
}

.lt-region-apply:active {
    transform: translateY(0);
}

.lt-region-note {
    font-size: 0.82rem;
    color: var(--lt-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width:640px) {
    .lt-region-lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lt-region-curr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lt-region-panel-head,
    .lt-region-panel-body,
    .lt-region-panel-foot {
        padding-left: 18px;
        padding-right: 18px;
    }

    .lt-region-panel-foot {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .lt-region-apply {
        justify-content: center;
    }
}

/* ── Selection Indicators ── */
.lt-region-lang-item .lt-region-check,
.lt-region-curr-item .lt-region-check {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--lt-primary);
    margin-left: auto;
}

/* ─── RTL Support ─────────────────────────────────────────── */
[dir="rtl"] .lt-chevron {
    margin-right: 6px;
    margin-left: 0;
    transform: rotate(0deg);
}

[dir="rtl"] .lt-region-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .lt-region-flag {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .lt-hdr-nav {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .lt-region-panel {
    left: auto;
    right: 0;
}

[dir="rtl"] .lt-region-modal-content {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .lt-region-check {
    right: auto;
    left: 20px;
}

[dir="rtl"] .lt-region-footer {
    flex-direction: row-reverse;
}

[dir="rtl"] .lt-account-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .lt-mega-menu {
    right: auto;
    left: 0;
    text-align: right;
}

[dir="rtl"] .lt-mega-column h4::after {
    left: auto;
    right: 0;
}

.lt-region-lang-item.active,
.lt-region-curr-item.active {
    border-color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.05);
    color: var(--lt-primary);
}

.lt-region-lang-item.active .lt-region-check,
.lt-region-curr-item.active .lt-region-check {
    opacity: 1;
    transform: scale(1);
}

.lt-region-panel-foot {
    padding: 20px 30px;
    background: #fafafa;
    border-top: 1px solid var(--lt-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lt-region-note {
    font-size: 13px;
    color: var(--lt-muted);
    margin: 0;
}

.lt-region-apply {
    background: var(--lt-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(1, 112, 185, 0.2);
}

.lt-region-apply:hover {
    background: var(--lt-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 112, 185, 0.3);
}

/* ============================================================
   ACCOUNT & LOGIN UI
   ============================================================ */
.lt-hdr-user-wrap {
    position: relative;
}

.lt-account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    overflow: hidden;
    animation: lt-modal-in 0.3s ease;
}

.lt-account-dropdown.open {
    display: block;
}

.lt-acc-header {
    padding: 20px;
    background: #fafafa;
    border-bottom: 1px solid var(--lt-border);
    display: flex;
    flex-direction: column;
}

.lt-acc-header strong {
    font-size: 1rem;
    color: var(--lt-dark);
}

.lt-acc-header span {
    font-size: 0.8rem;
    color: var(--lt-muted);
}

.lt-acc-menu {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.lt-acc-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--lt-dark);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
}

.lt-acc-menu li a:hover {
    background: rgba(1, 112, 185, 0.06);
    color: var(--lt-primary);
}

.lt-acc-menu li a i {
    color: var(--lt-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.lt-acc-logout a {
    color: #ef4444 !important;
}

.lt-acc-logout a:hover {
    background: rgba(239, 68, 68, 0.06) !important;
}

.lt-acc-logout a i {
    color: #ef4444 !important;
}

/* ============================================================
   LOGIN MODAL OVERLAY
   ============================================================ */
.lt-login-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lt-login-overlay.open {
    display: flex;
}

.lt-login-panel {
    position: relative;
    width: min(450px, 100%);
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    animation: lt-modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lt-login-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.lt-login-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

.lt-login-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lt-login-brand img {
    height: 45px;
    width: auto;
}

.lt-login-brand-text {
    display: flex;
    flex-direction: column;
}

.lt-login-brand-text strong {
    font-size: 1.3rem;
    color: var(--lt-primary);
    line-height: 1.2;
}

.lt-login-brand-text span {
    font-size: 0.85rem;
    color: #64748b;
}

.lt-login-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.lt-login-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lt-login-tab.active {
    background: #fff;
    color: var(--lt-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lt-auth-tab-content {
    display: none;
}

.lt-auth-tab-content.active {
    display: block;
}

.lt-form-group {
    position: relative;
    margin-bottom: 15px;
}

.lt-form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.lt-form-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1.5px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.lt-form-group input:focus {
    border-color: var(--lt-primary);
    box-shadow: 0 0 0 4px rgba(1, 112, 185, 0.1);
}

.lt-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.lt-form-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    cursor: pointer;
}

.lt-form-options a {
    color: var(--lt-primary);
    text-decoration: none;
    font-weight: 600;
}

.lt-auth-submit {
    height: 52px;
    font-size: 1.05rem;
}

.lt-auth-submit.loading span {
    display: none;
}

.lt-auth-submit.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lt-spin 0.6s linear infinite;
}

@keyframes lt-spin {
    to {
        transform: rotate(360deg);
    }
}

.lt-auth-alert {
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.lt-auth-alert.error {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
}

.lt-auth-alert.success {
    background: #f0fdf4;
    color: #22c55e;
    border: 1px solid #dcfce7;
}

.lt-auth-note {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* Google SSO */
.lt-social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px;
    border: 1.5px solid var(--lt-border);
    border-radius: 50px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lt-dark);
    text-decoration: none;
    transition: var(--lt-trans);
}

.lt-social-login-btn:hover {
    border-color: var(--lt-primary);
    background: rgba(1, 112, 185, 0.03);
}

/* Responsive */
@media (max-width:480px) {
    .lt-login-panel {
        padding: 28px 20px 24px;
    }

    .lt-region-lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Hero Animations ── */
.lt-hero-content>* {
    opacity: 0;
    transform: translateY(20px);
    animation: lt-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lt-hero-badge {
    animation-delay: 0.1s;
}

.lt-hero-title {
    animation-delay: 0.2s;
}

.lt-hero-desc {
    animation-delay: 0.3s;
}

.lt-hero-search {
    animation-delay: 0.4s;
}

.lt-hero-proof {
    animation-delay: 0.5s;
}

@keyframes lt-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lt-hero-bg img {
    animation: lt-zoom-slow 20s linear infinite alternate;
}

@keyframes lt-zoom-slow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.lt-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: #000;
    padding-top: calc(var(--lt-hdr-h) + 60px);
    /* Pushed down more */
}

.lt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.lt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.lt-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--lt-container);
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.lt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(254, 187, 2, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 4px 0 28px;
    border: 1px solid rgba(254, 187, 2, 0.25);
    color: var(--lt-accent);
}

.lt-hero-badge i {
    font-size: 1rem;
}

.lt-hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 850px;
    letter-spacing: -1px;
}

.lt-hero-desc {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    opacity: 0.95;
    max-width: 650px;
    margin-bottom: 48px;
    line-height: 1.5;
}

/* ── Hero Search (Floating Glass) ── */
.lt-hero-search {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 980px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lt-hero-search-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 24px;
    position: relative;
    min-width: 0;
}

.lt-hero-search-group:not(:last-of-type)::after {
    display: none;
}

.lt-hero-search-group label {
    display: none;
}

.lt-hero-search-group .lt-inp-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lt-hero-search-group .lt-inp-wrap i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.lt-hero-search-group input,
.lt-hero-search-group select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    outline: none;
    width: 100%;
    cursor: pointer;
    padding: 0;
}

.lt-hero-search-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lt-hero-search-btn {
    background: linear-gradient(135deg, var(--lt-primary), var(--lt-primary-dark));
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--lt-trans);
    box-shadow: 0 12px 24px -6px rgba(1, 112, 185, 0.6);
    flex-shrink: 0;
}

.lt-hero-search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -6px rgba(1, 112, 185, 0.7);
}

/* ── Social Proof ── */
.lt-hero-proof {
    margin-top: 54px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.lt-proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
}

.lt-proof-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--lt-accent);
}

.lt-proof-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 980px) {
    .lt-hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .lt-hero-search {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        border-radius: 32px;
    }

    .lt-hero-search-group:not(:last-of-type)::after {
        display: none;
    }

    .lt-hero-search-group {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 16px;
        padding: 0 0 16px;
    }

    .lt-hero-title {
        font-size: 3.2rem;
    }

    .lt-hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ── WooCommerce My Account Styling ── */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--lt-border);
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 5px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--lt-dark);
    font-weight: 700;
    transition: all 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--lt-primary);
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--lt-border);
}

/* ── Floating Actions Hub (Consolidated) ── */
/* ── Floating Actions ── */
.lt-float-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.lt-whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none !important;
}

.lt-whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Tooltip */
.lt-wa-tooltip {
    position: absolute;
    right: 80px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lt-wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
}

.lt-whatsapp-float:hover .lt-wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
.lt-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    z-index: -1;
    animation: lt-wa-pulse 2s infinite;
}

@keyframes lt-wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.lt-float-btn--top {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lt-dark);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.lt-float-btn--top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lt-float-btn--top:hover {
    background: var(--lt-primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .lt-float-actions {
        right: 20px;
        bottom: 20px;
    }
}





/* ── Stats Counter ── */
.lt-stats {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.lt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.lt-stat-item i {
    font-size: 2.8rem;
    color: var(--lt-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.lt-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lt-dark);
    margin-bottom: 10px;
}

.lt-stat-item p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lt-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── About Us ── */
.lt-about {
    padding: 120px 0;
    background: #fafafa;
    overflow: hidden;
}

.lt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lt-about-image {
    position: relative;
}

.lt-about-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.lt-about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--lt-primary);
    color: #fff;
    padding: 35px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(1, 112, 185, 0.3);
}

.lt-about-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.lt-about-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.lt-about-text .lt-sub {
    color: var(--lt-primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.lt-about-text .lt-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lt-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.lt-about-text .lt-desc {
    font-size: 1.15rem;
    color: var(--lt-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.lt-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.lt-about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--lt-dark);
}

.lt-about-list li i {
    color: var(--lt-primary);
    font-size: 1.2rem;
}

.lt-about-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lt-about-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lt-about-contact i {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--lt-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.lt-about-contact div span {
    display: block;
    font-size: 0.85rem;
    color: var(--lt-muted);
    font-weight: 600;
}

.lt-about-contact div strong {
    font-size: 1.1rem;
    color: var(--lt-dark);
    font-weight: 800;
}

@media (max-width: 1024px) {
    .lt-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lt-about-text .lt-title {
        font-size: 2.5rem;
    }

    .lt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lt-about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .lt-stat-num {
        font-size: 2.2rem;
    }

    .lt-about-badge {
        right: 0;
        bottom: 0;
        padding: 25px;
        border-radius: 25px;
    }
}

/* ============================================================
   8. LEGAL & POLICIES PAGE
   ============================================================ */
.lt-legal-page {
    background-color: var(--lt-light);
    padding-bottom: 100px;
}


.lt-legal-hero-custom {
    margin-bottom: 0;
    padding-bottom: 180px;
}

/* Global Overlap Support */
.lt-overlap-content {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}



.lt-legal-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.lt-glass-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.lt-legal-content {
    line-height: 1.8;
    color: #444;
}

.lt-legal-content h2 {
    font-size: 1.8rem;
    color: var(--lt-dark);
    margin: 40px 0 20px;
    font-weight: 800;
}

.lt-legal-content h3 {
    font-size: 1.4rem;
    color: var(--lt-primary);
    margin: 30px 0 15px;
    font-weight: 700;
}

.lt-legal-content p {
    margin-bottom: 20px;
}

.lt-legal-content ul,
.lt-legal-content ol {
    margin-bottom: 25px;
    padding-inline-start: 25px;
}

.lt-legal-content li {
    margin-bottom: 10px;
}

.lt-legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--lt-muted);
    font-weight: 600;
}

/* Sidebar Nav */
.lt-sticky-sidebar {
    position: sticky;
    top: 110px;
    padding: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--lt-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lt-legal-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.lt-legal-nav li {
    margin-bottom: 8px;
}

.lt-legal-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--lt-muted);
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.lt-legal-nav a i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--lt-primary);
    opacity: 0.6;
}

.lt-legal-nav a:hover {
    background: rgba(1, 112, 185, 0.05);
    color: var(--lt-primary);
}

.lt-legal-nav a.active {
    background: var(--lt-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(1, 112, 185, 0.2);
}

.lt-legal-nav a.active i {
    color: #fff;
    opacity: 1;
}

.sidebar-contact {
    background: rgba(1, 112, 185, 0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.sidebar-contact h4 {
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--lt-primary);
}

.sidebar-contact p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Animations */
.animate-up {
    animation: lt-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@media (max-width: 992px) {
    .lt-legal-layout {
        grid-template-columns: 1fr;
    }

    .lt-legal-hero {
        padding: 120px 0 100px;
    }

    .lt-legal-title {
        font-size: 2.2rem;
    }

    .lt-glass-card {
        padding: 30px;
    }
}

/* Footer Payment Icons Fix */
.lt-footer-payments i {
    opacity: 0.8;
    cursor: help;
}

.lt-footer-payments i.fa-cc-visa {
    color: #1a1f71;
}

.lt-footer-payments i.fa-cc-mastercard {
    color: #eb001b;
}

.lt-footer-payments i.fa-cc-paypal {
    color: #003087;
}

.lt-footer-payments i.fa-cc-stripe {
    color: #6772e5;
}


/* ============================================================
   10. ABOUT US PAGE
   ============================================================ */
.lt-about-page {
    padding-bottom: 80px;
    background: var(--lt-light);
}

.lt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.lt-about-text {
    background: var(--lt-white);
    padding: 50px;
    border-radius: var(--lt-r-lg);
    box-shadow: var(--lt-sh-md);
}

.lt-about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    color: var(--lt-dark);
}

.lt-about-text p {
    line-height: 1.8;
    color: var(--lt-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.lt-glass-card-img {
    border-radius: var(--lt-r-lg);
    overflow: hidden;
    box-shadow: var(--lt-sh-lg);
    position: relative;
    height: 500px;
}

.lt-img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

/* Vision & Mission */
.lt-vision-mission {
    padding: 80px 0;
}

.lt-vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lt-vm-grid .lt-glass-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.lt-icon-box {
    width: 70px;
    height: 70px;
    background: var(--lt-primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(1, 112, 185, 0.2);
}

.lt-vm-grid h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--lt-dark);
}

.lt-vm-grid p {
    color: var(--lt-muted);
    line-height: 1.6;
}

/* Stats Strip */
.lt-stats-strip {
    background: var(--lt-dark);
    color: #fff;
    padding: 60px 0;
}

.lt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.lt-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lt-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lt-accent);
}

.lt-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ============================================================
   11. CONTACT US PAGE
   ============================================================ */
.lt-contact-page {
    padding-bottom: 80px;
    background: var(--lt-light);
}

.lt-contact-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.lt-contact-info .lt-glass-card {
    padding: 50px;
    height: 100%;
    background: var(--lt-white);
}

.lt-contact-info h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
}

.lt-contact-info p {
    color: var(--lt-muted);
    margin-bottom: 40px;
}

.lt-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lt-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lt-icon-sm {
    width: 46px;
    height: 46px;
    background: rgba(1, 112, 185, 0.1);
    color: var(--lt-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lt-method-text {
    display: flex;
    flex-direction: column;
}

.lt-method-text strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--lt-muted);
    margin-bottom: 4px;
}

.lt-method-text a,
.lt-method-text span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lt-dark);
}

.lt-social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.lt-social-links .social-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--lt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lt-trans);
}

.lt-social-links .social-icon:hover {
    background: var(--lt-primary);
    color: #fff;
    border-color: var(--lt-primary);
    transform: translateY(-3px);
}

/* Contact Form */
.lt-contact-form-wrap .lt-glass-card {
    padding: 50px;
    background: var(--lt-white);
}

.lt-form-placeholder {
    padding: 40px;
    background: #f9fafb;
    border: 2px dashed #e5e7eb;
    border-radius: var(--lt-r-md);
    text-align: center;
}

.lt-dummy-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lt-dummy-field {
    height: 45px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
}

.lt-dummy-field.area {
    height: 120px;
}

.lt-dummy-btn {
    width: 150px;
    height: 50px;
    background: var(--lt-accent);
    border-radius: 50px;
    align-self: flex-start;
}

.lt-map-section {
    margin-top: 60px;
}

.lt-glass-card.no-padding {
    padding: 0;
}

.overflow-hidden {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    .lt-about-grid,
    .lt-contact-layout {
        grid-template-columns: 1fr;
    }

    .lt-about-image {
        order: -1;
    }

    .lt-glass-card-img {
        height: 350px;
    }

    .lt-vm-grid {
        grid-template-columns: 1fr;
    }

    .lt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {

    .lt-about-text,
    .lt-contact-info .lt-glass-card,
    .lt-contact-form-wrap .lt-glass-card {
        padding: 30px 20px;
    }

    .lt-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   11. WHY CHOOSE US & PARTNERS (PREMIUM RAIQ)
   ============================================================ */
.lt-why-choose {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.lt-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(1, 112, 185, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(254, 187, 2, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.lt-why-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 60px !important;
}

.lt-why-item {
    text-align: center !important;
    padding: 60px 40px !important;
    border-radius: 40px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
}

.lt-why-item:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 40px 80px rgba(1, 112, 185, 0.1) !important;
    border-color: var(--lt-primary) !important;
}

.lt-why-icon {
    width: 100px !important;
    height: 100px !important;
    background: rgba(1, 112, 185, 0.06) !important;
    color: var(--lt-primary) !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 30px !important;
    font-size: 40px !important;
    transition: all 0.5s ease !important;
}

.lt-why-item:hover .lt-why-icon {
    background: var(--lt-primary) !important;
    color: #fff !important;
    transform: rotateY(180deg);
}

.lt-why-item h3 {
    font-size: 24px !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    color: var(--lt-dark) !important;
    letter-spacing: -0.5px !important;
}

.lt-why-item p {
    color: var(--lt-muted) !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    font-size: 1.05rem !important;
}

/* Partners Row */
.lt-partners-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-top: 80px !important;
}

.lt-partner-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lt-dark);
    padding: 20px 40px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lt-partner-logo:hover {
    opacity: 1;
    background: #fff;
    border-color: var(--lt-primary);
    color: var(--lt-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   12. PREMIUM TRANSFER RAIQ CARDS
   ============================================================ */
.lt-transfer-raiq-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 60px !important;
}

.lt-transfer-raiq-card {
    background: #fff !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    border: 1px solid rgba(1, 112, 185, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    display: flex !important;
    flex-direction: column !important;
}

.lt-transfer-raiq-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 50px 100px rgba(0, 34, 68, 0.15) !important;
    border-color: var(--lt-accent) !important;
}

.lt-tr-header {
    padding: 40px 30px;
    text-align: center;
    background: rgba(1, 112, 185, 0.02);
    border-bottom: 1px solid rgba(1, 112, 185, 0.05);
}

.lt-tr-dest-badge {
    display: inline-block;
    background: var(--lt-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(1, 112, 185, 0.3);
}

.lt-tr-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--lt-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.lt-tr-body {
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lt-tr-amount {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: var(--lt-dark) !important;
    display: block !important;
    margin-bottom: 10px !important;
    line-height: 1;
}

.lt-tr-per {
    font-size: 1rem;
    color: var(--lt-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lt-tr-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    width: 100%;
}

.lt-tr-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-weight: 700;
    color: var(--lt-dark);
}

.lt-tr-features li:last-child {
    border-bottom: none;
}

.lt-tr-features li i {
    color: var(--lt-accent);
    font-size: 1.2rem;
}

.lt-tr-footer {
    padding: 0 40px 40px;
}

.lt-tr-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d084 0%, #00a368 100%);
    color: #fff !important;
    padding: 16px 28px;
    border-radius: var(--lt-r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 208, 132, 0.2);
    text-decoration: none;
}

.lt-tr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.35);
    background: linear-gradient(135deg, #00b975 0%, #008f5a 100%);
}

.lt-tr-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--lt-muted);
    line-height: 1.5;
}

.lt-tr-note strong {
    color: var(--lt-primary);
}

/* Transfers Listing Page Specific */
.lt-transfers-listing {
    background: #f8fafc;
    padding-bottom: 120px;
    position: relative;
}

/* ── Utility: Overlap Content ── */
.lt-overlap-content {
    margin-top: -140px !important;
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
    .lt-overlap-content {
        margin-top: -80px !important;
    }

    .lt-transfer-raiq-grid {
        grid-template-columns: 1fr !important;
    }

    .lt-why-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Luxury Contact Section ── */
.lt-contact-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #0a192f 0%, #020c1b 100%);
    position: relative;
    overflow: hidden;
}

.lt-contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.lt-contact-section .lt-sub {
    color: var(--lt-accent);
    background: rgba(233, 69, 96, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.lt-contact-section .lt-title {
    color: #fff;
    margin: 25px 0;
    font-size: 3rem;
    font-weight: 800;
}

.lt-contact-section .lt-contact-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.lt-info-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lt-info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lt-info-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lt-accent);
    font-size: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lt-info-item:hover .lt-info-icon {
    background: var(--lt-accent);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.lt-info-item strong {
    color: #fff;
    display: block;
    font-size: 1.25rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.lt-info-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.lt-contact-form-card-wrap {
    position: relative;
    z-index: 2;
}

.lt-contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.lt-contact-form input,
.lt-contact-form select,
.lt-contact-form textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    /* Consistent padding */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
    display: block;
}

.lt-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f5576c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    line-height: 1.2;
}

.lt-contact-form .lt-inp-group {
    position: relative;
    width: 100%;
    margin: 0;
}

.lt-contact-form .lt-inp-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    pointer-events: none;
    /* Crucial: clicks go through to the input */
    z-index: 5;
}

.lt-contact-form .lt-inp-group.textarea i {
    top: 25px;
    transform: none;
}

.lt-contact-form input:focus,
.lt-contact-form select:focus,
.lt-contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f5576c;
    box-shadow: 0 0 0 5px rgba(245, 87, 108, 0.2);
}

.lt-contact-form select option {
    background: #0a192f;
    color: #fff;
    padding: 15px;
}

.lt-contact-form .lt-btn--primary {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    /* Brighter gradient */
    border-radius: 15px;
    height: 65px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .lt-contact-section .lt-title {
        font-size: 2.5rem;
    }

    .lt-contact-form-card {
        padding: 30px;
    }
}

/* ── Newsletter Divider ── */
.lt-newsletter-section {
    padding: 80px 0;
    background: #fdfdfd;
    /* Very light background to break the darkness */
    position: relative;
    z-index: 10;
}

.lt-newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 50px 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.lt-news-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lt-news-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 52, 96, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lt-primary);
    font-size: 28px;
}

.lt-news-text h3 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lt-primary);
}

.lt-news-text p {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
}

.lt-newsletter-form {
    flex: 1;
    max-width: 500px;
}

.lt-news-input-wrap {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.lt-news-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    color: var(--lt-primary);
    outline: none;
}

.lt-news-input-wrap .lt-btn {
    padding: 0 30px;
    height: 50px;
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .lt-newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .lt-news-content {
        flex-direction: column;
    }

    .lt-newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .lt-news-input-wrap {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
    }

    .lt-news-input-wrap input {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 15px;
        margin-bottom: 10px;
        padding: 18px;
    }

    .lt-news-input-wrap .lt-btn {
        width: 100%;
    }
}

/* ── Search Page (Premium Layout) ── */
.lt-search-main {
    padding-bottom: 120px;
}

.lt-search-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.lt-search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lt-search-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.lt-search-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.lt-search-thumb {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.lt-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lt-search-card:hover .lt-search-thumb img {
    transform: scale(1.1);
}

.lt-search-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--lt-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.lt-search-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lt-search-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.lt-search-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.lt-search-title a {
    color: var(--lt-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.lt-search-title a:hover {
    color: var(--lt-primary);
}

.lt-search-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.lt-search-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.lt-read-more-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lt-dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.lt-read-more-link i {
    color: var(--lt-primary);
    transition: transform 0.3s;
}

.lt-read-more-link:hover {
    color: var(--lt-primary);
}

.lt-read-more-link:hover i {
    transform: translateX(5px);
}

/* Pagination Refined */
.lt-pagination {
    margin-top: 50px;
}

.lt-pagination .nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.lt-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: var(--lt-dark);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.lt-pagination .page-numbers:hover {
    background: var(--lt-primary-light);
    color: var(--lt-primary);
    border-color: var(--lt-primary-light);
}

.lt-pagination .page-numbers.current {
    background: var(--lt-primary);
    color: #fff;
    border-color: var(--lt-primary);
    box-shadow: 0 8px 20px rgba(1, 112, 185, 0.25);
}

/* Sidebar */
.lt-search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lt-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lt-widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--lt-primary-light);
    position: relative;
}

.lt-sidebar-search {
    position: relative;
}

.lt-sidebar-search input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 55px;
    border-radius: 15px;
    border: 1.5px solid #e2e8f0;
    outline: none;
    transition: border-color 0.3s;
}

.lt-sidebar-search input:focus {
    border-color: var(--lt-primary);
}

.lt-sidebar-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--lt-primary);
    font-size: 1.1rem;
    cursor: pointer;
}

.lt-mini-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lt-mini-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    align-items: center;
    transition: transform 0.3s;
}

.lt-mini-post:hover {
    transform: translateX(5px);
}

.lt-mini-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.lt-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-mini-info h4 {
    font-size: 0.95rem;
    color: var(--lt-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.lt-mini-info span {
    font-size: 0.8rem;
    color: var(--lt-primary);
    font-weight: 700;
}

.lt-widget-contact {
    background: linear-gradient(135deg, var(--lt-primary) 0%, var(--lt-primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.lt-widget-contact-inner i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.lt-widget-contact h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.lt-widget-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.lt-widget-contact .lt-btn {
    background: #fff;
    color: var(--lt-primary) !important;
}

/* No Results */
.lt-no-results-card {
    background: #fff;
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.lt-no-results-icon {
    font-size: 5rem;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.lt-no-results-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lt-no-results-card p {
    color: #64748b;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .lt-search-layout {
        grid-template-columns: 1fr;
    }

    .lt-search-thumb {
        width: 250px;
    }
}

/* ── Agency Credit Styling ── */
.lt-footer-sep {
    margin: 0 15px;
    opacity: 0.3;
    }

    .lt-developer-credit {
        display: block;
        margin-top: 5px;
    }
}

/* ── Payment Icons Styling ── */
.lt-footer-payments {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lt-footer-payments i {
    font-size: 1.6rem;
    color: var(--lt-primary);
    /* The Golden/Yellow color */
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.lt-footer-payments i:hover {
    background: var(--lt-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
/* -- Mobile Header Final Fixes -- */
@media (max-width: 768px) {
    .lt-hdr {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.4) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
    .lt-hdr-inner {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    .lt-hdr-user-wrap, .lt-user-avatar-btn, .lt-login-btn, .lt-hdr-actions .lt-hdr-user-wrap {
        display: none !important;
    }
}

/* ============================================================
   15. PREMIUM GLOBAL RAIQ CARD & GRID (TOURS & TRANSFERS)
   ============================================================ */
.lt-raiq-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.lt-raiq-card {
    background: #fff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.lt-raiq-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(1, 112, 185, 0.12) !important;
    border-color: rgba(1, 112, 185, 0.15) !important;
}

.lt-raiq-card-img {
    height: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    background: #f1f5f9 !important;
}

.lt-raiq-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lt-raiq-card:hover .lt-raiq-card-img img {
    transform: scale(1.1) !important;
}

.lt-raiq-card-body {
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.lt-raiq-card-body h3 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--lt-dark) !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.4 !important;
    min-height: 50px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.lt-raiq-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 20px !important;
    border-top: 1px solid #f1f5f9 !important;
    margin-top: auto !important;
}

.lt-raiq-price {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.lt-raiq-price span {
    font-size: 0.75rem !important;
    color: var(--lt-muted) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.5px !important;
}

.lt-raiq-price strong {
    font-size: 1.3rem !important;
    color: var(--lt-dark) !important;
    font-weight: 900 !important;
}

.lt-raiq-card:hover .lt-raiq-price strong {
    color: var(--lt-primary) !important;
}

/* Responsive configurations */
@media (max-width: 1024px) {
    .lt-raiq-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .lt-raiq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .lt-raiq-card-img {
        height: 180px !important;
    }
}

