/*
Theme Name: WP Template
Theme URI: https://example.com/wp-template
Author: Author
Author URI: https://example.com
Description: A custom WordPress theme with a fully designed About Us page based on the Budli UI design.
Version: 1.0.3
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-template
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* --- Unified Variables --- */
:root {
    --blue: #0474B4;
    --pink: #BC1C5C;
    --dark: #111;
    --body: #444;
    --muted: #6b7280;
    --border: #eaeaea;
    --bg-light: #f8f9fa;
    --white: #fff;
    --ff-heading: 'Space Grotesk', sans-serif;
    --ff-body: 'DM Sans', sans-serif;
}

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevents horizontal scroll at root level */
}

body {
    font-family: var(--ff-body);
    color: var(--body);
    background: var(--white);
    line-height: 1.6;
    overflow-x: clip; /* clip (not hidden) — prevents horizontal scroll without breaking position: sticky */
}

/* ===========================
   GLOBAL TYPOGRAPHY
   (Aligned with homepage)
=========================== */

h1 {
    font-size: 2.5rem;
    /* Matches homepage hero scale */
    font-weight: 700;
}

h2 {
    font-size: 1.625rem;
    /* ~26px, homepage section titles */
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    /* ~20px, cards/section subtitles */
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    /* ~18px */
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    /* 16px */
    font-weight: 600;
}

h6 {
    font-size: 0.875rem;
    /* 14px */
    font-weight: 600;
}

p {
    font-size: 1rem;
    /* 16px, base paragraph size */
    font-weight: 400;
}

small,
.text-small {
    font-size: 0.875rem;
    font-weight: 400;
}

/* Buttons */
.btn,
.button {
    font-size: 0.9375rem;
    /* 15px */
    font-weight: 600;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

a {
    color: #0b78b6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   SITE LAYOUT
=========================== */
#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   HEADER (Unified)
=========================== */
.top-bar {
    background: #a31d58; /* Premium Magenta from reference design */
    padding: 4px 0;
    min-height: 28px;
}

.top-bar-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Premium responsiveness for all screen sizes */
    width: 100%;
}

.highlight-item {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 300;
}

@media screen and (max-width: 600px) {
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-highlights {
        gap: 8px;
    }
    .highlight-item {
        font-size: 10.5px;
    }
    .separator {
        font-size: 10px;
    }
}

.budli-sticky-header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Admin Bar offsets for fixed header */
.admin-bar .budli-sticky-header-container {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .budli-sticky-header-container {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .budli-sticky-header-container {
        top: 0;
    }
}

.header-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.header-main.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.main-nav-wrapper {
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 10px;
}

.header-logo-img {
    height: 45px;
    width: auto;
}

@media screen and (max-width: 1024px) {
    .header-logo-img {
        height: 42px;
    }
}

.navbar-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list-main {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-list-main>li {
    position: relative;
}

.nav-main-item {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-main-item:hover {
    color: var(--blue);
}

@media screen and (max-width: 1300px) {
    .nav-main-item {
        font-size: 11px;
        padding: 6px 4px;
        gap: 2px;
    }

    .nav-main-item iconify-icon {
        font-size: 13px;
    }
}

.nav-main-item .mnusvg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-main-item iconify-icon {
    font-size: 16px;
    display: block;
}

.menu-arrow {
    font-size: 14px;
    transition: transform 0.2s;
}

.has-submenu:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Submenu Styles */
.submnu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    list-style: none;
    display: none;
    z-index: 1001;
    border: 1px solid #eee;
}

.has-submenu:hover .submnu {
    display: block;
    animation: fadeInSlide 0.2s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submnu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: background 0.2s;
}

.submnu li a:hover {
    background: #f1f5f9;
    color: var(--blue);
}

.submnu li a .mnusvg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.submnu li a .mnusvg img,
.submnu li a .mnusvg svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Actions Right */
.nav-actions-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.action-link-icon:hover {
    transform: scale(1.05);
}

/* User Account Panel - Premium Redesign */
.user-login-panel {
    position: relative;
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    min-width: 240px;
    padding: 0;
    display: block;
    visibility: hidden;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.dropdown-menu-new.show {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Arrow Notch */
.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-header {
    background: #f8fafc;
    padding: 16px 20px;
}

.dropdown-header p.text-muted {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    color: #64748b !important;
}

.dropdown-header p.font-weight-bold {
    font-size: 14px;
    color: #1e293b;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-item iconify-icon {
    font-size: 18px;
    color: #94a3b8;
    transition: color 0.2s;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #0b78b6;
    border-left-color: #0b78b6;
    text-decoration: none;
}

.dropdown-item:hover iconify-icon {
    color: #0b78b6;
}

.dropdown-item.logout-link:hover {
    color: #d41e57;
    border-left-color: #d41e57;
}

.dropdown-item.logout-link:hover iconify-icon {
    color: #d41e57;
}

.dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 4px 0;
}

/* Mobile Toggle - New UI */
.hamburger-new {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action Buttons */
.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.action-btn.blue {
    background: #0b78b6;
}

.action-btn.pink {
    background: #d41e57;
}

.action-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    font-family: var(--ff-heading);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-text span:first-child {
    color: var(--blue);
}

.logo-text span:last-child {
    color: var(--pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-item {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-item:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Nav Overlay Toggle Logic (Handled by d-xxl-none in HTML) */
.mnutog-container {
    display: none;
    /* Hidden by default, shown by grid in mobile media query */
}


/* Ensure mobile nav uses .show class as expected by JS */
.mobile-nav.show {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Fix Header Responsiveness & Centering on Mobile */
@media (max-width: 1399px) {
    .main-nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 8px 15px !important;
        gap: 15px !important;
    }

    .mnutog-container {
        display: flex;
        justify-content: flex-start;
        flex: 1;
        /* Take equal space with actions */
        min-width: 0 !important;
    }

    .nav-actions-right {
        display: flex;
        justify-content: flex-end;
        flex: 1;
        /* Take equal space with hamburger */
        gap: 12px !important;
    }

    .logo-container {
        display: flex;
        justify-content: center;
        flex: 0 0 auto;
        text-align: center;
    }

    .header-logo-img {
        max-height: 48px !important;
        width: auto !important;
    }

    .header-main.budli-shared-header .main-nav-wrapper>.nav-actions-right {
        flex: 0 0 auto !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.icon-btn.blue {
    background: var(--blue);
}

.icon-btn.pink {
    background: var(--pink);
}

.icon-btn:hover {
    opacity: 0.9;
}

/* Search Bar Removed from header */

/* Hamburger & Mobile Nav Logic */
.hamburger-new {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Drawer Redesign */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.close-mobile-nav {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.mobile-nav-item:hover {
    background: #f8f9fa;
}

.mobile-nav-item iconify-icon:last-child {
    transition: transform 0.3s ease;
}

.mobile-has-submenu.open>.mobile-nav-item iconify-icon:last-child {
    transform: rotate(180deg);
}

.mobile-submnu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9fafb;
    display: none;
    border-bottom: 1px solid var(--border);
}

.mobile-has-submenu.open>.mobile-submnu {
    display: block;
}

.mobile-submnu li a {
    padding: 12px 40px;
    display: block;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
}

.mobile-submnu li:last-child a {
    border-bottom: none;
}


body.nav-open {
    overflow: hidden;
}

/* ===========================
   NAVIGATION
=========================== */
.main-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    display: block;
    padding: 6px 14px;
    border-radius: 4px;
    color: #333;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.main-navigation ul li a:hover {
    background: #0b78b6;
    color: #fff;
    text-decoration: none;
}

/* ===========================
   FOOTER (Unified)
=========================== */
.footer {
    background: #006cb7;
    color: #fff;
    padding: 52px 24px 20px;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.2fr 1.2fr 1.2fr 1.2fr;
    gap: 28px;
    max-width: 100%;
    margin: 0 auto 36px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #b8dcf4;
}

.footer-col p {
    color: #d6eeff;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Contact items */
.fc-item {
    display: flex;
    gap: 8px;
    color: #d6eeff;
    font-size: 12.5px;
    margin-bottom: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.fc-item iconify-icon {
    min-width: 14px;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Nav links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #d6eeff;
    font-size: 12.5px;
    cursor: pointer;
    transition: color .15s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
}

.newsletter-form input {
    flex: 1;
    padding: 9px 12px;
    border: none;
    font-size: 12px;
    outline: none;
    font-family: inherit;
    color: #333;
}

.newsletter-form button {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #000;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-icons iconify-icon {
    font-size: 19px;
    color: #fff;
    cursor: pointer;
    transition: opacity .2s;
}

.social-icons iconify-icon:hover {
    opacity: .75;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
}

.footer-bottom p {
    color: #9ecfe8;
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-bottom strong {
    color: #fff;
}

/* SEO links */
.seo-row {
    color: #9ecfe8;
    font-size: 11.5px;
    line-height: 1.9;
    margin-top: 12px;
}

.seo-row strong {
    color: #fff;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-list li {
    font-size: 11.5px;
    line-height: 1.6;
    color: #9ecfe8;
}

.seo-list li strong {
    color: #fff;
}

.floating-top {
    position: fixed;
    bottom: 85px; /* Above the WhatsApp button */
    right: 24px;
    width: 38px;
    height: 38px;
    background: #b21c56;
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 10000;
    transition: background .2s, transform .15s;
}

.floating-top:hover {
    background: #891248;
    transform: translateY(-2px);
}

/* WhatsApp Floating Icon */
.budli-whatsapp-float {
    position: fixed;
    bottom: 24px; /* Move to the bottom */
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.budli-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.budli-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 2px 8px 20px rgba(18, 140, 126, 0.4);
    color: #fff;
}

.budli-whatsapp-float__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: budli-whatsapp-pulse 2s infinite;
    opacity: 0.7;
}

@keyframes budli-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.budli-whatsapp-float__tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.budli-whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333;
}

.budli-whatsapp-float:hover .budli-whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .budli-whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    
    .budli-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .floating-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .budli-whatsapp-float__tooltip {
        display: none; /* Hide tooltip on small screens to avoid clutter */
    }
}


/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a7a45;
    color: #fff;
    padding: 11px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    z-index: 10001;
    /* Above almost everything */
    transform: translateX(130%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    visibility: hidden;
}

.toast.show {
    visibility: visible;
    transform: translateX(0);
}

/* ── RESPONSIVE FOOTER ── */
.grid {
    display: grid;
    gap: 30px;
}

.grid--1-col {
    grid-template-columns: 1fr;
}

.grid--2-col {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 750px) {
    .grid--3-col-tablet {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid--4-col-tablet {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 990px) {
    .grid--4-col-desktop {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 960px) {

    .footer-grid,
    .footer__blocks-wrapper.grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 749px) {

    .footer-grid,
    .footer__blocks-wrapper.grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-block.grid__item {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {

    .footer-grid,
    .footer__blocks-wrapper.grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .navbar-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        padding: 4px 12px !important;
        gap: 10px !important;
    }

    .logo-container {
        flex: 0 0 auto;
        justify-content: center;
    }

    .nav-actions-right {
        flex: 1;
        justify-content: flex-end;
        gap: 8px !important;
    }

    .mnutog-container {
        flex: 1;
        justify-content: flex-start;
    }

    .search-container {
        order: 3;
        margin: 10px 0 0;
        max-width: none;
        width: 100%;
        flex: 0 0 100%;
    }

    .hamburger {
        display: flex;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
    }
}

/* ===========================
   HOME PAGE
=========================== */
.home-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    margin-bottom: 40px;
}

.home-hero h1 {
    font-size: 2.5rem;
    color: #0b78b6;
    margin-bottom: 16px;
}

.home-hero p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
}

.home-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ===========================
   GENERIC PAGE
=========================== */


.entry-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

.entry-content {
    line-height: 1.8;
    color: #444;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary {
    background: #0b78b6;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
}

/* ===========================
   UTILITIES
=========================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .home-hero h1 {
        font-size: 1.75rem;
    }

    .site-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .main-navigation ul {
        gap: 4px;
    }
}

/* ===========================
   SHARED BUDLI HEADER/FOOTER
=========================== */
.footer__list-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.list-social__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.list-social__link:hover {
    background: var(--blue);
    transform: translateY(-3px);
    color: #fff;
}

.list-social__link iconify-icon {
    display: block;
}

.top-bar.budli-shared-top-bar .top-bar-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    white-space: nowrap;
}

.header-main.budli-shared-header,
.footer.budli-shared-footer {
    font-family: 'Inter', sans-serif;
}

.header-main.budli-shared-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(4, 116, 180, 0.10);
    box-shadow: none;
}

@media (min-width: 1200px) {
    header.budli-shared-header .mnutog-container {
        display: none !important;
    }
}

.header-main.budli-shared-header .main-nav-wrapper {
    min-height: 52px;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Call + account must stay visible: wide nav must not flex-shrink this column (all pages, esp. home) */
.header-main.budli-shared-header .main-nav-wrapper>.nav-actions-right {
    flex: 0 0 auto;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 6;
    min-width: fit-content;
}

.header-main.budli-shared-header .main-nav-wrapper>.nav-actions-right .action-item,
.header-main.budli-shared-header .main-nav-wrapper>.nav-actions-right .user-login-panel {
    flex-shrink: 0;
}

.header-main.budli-shared-header #userAccountToggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-main.budli-shared-header .logo-container {
    display: flex;
    align-items: center;
}

.header-main.budli-shared-header .logo {
    display: inline-flex;
    align-items: center;
}

.header-main.budli-shared-header .header-logo-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 40px;
}

.navbar-desktop.budli-shared-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.navbar-desktop.budli-shared-nav .nav-list-main {
    gap: 2px !important;
    justify-content: center;
}

.navbar-desktop.budli-shared-nav .has-submenu {
    position: relative;
    list-style: none;
}

.navbar-desktop.budli-shared-nav .nav-main-item {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    border-radius: 999px;
    color: #222222;
    font-size: 12px;
    font-weight: 500;
    /* Match homepage nav weight */
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.navbar-desktop.budli-shared-nav .nav-main-item:hover,
.navbar-desktop.budli-shared-nav .has-submenu:hover>.nav-main-item {
    color: #0474b4;
    transform: translateY(-1px);
    text-decoration: none;
}

.nav-main-icon,
.submenu-icon,
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-main-icon img,
.nav-icon img {
    width: clamp(14px, 1.65em, 22px);
    height: clamp(14px, 1.65em, 22px);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Inline SVG in nav (if any) matches image icon sizing */
.nav-main-icon svg,
.nav-icon svg {
    width: clamp(14px, 1.65em, 22px);
    height: clamp(14px, 1.65em, 22px);
    flex-shrink: 0;
    display: block;
}

.submenu-icon img,
.nav-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nav-icon iconify-icon {
    font-size: 20px;
}

.navbar-desktop.budli-shared-nav .menu-arrow {
    display: inline-flex;
    align-items: center;
    color: #1b243f;
    margin-left: 4px;
}

.navbar-desktop.budli-shared-nav .submnu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 260px;
    margin: 0;
    padding: 12px;
    display: grid;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(4, 116, 180, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(14, 30, 84, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

.navbar-desktop.budli-shared-nav .has-submenu:hover>.submnu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-desktop.budli-shared-nav .submnu li {
    position: relative;
    list-style: none;
}

.navbar-desktop.budli-shared-nav .sub-submnu {
    position: absolute;
    left: 100%;
    top: -12px;
    min-width: 260px;
    margin: 0;
    padding: 12px;
    display: grid;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(4, 116, 180, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(14, 30, 84, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1002;
}

.navbar-desktop.budli-shared-nav .submenu-item:hover>.sub-submnu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.navbar-desktop.budli-shared-nav .has-inner-submenu>.nav-sub-item .menu-arrow {
    margin-left: auto;
    transform: rotate(-90deg);
}

.navbar-desktop.budli-shared-nav .submnu a,
.budli-shared-mobile-nav .mobile-submnu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.navbar-desktop.budli-shared-nav .submnu a:hover,
.budli-shared-mobile-nav .mobile-submnu a:hover {
    background: rgba(4, 116, 180, 0.08);
    color: #0474b4;
}

.header-main.budli-shared-header .action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(10, 36, 99, 0.12);
}

.mobile-nav-drawer.budli-shared-mobile-nav .mobile-nav-item-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-drawer.budli-shared-mobile-nav .mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    color: #172038;
    font-weight: 600;
}

.mobile-nav-drawer.budli-shared-mobile-nav .mobile-submnu {
    padding: 0 0 8px;
}

.footer.budli-shared-footer {
    padding-top: 30px;
    background: #017ab3;
}

.footer.budli-shared-footer .footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 28px;
}

.footer.budli-shared-footer .footer-col h4,
.footer.budli-shared-footer .footer-col h4 a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.footer.budli-shared-footer .footer-col p,
.footer.budli-shared-footer .footer-col a,
.footer.budli-shared-footer .footer-col span,
.footer.budli-shared-footer .seo-row,
.footer.budli-shared-footer .seo-list {
    color: rgba(255, 255, 255, 0.92);
}

.footer.budli-shared-footer .footer-note {
    margin-bottom: 10px;
}

.footer.budli-shared-footer .fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer.budli-shared-footer .footer-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    color: #d9f1ff;
}

.footer.budli-shared-footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer.budli-shared-footer .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer.budli-shared-footer .social-icons a:hover {
    transform: translateY(-2px);
    background: #bc1c5c;
    text-decoration: none;
}

.footer.budli-shared-footer .copyright-text,
.footer.budli-shared-footer .footer-bottom {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer.budli-shared-footer .copyright-text {
    margin-top: 8px;
    margin-bottom: 10px !important;
    color: #fff;
}

@media (max-width: 1199px) {
    .navbar-desktop.budli-shared-nav {
        display: none !important;
    }

    .header-main.budli-shared-header .main-nav-wrapper {
        position: relative;
    }

    .header-main.budli-shared-header .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        pointer-events: none;
    }

    .header-main.budli-shared-header .logo-container a,
    .header-main.budli-shared-header .logo-container .custom-logo-link {
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-main.budli-shared-header .mnutog-container,
    .header-main.budli-shared-header .main-nav-wrapper>.nav-actions-right {
        position: relative;
        z-index: 7;
    }
}

@media (max-width: 991px) {
    .header-main.budli-shared-header .main-nav-wrapper {
        min-height: 70px;
        padding: 0 15px;
    }

    .footer.budli-shared-footer {
        padding-top: 25px;
    }
}

@media (max-width: 767px) {
    .top-bar.budli-shared-top-bar .top-bar-inner {
        gap: 15px !important;
        padding: 8px 15px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .top-bar.budli-shared-top-bar .top-bar-inner::-webkit-scrollbar {
        display: none !important;
    }

    .top-bar.budli-shared-top-bar .top-bar-inner span {
        flex: 0 0 auto !important;
        font-size: 11px !important;
        text-align: left !important;
        white-space: nowrap !important;
    }
}

.header-main.budli-shared-header.scrolled {
    top: 0;
    box-shadow: none;
}

.admin-bar .header-main.budli-shared-header.scrolled {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header-main.budli-shared-header.scrolled {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .header-main.budli-shared-header.scrolled {
        top: 0;
    }
}


@media (max-width: 600px) {
    .header-main.budli-shared-header .header-logo-img {
        width: 142px;
        max-height: 44px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   SELL PRODUCT PAGE STYLES
   ───────────────────────────────────────────────────────────────────────── */

.sell-used-mobile-product-page {
    background-color: #f8fafc;
    /* padding: 24px 0 60px; */
}

.hero-section {
    margin-bottom: 40px;
}

.product-info-block {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.product-image-container {
    text-align: center;
    background: #fbfbfc;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.price-v-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}

/* Valuation Card & Form */
.valuation-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.valuation-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

.budli-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b78b6;
    margin-bottom: 20px;
    padding-top: 10px;
}

.budli-step {
    display: none;
}

.budli-step.is-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Defects Grid */
.budli-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.budli-option-tile {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.budli-option-tile img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    object-fit: contain;
}

.budli-option-tile .imgradiotitle {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.budli-option-tile:hover {
    border-color: #0b78b6;
    background: #f0f9ff;
}

.budli-option-tile.selected {
    border-color: #0b78b6;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(11, 120, 182, 0.1);
}

/* Result Section */
.valuation-summary-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.summary-header {
    background: #0b78b6;
    color: #fff;
    padding: 24px;
    text-align: center;
}

.price-row {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
}

.final-price {
    font-size: 32px;
    font-weight: 800;
    color: #0b78b6;
}

/* Swiper overrides */
.related-swiper,
.testimonial-swiper {
    padding: 20px 0 40px;
}

.swiper-pagination-bullet-active {
    background: #0b78b6;
}

/* Trust Icons Band */
.trust-icons-band {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding-top: 48px;
    margin-top: 40px;
}

.trust-icons-band img {
    height: 64px;
    width: auto;
    transition: transform 0.3s ease;
}

.trust-icons-band .col-md-3:hover img {
    transform: translateY(-5px);
}

.trust-icons-band h5 {
    font-size: 15px;
    margin-top: 12px;
    color: #475569;
}

/* Video Section */
.vdo-container {
    background: #000;
    transition: transform 0.3s ease;
}

.videosec .vdo-container:hover {
    transform: scale(1.02);
}

/* Technical Specifications */
.table-bordered th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.most-searched-links a {
    color: #ffffff !important;
    text-decoration: none;
}

.most-searched-links a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* ===========================
   NEW FOOTER REDESIGN
=========================== */

/* ===========================
   NEW FOOTER REDESIGN (REFINE)
=========================== */
.footer.budli-shared-footer {
    background-color: #0076a3;
    /* Primary Teal-Blue from screenshot */
    color: #ffffff;
    padding-top: 30px;
    padding-bottom: 15px;
    width: 100%;
    font-family: var(--ff-body, 'Inter', sans-serif);
    position: relative;
    z-index: 10;
}

/* Wide Container to match header-fluid */
.footer__content-top {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Robust Responsive Grid */
.footer__blocks-wrapper {
    display: grid;
    gap: 30px;
}

/* PC: 5 Columns */
@media screen and (min-width: 1200px) {
    .footer__blocks-wrapper {
        grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    }
}

/* Laptop/Tablet Large: 3 Columns */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .footer__blocks-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: 2 Columns */
@media screen and (min-width: 600px) and (max-width: 991px) {
    .footer__blocks-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 Column */
@media screen and (max-width: 599px) {
    .footer__blocks-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-block__newsletter .field {
        margin: 15px auto;
    }

    .footer__list-social {
        justify-content: center;
    }
}

/* Typography & Links */
.footer-block__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-block__heading em {
    display: block;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    margin-top: 4px;
    color: #ffffff;
}

.footer-block__details-content {
    font-size: 14px;
    line-height: 1.6;
    list-style: none;
}

.footer-block__details-content p {
    margin-bottom: 12px;
}

.footer-block__details-content a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s;
}

.footer-block__details-content a:hover {
    text-decoration: underline;
}

/* Newsletter Section */
.footer-block__newsletter {
    margin-bottom: 20px;
}

.newsletter-form .field {
    display: flex;
    margin-top: 15px;
    max-width: 320px;
}

@media screen and (max-width: 767px) {
    .newsletter-form .field {
        margin: 15px auto 0;
    }
}

.newsletter-form .field__input {
    background: #cadde5;
    /* Light grey-blue input from reference */
    border: none;
    padding: 10px 15px;
    width: 65%;
    border-radius: 2px 0 0 2px;
    color: #333;
    font-size: 14px;
    outline: none;
    height: 48px;
}

.newsletter-form .field__button {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    width: 35%;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    height: 48px;
}

.newsletter-form .field__button:hover {
    background: #555555;
}

/* Social Icons Cover */
.icons_footer_cover {
    margin-top: 30px;
}

.footer_icon_text {
    font-weight: 700;
    margin-bottom: 12px !important;
}

.footer__list-social {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .footer__list-social {
        justify-content: center;
    }
}

.footer__list-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #0076a3;
    text-decoration: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.footer__list-social li a:hover {
    background: #e0faff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
    .footer__list-social li a {
        width: 32px;
        height: 32px;
    }
}

.footer__list-social iconify-icon,
.footer__list-social i,
.footer__list-social svg {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    line-height: 1;
    color: #0076a3 !important;
    fill: #0076a3 !important;
}

/* Force fill on SVG paths to guarantee visibility */
.footer__list-social svg path {
    fill: #0076a3 !important;
}

@media screen and (max-width: 767px) {

    .footer__list-social iconify-icon,
    .footer__list-social i,
    .footer__list-social svg {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }
}

.footer__list-social i svg,
.footer__list-social a>svg {
    width: 68% !important;
    height: 95% !important;
    display: block !important;
}

/* Column Menu Adjustments */
.footer-block--menu li {
    margin-bottom: 10px;
}

/* Content Bottom (Payments & SEO) */
.footer__content-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 50px;
    padding-top: 30px;
}

.footer__content-bottom-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned as requested */
    text-align: left;
}

.footer__column--info {
    width: 100%;
}

.footer__copyright {
    text-align: left;
    width: 100%;
}

.footer__payment {
    margin-bottom: 25px;
}

.list-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.list-payment__item svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer__copyright {
    font-size: 13px;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
}

/* SEO Links Bottom Refinement - Full Width */
.footer_bottom_links {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 40px;
    box-sizing: border-box;
}

.footer_bottom_links a {
    color: #8ecfff;
    text-decoration: none;
    transition: 0.2s;
}

.footer_bottom_links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer_bottom_links h6 {
    color: #ffffff !important;
}

@media screen and (max-width: 767px) {
    .footer_bottom_links {
        padding: 0px 0px;
    }
}

.footer_bottom_links hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

.footer_bottom_links h6 {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: none;
    font-weight: 700;
}

.footer_bottom_links a {
    color: #8ecfff !important;
    text-decoration: none;
    transition: 0.2s;
    font-size: 13px;
    display: inline-block;
}

.footer_bottom_links span {
    color: #ffffff;
    font-size: 13px;
}

.footer_bottom_links a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* First Column Details (Address/Phone/Email) */
.footer-block__details-content .address,
.footer-block__details-content .phone,
.footer-block__details-content .email {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {

    .footer-block__details-content .address,
    .footer-block__details-content .phone,
    .footer-block__details-content .email {
        justify-content: center;
    }
}

.footer-block__details-content img {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    opacity: 0.9;
    margin-top: 3px;
}

/* =========================================
   BUDLI DESIGN SYSTEM (GLASS & CLEAN UI)
   ========================================= */

:root {
    --budli-primary: #0b78b6;
    --budli-bg: #f8fafc;
    --budli-border: #e2e8f0;
    --budli-text: #0f172a;
    --budli-muted: #64748b;
    --budli-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Glass Card */
.budli-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--budli-border);
    border-radius: 20px;
    box-shadow: var(--budli-shadow);
}

/* Option Tile Row (Unified System) */
.budli-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1.5px solid var(--budli-border);
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 12px;
    user-select: none;
}

.budli-option:hover {
    transform: translateY(-2px);
    border-color: var(--budli-primary);
    box-shadow: 0 12px 20px rgba(11, 120, 182, 0.1);
}

.budli-option.selected {
    border-color: var(--budli-primary);
    background: linear-gradient(135deg, rgba(11, 120, 182, 0.08), rgba(11, 120, 182, 0.02));
    box-shadow: 0 8px 16px rgba(11, 120, 182, 0.12);
}

.budli-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(1);
}

.budli-option-title {
    font-weight: 600;
    color: var(--budli-text);
    font-size: 16px;
    flex: 1;
}

/* Auth UI Components */
.budli-input {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid var(--budli-border);
    padding: 0 16px;
    margin-bottom: 16px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.budli-input:focus {
    border-color: var(--budli-primary);
    outline: none;
}

.budli-btn-primary {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: var(--budli-primary);
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 16px;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
}

.budli-btn-primary:hover {
    opacity: 0.95;
    transform: scale(0.995);
}

.budli-btn-primary:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.budli-auth-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--budli-text);
    margin-bottom: 24px;
    text-align: center;
}

/* Auth Page Layout */
.auth-page-container {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at top left, rgba(11, 120, 182, 0.05), transparent),
        radial-gradient(circle at bottom right, rgba(175, 32, 84, 0.05), transparent);
}

.auth-card {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-tabs-header {
    display: flex;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    margin: 20px 20px 0;
    border-radius: 14px;
}

.auth-tabs-header a {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--budli-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
}

.auth-tabs-header a.active-tab {
    background: #fff;
    color: var(--budli-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-card-body {
    padding: 30px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--budli-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--budli-border);
}

.auth-divider span {
    padding: 0 15px;
}

.auth-footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.auth-footer-links a {
    font-size: 13px;
    color: var(--budli-primary);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer-links a:hover {
    text-decoration: underline;
}

.budli-form-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--budli-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Password Toggle Wrapper */
.password-toggle-wrapper {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--budli-muted);
    font-size: 18px;
    z-index: 5;
}

.otp-verification-area {
    background: rgba(11, 120, 182, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.otp-input-box {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: 800;
}

/* Icon Row Specifics */
.budli-option.icon-style .icon-container {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    padding: 8px;
    margin-right: 15px;
    transition: background 0.2s;
}

.budli-option.selected.icon-style .icon-container {
    background: #fff;
}

/* Options Grid Layout */
.options-list-grid {
    display: grid;
    gap: 12px;
}

.options-list-grid.two-items {
    grid-template-columns: repeat(2, 1fr);
}

.options-list-grid.three-items {
    grid-template-columns: repeat(3, 1fr);
}

/* Mobile adjustments for grid */
@media (max-width: 576px) {

    .options-list-grid.two-items,
    .options-list-grid.three-items {
        grid-template-columns: 1fr;
    }
}

/* Valuation Details Grid */
.valuation-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.selected-option-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.selected-option-item .label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--budli-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.selected-option-item .value {
    font-size: 14px;
    color: var(--budli-text);
    font-weight: 600;
    line-height: 1.4;
}

/* Price Summary Sidebar */
.price-summary-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.price-summary-row .label {
    color: var(--budli-muted);
    font-size: 14px;
}

.price-summary-row .value {
    font-weight: 700;
    color: var(--budli-text);
    font-size: 15px;
}

.price-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(11, 120, 182, 0.05);
    border-radius: 12px;
    margin-top: 20px;
}

.price-summary-total .label {
    font-weight: 800;
    color: var(--budli-primary);
    font-size: 18px;
}

.price-summary-total .value {
    font-weight: 900;
    color: var(--budli-primary);
    font-size: 24px;
}

.budli-coupon-input-group {
    display: flex;
    border: 1.5px solid var(--budli-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.budli-coupon-input-group:focus-within {
    border-color: var(--budli-primary);
}

.budli-coupon-input-group .budli-input {
    border: none !important;
    padding: 12px 16px;
    flex: 1;
    font-weight: 600;
}

.budli-coupon-input-group .apply-btn {
    background: var(--budli-primary);
    color: #fff;
    border: none;
    padding: 0 24px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.budli-coupon-input-group .apply-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .valuation-details-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════
   GLOBAL MODERNIZED MOBILE FOOTER
   (Universally applied to all pages)
   ═══════════════════════════════ */
@media (max-width: 767px) {
    .budli-shared-footer {
        background-color: #0074b4 !important;
        color: #ffffff !important;
        padding: 40px 20px !important;
    }

    /* Hierarchy & Grid Layout */
    .footer__blocks-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0px 0px !important;
    }

    /* About Us & Newsletter: Full Width */
    .footer-block:nth-child(1),
    .footer-block:nth-child(2) {
        grid-column: span 2 !important;
    }

    /* Menus: Side-by-Side Grid */
    .footer-block--menu {
        grid-column: span 1 !important;
    }

    /* About Us: Strict Left Alignment */
    .footer-block:nth-child(1) {
        text-align: left !important;
    }

    /* Newsletter: Center Alignment */
    .footer-block:nth-child(2) {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 20px !important;
    }

    .footer-block:nth-child(2) .footer-block__newsletter,
    .footer-block:nth-child(2) .newsletter-form,
    .footer-block:nth-child(2) .footer__newsletter {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-block:nth-child(2) .footer__list-social {
        justify-content: center !important;
    }
    .footer-block:nth-child(1) .footer-block__heading,
    .footer-block:nth-child(1) .footer-block__details-content,
    .footer-block:nth-child(1) .footer-block__details-content p,
    .footer-block:nth-child(1) .footer-block__details-content div {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    /* Typography */
    .budli-shared-footer .footer-block__heading,
    .budli-shared-footer .footer_icon_text,
    .budli-shared-footer h6,
    .budli-shared-footer h2 {
        color: #ffffff !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-size: 16px !important;
        margin-bottom: 12px !important;
        opacity: 1 !important;
    }

    .budli-shared-footer .footer-block__details-content p,
    .budli-shared-footer .footer-block__details-content a,
    .budli-shared-footer .footer-block__details-content div,
    .budli-shared-footer .list-menu__item--link,
    .budli-shared-footer .copyright__content {
        color: #ffffff !important;
        opacity: 0.9 !important;
        font-size: 14px !important;
        text-decoration: none !important;
    }

    /* Google Rating Optimization */
    .footer-google-star {
        color: #ffcc00 !important;
        font-size: 18px !important;
        margin-right: 4px;
    }
    .footer-google-mobile-compact a {
        font-weight: 600 !important;
        text-decoration: underline !important;
    }

    /* Address, Phone, Email Icons */
    .budli-shared-footer .address,
    .budli-shared-footer .phone,
    .budli-shared-footer .email {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    .budli-shared-footer .address img,
    .budli-shared-footer .phone img,
    .budli-shared-footer .email img {
        filter: brightness(0) invert(1) !important;
        margin-top: 3px !important;
    }

    /* Newsletter Redesign */
    .footer__newsletter {
        margin: 10px 0 !important;
    }
    .footer-newsletter-mobile-wrap {
        display: flex !important;
        background: #bde1f2 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        padding: 4px !important;
        height: 54px !important;
    }
    .footer-newsletter-mobile-input {
        background: transparent !important;
        color: #333333 !important;
        border: none !important;
        padding: 0 15px !important;
        flex-grow: 1 !important;
        font-size: 15px !important;
    }
    .footer-newsletter-mobile-input::placeholder {
        color: #666666 !important;
    }
    .footer-newsletter-mobile-submit {
        background: #2b2b2b !important;
        color: #ffffff !important;
        padding: 0 25px !important;
        border-radius: 4px !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        cursor: pointer !important;
        height: 100% !important;
    }

    /* Social Icons Row */
    .footer__list-social {
        justify-content: flex-start !important;
        gap: 18px !important;
        margin: 15px 0 !important;
    }
    .list-social__link svg {
        fill: #ffffff !important;
        width: 24px !important;
        height: 24px !important;
    }

    /* Payment & Copyright Center Column */
    .footer__column--info {
        text-align: center !important;
    }
    .footer__payment {
        margin: 30px 0 20px !important;
    }
    .list-payment {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 12px !important;
        border-radius: 8px !important;
    }
    .list-payment__item svg {
        width: 36px !important;
        height: auto !important;
    }

    .footer__copyright {
        text-align: center !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* Global SEO Support */
    .footer_bottom_links {
        grid-column: span 2 !important;
    }
    .footer_bottom_links h6 {
        margin-top: 15px !important;
    }
    .footer_bottom_links hr {
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        margin: 15px 0 !important;
    }
}

/* ==========================================================================
   CAREER PAGE STYLES
   ========================================================================== */
.career-page-main {
    background-color: #f8f9fa;
    padding-bottom: 60px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-page-header {
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.career-page-header .breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.career-page-header .breadcrumbs a {
    color: #e91e63;
    text-decoration: none;
}

.career-page-header h1 {
    font-size: 36px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.career-intro {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.career-intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.career-content {
    background: transparent;
}

.cc-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

.cc-section h2 {
    font-size: 28px;
    color: #e91e63;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid #fce4ec;
    padding-bottom: 10px;
    display: inline-block;
}

.section-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.section-body ul {
    list-style: none;
    padding: 0;
}

.section-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.section-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 20px;
}

.opportunities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.opportunity-link {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #e91e63;
    border: 1px solid #e91e63;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.opportunity-link:hover {
    background: #e91e63;
    color: #fff;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

.job-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    border-left: 5px solid #e91e63;
    scroll-margin-top: 100px;
}

.job-card h3 {
    font-size: 32px;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 800;
}

.job-card p em {
    color: #666;
    font-size: 15px;
    display: block;
    margin-bottom: 30px;
}

.job-section {
    margin-bottom: 35px;
}

.job-section h4 {
    font-size: 20px;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.job-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e91e63;
}

.job-section a[href^="mailto:"] {
    color: #e91e63;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed #e91e63;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #e91e63;
}

@media (max-width: 768px) {
    .career-page-header h1 {
        font-size: 28px;
    }
    .cc-section, .job-card, .career-intro {
        padding: 25px;
    }
    .cc-section h2 {
        font-size: 24px;
    }
    .job-card h3 {
        font-size: 26px;
    }
}
