:root {
    --primary-color: #009adf;
    --primary-dark: #007bb3;
    --secondary-color: #0bd1d1;
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --bg-light: #f8fafc;
    /* Slate 50 */
    --border-color: #e2e8f0;
    /* Slate 200 */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* HEADER & NAVIGATION */
/* -------------------------------------------------------------------------- */

.main-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-area {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 40px;
}

.main-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.main-menu li a:hover {
    background: rgba(0, 154, 223, 0.08);
    color: var(--primary-color);
}

.value-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 154, 223, 0.3);
    transition: all 0.3s ease;
}

.value-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 154, 223, 0.4);
}

/* -------------------------------------------------------------------------- */
/* HERO SECTION */
/* -------------------------------------------------------------------------- */

.modern-hero-section {
    position: relative;
    padding: 60px 0 100px 0;
    background: radial-gradient(circle at top right, rgba(0, 154, 223, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(11, 209, 209, 0.05), transparent 40%);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 154, 223, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Unified Action Card */
.unified-hero-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-card-header {
    margin-bottom: 30px;
}

.banner-buttons {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    display: flex;
    gap: 4px;
}

.banner-buttons button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.banner-buttons button.active {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Custom Colors for Active Buttons */
.banner-buttons button.btn-sat.active {
    color: var(--primary-color);
}

.banner-buttons button.btn-al.active {
    color: #f59e0b;
}

.banner-buttons button.btn-takas.active {
    color: #8b5cf6;
}

.hero-card-body {
    padding: 20px 30px 30px 30px;
}

.form-header-minimal h4 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.car-form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
}

.form-select {
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    font-weight: 600;
}

.btn-evaluate {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-evaluate:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 154, 223, 0.2);
}

.card-trust-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.trust-tiny {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f8fafc;
    padding: 8px;
    border-radius: 10px;
}

.trust-tiny i {
    font-size: 0.9rem;
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* PROMO CATEGORIES */
/* -------------------------------------------------------------------------- */

.wm-promo-section {
    padding: 0 0 60px 0;
    margin-top: -30px;
    /* Overlap with hero slightly for integration */
    position: relative;
    z-index: 20;
}

.promo-card {
    display: flex;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 0;
    height: 240px;
    text-decoration: none !important;
    color: var(--text-main);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.promo-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 154, 223, 0.1);
}

.promo-content {
    flex: 1;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.promo-tag.electric {
    color: #10b981;
}

.promo-tag.moto {
    color: #f59e0b;
}

.promo-content h3 {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.promo-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 160px;
    line-height: 1.4;
}

.promo-link-btn {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.promo-card:hover .promo-link-btn {
    gap: 12px;
}

.promo-img {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 65%;
    height: 90%;
    z-index: 1;
    transition: all 0.5s ease;
}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    mix-blend-mode: multiply;
}

.promo-card:hover .promo-img {
    right: -5%;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1200px) {
    .promo-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .wm-promo-section {
        margin-top: 40px;
    }

    .promo-card {
        height: 220px;
    }
}

/* -------------------------------------------------------------------------- */
/* SECTION HEADERS */
/* -------------------------------------------------------------------------- */

.wm-section-header {
    margin-bottom: 50px;
}

.wm-section-title {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.wm-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 10px;
}

.wm-section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------------------- */
/* PROCESS SECTION (HOW IT WORKS) */
/* -------------------------------------------------------------------------- */

.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 154, 223, 0.2);
}

.process-icon-wrap {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 3px solid white;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 154, 223, 0.15));
    mix-blend-mode: multiply;
}

.process-card h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* VITRIN (SAHIBINDEN STYLE) */
/* -------------------------------------------------------------------------- */

.wm-featured-cars-section {
    padding: 100px 0;
}

.wm-featured-cars-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 24px !important;
    padding: 10px 10px 40px 10px !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.wm-featured-cars-grid::-webkit-scrollbar {
    height: 8px;
    display: block !important;
}

.wm-featured-cars-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.wm-featured-cars-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.classified-card-link {
    text-decoration: none;
    color: inherit;
    flex: 0 0 280px !important;
    max-width: 280px;
}

.classified-card {
    width: 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.classified-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.classified-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.classified-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.classified-card:hover .classified-img-wrap img {
    transform: scale(1.05);
}

.badge-urgent {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

.classified-details {
    padding: 15px;
}

.classified-title {
    font-size: 1rem;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.classified-actions {
    display: flex;
    gap: 8px;
}

.btn-mini-buy,
.btn-mini-trade {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-mini-buy {
    background: var(--primary-color);
    color: white;
}

.btn-mini-trade {
    background: #f8fafc;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.classified-card:hover .btn-mini-buy {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 154, 223, 0.2);
}

.classified-card:hover .btn-mini-trade {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Footer Additional Styles */
.main-footer {
    background: #ffffff;
    /* Light background */
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer-top {
    padding: 80px 0 60px 0;
}

.footer-bottom {
    background: #f8fafc;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    filter: none;
    /* No invert for light theme */
    opacity: 1;
}

.footer-about {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-muted);
    opacity: 1;
}

.footer-widget .widget-title {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-widget .widget-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 8px;
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '\f054';
    /* FontAwesome chevron-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7em;
    margin-right: 8px;
    opacity: 0.4;
    transition: all 0.2s ease;
}

.footer-links a:hover::before {
    color: var(--primary-color);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 154, 223, 0.25);
}

.footer-contact-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.contact-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px -5px rgba(0, 154, 223, 0.1);
    transform: translateX(5px);
}

.contact-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 154, 223, 0.08);
    /* Softer blue bg */
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item .text-box {
    display: flex;
    flex-direction: column;
}

.contact-item .text-box span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-item .text-box strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.info-icon {
    margin-top: 2px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.kvkk-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 15px 0;
}

.kvkk-link {
    font-size: 0.9rem !important;
}

.kvkk-link:hover {
    color: var(--secondary-color) !important;
}

.expert-badge {
    background: #fffbeb;
    color: #b45309;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fcd34d;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.payment-badges i {
    font-size: 1.8rem;
    color: #94a3b8;
    opacity: 0.8;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 10px;
    border: 1px solid #a7f3d0;
}

/* Brand Slider Section */
.wm-brands-section {
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
    background: white;
}

.brand-item {
    padding: 0 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.brand-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.classified-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.classified-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.classified-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* -------------------------------------------------------------------------- */
/* COMBINED FAQ & BLOG SECTION */
/* -------------------------------------------------------------------------- */

.wm-combined-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f8fafc;
}

.wm-side-header .wm-section-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.wm-side-header .wm-section-title::after {
    margin: 10px 0 0 0;
}

.blog-view-all {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Accordion Plus/Minus Style */
.wm-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wm-accordion-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wm-accordion-button {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-main);
}

.wm-accordion-button i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.wm-accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #f8fafc;
}

.wm-accordion-button:not(.collapsed) i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.wm-accordion-body {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Blog Carousel (Horizontal Scroll) */
.wm-blog-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px 0;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.wm-blog-carousel::-webkit-scrollbar {
    display: none;
}

.modern-blog-card.mini {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-blog-card.mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.modern-blog-card.mini .blog-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.modern-blog-card.mini .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-blog-card.mini .blog-date-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

.modern-blog-card.mini .blog-details {
    padding: 20px;
}

.modern-blog-card.mini .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.modern-blog-card.mini .blog-read-btn {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .wm-combined-section {
        padding: 60px 0;
    }

    .col-lg-5 {
        margin-bottom: 50px;
        /* Space between FAQ and Blog on mobile */
    }

    .wm-blog-carousel {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .modern-blog-card.mini {
        flex: 0 0 280px;
    }
}

/* -------------------------------------------------------------------------- */
/* FOOTER REDESIGN */
/* -------------------------------------------------------------------------- */

.main-footer {
    background: #0f172a;
    /* Deep Slate */
    color: #94a3b8;
    padding: 100px 0 0;
}

.footer-widget h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE TWEAKS */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 40px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: max-content;
    }

    .hero-text-content {
        margin-bottom: 50px;
    }

    /* Mobile Header & Bottom Nav */
    .header-wrapper {
        height: 70px;
    }

    .logo-area img {
        max-height: 40px;
    }

    .nav-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
        padding: 10px 0;
        z-index: 9999;
        border-top: 1px solid var(--border-color);
    }

    .main-menu {
        justify-content: space-around;
        gap: 0;
    }

    .main-menu li a {
        padding: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.7rem;
        gap: 4px;
        color: var(--text-muted);
        background: transparent !important;
    }

    .main-menu li a i {
        font-size: 1.4rem;
        color: var(--text-main);
    }

    .main-menu li a:hover i {
        color: var(--primary-color);
    }

    .value-btn {
        display: none;
    }

    .mega-menu {
        display: none !important;
    }
}

.logo-area img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-area img:hover {
    transform: scale(1.05);
}

/* Mega Menu / Dropdown Fixes */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 500px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(15px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--border-color);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-item h5 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.mega-menu-item ul {
    list-style: none;
    padding: 0;
}

.mega-menu-item ul li a {
    padding: 8px 0 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.mega-menu-item ul li a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* -------------------------------------------------------------------------- */
/* TRUST GALLERY (HAPPY CUSTOMERS) */
/* -------------------------------------------------------------------------- */

.wm-trust-gallery {
    padding: 100px 0;
    background: #fdfdfd;
}

.wm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 154, 223, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-tag {
    background: white;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-tag,
.gallery-item:hover i {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .wm-trust-gallery {
        padding: 60px 0;
    }

    .wm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 or more on mobile */
    }
}

@media (max-width: 576px) {
    .wm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}