/* ==========================================================
   MADURAI TRAVELS - Main Stylesheet
   Production-ready, clean, no dead code
   ========================================================== */


/* ----------------------------------------------------------
   1. GLOBAL / BASE
   ---------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding-top: 40px;

}


/* ----------------------------------------------------------
   2. NAVBAR
   ---------------------------------------------------------- */

.nav-link {
    font-size: 0.9rem;
    color: #333 !important;
}

.nav-link.active {
    color: #0d6efd !important;
}

/* Desktop: spacing between nav links */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 30px !important;
    }
}

/* Mobile: nav link borders for separation */
@media (max-width: 991px) {
    .navbar-brand {
        margin-right: 0 !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 15px !important;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f8f9fa;
    }
}

/* Dropdown on hover (desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Hide the hamburger toggler icon completely */
.navbar-toggle-hidden {
    opacity: 0;
    pointer-events: none; /* Not clickable */
    visibility: hidden;
}

/* Logo always centered on mobile */
@media (max-width: 991px) {
    .navbar-brand.mx-auto {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.dropdown-item {
    padding-top: 12px;
    padding-bottom: 12px;
}


/* ----------------------------------------------------------
   3. LOGO
   ---------------------------------------------------------- */

.main-logo {
    height: 48px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .main-logo {
        height: 60px;
    }
}


/* ----------------------------------------------------------
   4. SERVICE CARDS
   ---------------------------------------------------------- */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 20px !important;
    border: none !important;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Mobile service card layout */
@media (max-width: 767px) {
    .service-card {
        padding: 15px 5px !important;
        min-height: 106px;
        justify-content: center;
        border-radius: 15px !important;
    }

    .card-icon {
        width: 35px !important;
        margin-bottom: 8px;
    }

    .service-title {
        font-size: 12px;
        text-transform: uppercase;
        color: #0066cc !important;
        letter-spacing: 2.8px;
        padding-top: 10px;
    }
}

/* Desktop service card layout */
@media (min-width: 768px) {
    .service-card {
        min-height: 110px;
    }

    .card-icon {
        width: 55px;
    }

    .service-title {
        font-size: 1.1rem;
        color: #333 !important;
        text-transform: uppercase;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}


/* ----------------------------------------------------------
   5. BANNER SECTIONS
   ---------------------------------------------------------- */

.banner-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .banner-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}




/* ----------------------------------------------------------
   6. TOUR PACKAGE CARDS
   ---------------------------------------------------------- */

.package-img {
    object-fit: cover;
}

/* Two-line title clamp */
.card-title-limit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    /* .package-img {
        height: 130px;
    } */

    .card-body {
        padding: 10px !important;
    }

    .card-body p,
    .card-body span {
        font-size: 0.7rem !important;
    }

    .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* ----------------------------------------------------------
   TOUR PACKAGE IMAGE — Mobile left-cut fix
   Add this to your style.css
   ---------------------------------------------------------- */




/* ----------------------------------------------------------
   7. TRAVEL DESTINATIONS SLIDER
   ---------------------------------------------------------- */

.slider-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 8px;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .slider-img {
        height: 150px !important;
        padding: 5px !important;
    }

    .slider-item .card-body p {
        font-size: 0.75rem !important;
        line-height: 1.2;
    }

    .slider-item {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}




/* ==========================================================
   FOOTER DARK — Updated CSS
   Add/replace in your style.css
   ========================================================== */


/* ----------------------------------------------------------
   WRAPPER
   ---------------------------------------------------------- */

.footer-dark {
    background-color: #0f1b2d;
    color: #c8d6e5;
}

.footer-main-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


/* ----------------------------------------------------------
   LOGO
   ---------------------------------------------------------- */

.footer-logo {
    height: 64px;
    object-fit: contain;
    background: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    display: block;
}


/* ----------------------------------------------------------
   ABOUT TEXT
   ---------------------------------------------------------- */

.footer-about {
    font-size: 0.875rem;
    color: #8fa3b8;
    line-height: 1.75;
    margin-bottom: 20px;
    margin-top: 14px;
}


/* ----------------------------------------------------------
   WHATSAPP CTA BUTTON (prominent, below about text)
   ---------------------------------------------------------- */

.footer-wa-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a3a1a, #1e4d1e);
    border: 1.5px solid rgba(37, 211, 102, 0.4);
    border-radius: 14px;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.footer-wa-cta:hover {
    background: linear-gradient(135deg, #1a3a1a, #1e4d1e);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.footer-wa-cta-icon {
    font-size: 2rem;
    color: #25D366;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.footer-wa-cta:hover .footer-wa-cta-icon {
    color: #fff;
}

.footer-wa-cta div {
    display: flex;
    flex-direction: column;
}

.footer-wa-cta-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #25D366;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-wa-cta-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-wa-cta:hover .footer-wa-cta-label {
    color: rgba(255, 255, 255, 0.85);
}


/* ----------------------------------------------------------
   COLUMN TITLES + DIVIDER
   ---------------------------------------------------------- */

.footer-col-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-divider {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #25D366);
    border-radius: 4px;
    margin-bottom: 16px;
}


/* ----------------------------------------------------------
   DARK NAV LINKS
   ---------------------------------------------------------- */

.footer-dark-links li { margin-bottom: 9px; }

.footer-dark-links a {
    color: #8fa3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-dark-links a:hover {
    color: #0ea5e9;
    padding-left: 5px;
}


/* ----------------------------------------------------------
   ADDRESS
   ---------------------------------------------------------- */

.footer-address-dark li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #8fa3b8;
    line-height: 1.6;
}

.footer-address-dark li i {
    color: #0ea5e9;
    font-size: 0.875rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-address-dark a {
    color: #8fa3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-address-dark a:hover { color: #0ea5e9; }


/* ----------------------------------------------------------
   BOTTOM STRIP
   ---------------------------------------------------------- */

.footer-bottom-strip {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-got-q {
    font-size: 0.85rem;
    color: #c8d6e5;
    margin: 0;
    line-height: 1.5;
}

.footer-got-q i { color: #0ea5e9; }

.footer-got-sub {
    color: #8fa3b8;
    font-weight: 400;
}

.footer-follow-label {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}


/* ----------------------------------------------------------
   SOCIAL ICONS — All colored, Threads & X fixed
   ---------------------------------------------------------- */

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Individual brand colors */
.footer-social-icon.fb { background: #1877F2; }
.footer-social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* Threads — use brand purple instead of black */
.footer-social-icon.th { background: #5f4b8b; }

/* X Twitter — use dark navy/slate instead of pure black */
.footer-social-icon.tw { background: #2d3a4a; border: 1px solid rgba(255,255,255,0.15); }

.footer-social-icon.li { background: #0A66C2; }

/* Hover glows */
.footer-social-icon.fb:hover { box-shadow: 0 4px 14px rgba(24,119,242,0.55); }
.footer-social-icon.ig:hover { box-shadow: 0 4px 14px rgba(220,39,67,0.55); }
.footer-social-icon.th:hover { box-shadow: 0 4px 14px rgba(95,75,139,0.55); background: #7b61b5; }
.footer-social-icon.tw:hover { box-shadow: 0 4px 14px rgba(100,120,150,0.55); background: #3d4f63; }
.footer-social-icon.li:hover { box-shadow: 0 4px 14px rgba(10,102,194,0.55); }


/* ----------------------------------------------------------
   COPYRIGHT
   ---------------------------------------------------------- */

.footer-copyright {
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #5a7a99;
    margin: 0;
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 767px) {
    .footer-logo { height: 52px; }

    .footer-wa-cta {
        max-width: 100%;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-got-sub { display: none; }
    .footer-follow-label { display: none; }
}
/* ----------------------------------------------------------
   10. BACK TO TOP BUTTON
   ---------------------------------------------------------- */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Shown via JS on scroll */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 50%;
}

/* ==========================================================
   TRAVEL HACKS & INSIGHTS — Production CSS
   Clean, no duplicates. Paste into style.css
   ========================================================== */


/* ----------------------------------------------------------
   1. SECTION WRAPPER
   ---------------------------------------------------------- */

.travel-hacks-section {
    background: #f4f7fb;
    border-top: 1px solid #e5e9f0;
    border-bottom: 1px solid #e5e9f0;
}


/* ----------------------------------------------------------
   2. SECTION HEADING
   ---------------------------------------------------------- */

.hack-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #00a3e0);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
}

.hack-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hack-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .hack-section-title {
        font-size: 1.45rem;
    }
    .hack-section-subtitle {
        font-size: 0.875rem;
    }
}


/* ----------------------------------------------------------
   3. LINK WRAPPER
   ---------------------------------------------------------- */

.hack-link {
    text-decoration: none;
    display: block;
    height: 100%;
}


/* ----------------------------------------------------------
   4. CARD BASE
   ---------------------------------------------------------- */

.hack-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 18px 20px 18px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    /* Top colored accent bar */
}

.hack-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.hack-link:hover .hack-card {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hack-link:hover .hack-card::after {
    opacity: 1;
}


/* ----------------------------------------------------------
   5. COLOR THEMES
   ---------------------------------------------------------- */

/* Yellow / Warm */
.hack-yellow {
    background: linear-gradient(145deg, #fffbeb, #fef3c7);
    border-color: #fde68a;
}
.hack-yellow::after { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.hack-yellow .hack-title { color: #92400e; }
.hack-yellow .hack-desc  { color: #a16207; }
.hack-yellow .hack-arrow { color: #d97706; }
.hack-link:hover .hack-yellow { border-color: #f59e0b; box-shadow: 0 16px 40px rgba(245,158,11,0.18); }

/* Green / Fresh */
.hack-green {
    background: linear-gradient(145deg, #f0fdf4, #dcfce7);
    border-color: #86efac;
}
.hack-green::after { background: linear-gradient(90deg, #16a34a, #4ade80); }
.hack-green .hack-title { color: #14532d; }
.hack-green .hack-desc  { color: #166534; }
.hack-green .hack-arrow { color: #16a34a; }
.hack-link:hover .hack-green { border-color: #22c55e; box-shadow: 0 16px 40px rgba(34,197,94,0.18); }

/* Blue / Cool */
.hack-blue {
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
}
.hack-blue::after { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.hack-blue .hack-title { color: #1e3a8a; }
.hack-blue .hack-desc  { color: #1d4ed8; }
.hack-blue .hack-arrow { color: #2563eb; }
.hack-link:hover .hack-blue { border-color: #3b82f6; box-shadow: 0 16px 40px rgba(59,130,246,0.18); }

/* Mint / Teal */
.hack-mint {
    background: linear-gradient(145deg, #f0fdfa, #ccfbf1);
    border-color: #5eead4;
}
.hack-mint::after { background: linear-gradient(90deg, #0d9488, #2dd4bf); }
.hack-mint .hack-title { color: #134e4a; }
.hack-mint .hack-desc  { color: #0f766e; }
.hack-mint .hack-arrow { color: #0d9488; }
.hack-link:hover .hack-mint { border-color: #14b8a6; box-shadow: 0 16px 40px rgba(20,184,166,0.18); }

/* Peach / Orange */
.hack-peach {
    background: linear-gradient(145deg, #fff7ed, #ffedd5);
    border-color: #fdba74;
}
.hack-peach::after { background: linear-gradient(90deg, #ea580c, #fb923c); }
.hack-peach .hack-title { color: #7c2d12; }
.hack-peach .hack-desc  { color: #9a3412; }
.hack-peach .hack-arrow { color: #ea580c; }
.hack-link:hover .hack-peach { border-color: #f97316; box-shadow: 0 16px 40px rgba(249,115,22,0.18); }

/* Lavender / Purple */
.hack-lavender {
    background: linear-gradient(145deg, #faf5ff, #ede9fe);
    border-color: #c4b5fd;
}
.hack-lavender::after { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.hack-lavender .hack-title { color: #4c1d95; }
.hack-lavender .hack-desc  { color: #5b21b6; }
.hack-lavender .hack-arrow { color: #7c3aed; }
.hack-link:hover .hack-lavender { border-color: #8b5cf6; box-shadow: 0 16px 40px rgba(139,92,246,0.18); }


/* ----------------------------------------------------------
   6. LOGO CIRCLE
   ---------------------------------------------------------- */

.hack-logo-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.hack-link:hover .hack-logo-wrap {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}

.hack-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}


/* ----------------------------------------------------------
   7. TEXT
   ---------------------------------------------------------- */

.hack-text {
    flex: 1;
    min-width: 0;
}

.hack-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.hack-desc {
    font-size: 0.77rem;
    line-height: 1.45;
    margin: 0;
    opacity: 0.85;
}


/* ----------------------------------------------------------
   8. ARROW (top-right)
   ---------------------------------------------------------- */

.hack-arrow {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.35;
    transition: opacity 0.28s ease, transform 0.28s ease;
    line-height: 1;
}

.hack-link:hover .hack-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}


/* ----------------------------------------------------------
   9. MOBILE — 2 columns, stacked, large logo + desc visible
   ---------------------------------------------------------- */

@media (max-width: 767px) {

    .hack-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 12px 18px;
        gap: 12px;
        border-radius: 18px;
        min-height: 190px;
        /* Make top bar always visible on mobile for color identity */
    }

    .hack-card::after {
        opacity: 1; /* Always show color bar on mobile */
    }

    /* Bigger logo on mobile — key fix */
    .hack-logo-wrap {
        width: 90px;
        height: 90px;
        border-width: 2.5px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .hack-logo {
        width: 86px;
        height: 86px;
    }

    .hack-title {
        font-size: 0.7rem;
        letter-spacing: 0.4px;
        margin-bottom: 4px;
    }

    /* Always show description on mobile */
    .hack-desc {
        display: block !important;
        font-size: 0.67rem;
        line-height: 1.4;
    }

    /* Hide arrow on mobile */
    .hack-arrow {
        display: none;
    }
}

/* ----------------------------------------------------------
   ENQUIRY CARD — WhatsApp Icon
   Add this to your style.css
   ---------------------------------------------------------- */

.enquiry-icon-wrap {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 14%;
    flex-shrink: 0;
}

.enquiry-wa-icon {
    font-size: 2rem;
    color: #ffffff;
}

/* Mobile size match */
@media (max-width: 767px) {
    .enquiry-icon-wrap {
        width: 35px;
        height: 35px;
    }

    .enquiry-wa-icon {
        font-size: 1.2rem;
    }
}

/* 1. Global Reset */
    .mt-chat-widget, .mt-chat-widget * {
        box-sizing: border-box !important;
    }

    .mt-chat-widget {
        position: fixed !important;
        bottom: 25px !important;
        right: 25px !important;
        z-index: 999999 !important;
        font-family: 'Poppins', sans-serif !important;
    }

    /* 2. Main Floating Button */
    .mt-main-btn {
        background: #000 !important;
        color: #fff !important;
        padding: 10px 20px !important; /* Slightly smaller */
        border-radius: 50px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        cursor: pointer !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
        border: 2px solid #333 !important;
        transition: 0.3s ease !important;
        height: 50px !important; /* Fixed height for consistency */
    }

    .waving-hand {
        font-size: 22px !important;
        animation: mt-wave 2.2s infinite !important;
        transform-origin: 70% 70% !important;
    }

    @keyframes mt-wave {
        0%, 60%, 100% { transform: rotate(0deg) }
        10%, 30%, 50% { transform: rotate(14deg) }
        20%, 40% { transform: rotate(-8deg) }
    }

    /* 3. Compact Help Card */
    .mt-chat-card {
        position: absolute !important;
        bottom: 80px !important;
        right: 0 !important;
        width: 320px !important; /* Slightly Narrower */
        background: #fff !important;
        border-radius: 15px !important;
        box-shadow: 0 15px 50px rgba(0,0,0,0.3) !important;
        display: none; 
        border: 1px solid #eee !important;
        animation: mt-fadeIn 0.3s ease-out !important;
    }

    @keyframes mt-fadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* 4. Compact Header */
    .mt-card-header {
        background: #000 !important;
        color: #fff !important;
        padding: 15px !important; /* Reduced Padding */
        text-align: center !important;
        position: relative !important;
    }

    .mt-card-header h4 { 
        margin: 0 !important; 
        font-size: 16px !important; 
        color: #fff !important;
        font-weight: 600 !important;
    }
    
    .mt-card-header p { 
        margin: 2px 0 0 !important; 
        font-size: 12px !important; 
        color: rgba(255,255,255,0.7) !important;
    }

    .mt-close-btn {
        position: absolute !important;
        top: 10px !important;
        right: 12px !important;
        background: transparent !important;
        border: none !important;
        color: #fff !important;
        font-size: 20px !important;
        cursor: pointer !important;
    }

    /* 5. Compact List Items */
    .mt-list { 
        padding: 10px !important; /* Reduced Padding */
        margin: 0 !important; 
        list-style: none !important; 
    }
    
    .mt-list-item {
        display: flex !important;
        align-items: center !important;
        padding: 10px 15px !important; /* Slimmer Items */
        margin-bottom: 8px !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        color: #fff !important;
        font-weight: 500 !important;
        font-size: 13px !important; /* Smaller Font */
        transition: 0.2s !important;
    }

    .mt-list-item i { 
        margin-right: 12px !important; 
        font-size: 16px !important; 
        width: 20px !important; 
        text-align: center !important; 
    }

    .mt-list-item:hover { 
        transform: scale(1.02) !important;
        filter: brightness(1.1) !important;
    }

    /* 6. Colors */
    .bg-call { background: linear-gradient(90deg, #FF512F, #DD2476) !important; }
    .bg-package { background: linear-gradient(90deg, #4776E6, #8E54E9) !important; }
    .bg-enquiry { background: linear-gradient(90deg, #00b09b, #96c93d) !important; }
    .bg-wa { background: linear-gradient(90deg, #11998e, #38ef7d) !important; }
    .bg-tariff { background: linear-gradient(90deg, #f12711, #f5af19) !important; }
    .bg-insta { background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045) !important; }
    .bg-fb { background: linear-gradient(90deg, #00c6ff, #0072ff) !important; }
    .bg-review { background: #333 !important; }

    /* Hide scrollbar for clean look */
    .mt-chat-card::-webkit-scrollbar {
        width: 4px;
    }
    .mt-chat-card::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }   
    
.mt-chat-widget {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 999999 !important;
    transition: transform 0.3s ease !important;
}
/* Footer logo — center on mobile */
@media (max-width: 991px) {
    .footer-dark .col-lg-5 {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 12px;
    }

    .footer-wa-cta {
        margin: 0 auto;
    }

    .footer-got-q {
        text-align: center;
    }
}