/* ===== Page Loader ===== */

:root {

    /* ================================
       CORE BRAND COLORS
    ================================= */
    --primary: #003487;
    /* p */
    --secondary: #EB1928;
    /* s */
    --accent: #FFCB13;
    /* t */

    /* ================================
       PRIMARY SHADES
    ================================= */
    --primary-light: #2E5AA7;
    --primary-lighter: #5C80C4;
    --primary-dark: #002766;
    --primary-darker: #001A44;
    --primary-bg: rgba(0, 52, 135, 0.07);
    --primary-bg-hover: rgba(0, 52, 135, 0.12);

    /* ================================
       SECONDARY SHADES
    ================================= */
    --secondary-light: #F0525D;
    --secondary-lighter: #F57D84;
    --secondary-dark: #C21521;
    --secondary-darker: #8F0F18;
    --secondary-bg: rgba(235, 25, 40, 0.07);
    --secondary-bg-hover: rgba(235, 25, 40, 0.12);

    /* ================================
       ACCENT SHADES
    ================================= */
    --accent-light: #FFD948;
    --accent-lighter: #FFE57E;
    --accent-dark: #D1A40F;
    --accent-darker: #A17D0A;
    --accent-bg: rgba(255, 203, 19, 0.08);
    --accent-bg-hover: rgba(255, 203, 19, 0.14);

    /* ================================
       TEXT COLORS
    ================================= */
    --text-dark: #0F1B2B;
    --text-medium: #4B5563;
    --text-light: #FFFFFF;
    --text-accent: var(--primary);

    /* ================================
       STATUS COLORS
    ================================= */
    --success: #22C55E;
    --warning: #FFCB13;
    --error: #EB1928;
    --info: #003487;

    /* ================================
       GRADIENTS
    ================================= */
    --gradient-primary: linear-gradient(135deg, #2E5AA7 0%, #003487 100%);
    --gradient-secondary: linear-gradient(135deg, #F0525D 0%, #EB1928 100%);
    --gradient-accent: linear-gradient(135deg, #FFD948 0%, #FFCB13 100%);
    --gradient-mixed: linear-gradient(135deg, #003487 0%, #EB1928 50%, #FFCB13 100%);

    /* ================================
       SHADOWS
    ================================= */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

/* Main Icon with Cycling Service Icons */
.loader-main-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.loader-main-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-right-color: #fff;
    animation: loaderSpin 1s linear infinite;
}

.loader-main-icon::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
    animation: loaderSpinReverse 1.5s linear infinite;
}

/* Icon container for cycling */
.loader-icons-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
}

.loader-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
    animation: iconCycle 5s ease-in-out infinite;
}

.loader-icon:nth-child(1) {
    animation-delay: 0s;
}

.loader-icon:nth-child(2) {
    animation-delay: 1s;
}

.loader-icon:nth-child(3) {
    animation-delay: 2s;
}

.loader-icon:nth-child(4) {
    animation-delay: 3s;
}

.loader-icon:nth-child(5) {
    animation-delay: 4s;
}

@keyframes iconCycle {
    0% {
        opacity: 0;
        transform: scale(0.5) rotateY(90deg);
    }

    5% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }

    15% {
        opacity: 1;
        transform: scale(1.1) rotateY(0deg);
    }

    20% {
        opacity: 0;
        transform: scale(0.5) rotateY(-90deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.5) rotateY(-90deg);
    }
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderSpinReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Logo and Text */
.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.loader-logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.loader-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.loader-logo-text span {
    opacity: 0.7;
}

.loader-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Progress Bar */
.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    height: 100%;
    background: var(--dominant-white);
    border-radius: 2px;
    animation: progressLoad 2s ease-in-out infinite;
}

@keyframes progressLoad {
    0% {
        width: 0%;
        margin-left: 0;
    }

    50% {
        width: 70%;
        margin-left: 0;
    }

    100% {
        width: 0%;
        margin-left: 100%;
    }
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none !important;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dominant-lightest);
    color: var(--text-dark);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--dominant-white);
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid #eee;
}

.top-bar strong {
    color: var(--text-dark);
    cursor: pointer;
}

/* Emergency Top Bar Styles */
.top-bar.bg-danger {
    background: linear-gradient(90deg, #c41e3a 0%, #e63946 50%, #c41e3a 100%);
    background-size: 200% 100%;
    animation: emergencyGradient 3s ease infinite;
    border-bottom: none;
    font-size: 13px;
}

@keyframes emergencyGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.emergency-pulse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: emergencyPulse 1.5s ease-in-out infinite;
}

@keyframes emergencyPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.emergency-btn {
    min-height: inherit !important;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 15px !important;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #c41e3a;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.emergency-btn:hover {
    background: #fff3cd;
    color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.emergency-btn i {
    font-size: 11px;
}

.emergency-rotating-text {
    display: inline-block;
    min-width: 280px;
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.emergency-rotating-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.emergency-rotating-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .top-bar.bg-danger {
        font-size: 12px;
        padding: 8px 0;
    }

    .emergency-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.singleStrips i {
    color: var(--primary);
}

/* ===== Header ===== */
.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 6;
    /* z-index: 1000; */
}

.header-main .container {
    /* max-width: 100%; */
    /* padding: 0 30px; */
}

.header-main .row {
    justify-content: space-between;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation */
.main-nav .nav-link {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 13px;
    transition: all 0.3s;
    border-radius: 4px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--secondary);
    background-color: rgba(111, 193, 165, 0.1);
}

.main-nav .nav-link i {
    font-size: 13px;
}

/* Services Dropdown */
.main-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    margin-top: 10px;
}

.main-nav .dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-medium);
    transition: all 0.2s;
}

.main-nav .dropdown-item:hover {
    background-color: rgba(111, 193, 165, 0.12);
    color: var(--secondary);
}

.main-nav .dropdown-item i {
    font-size: 16px;
}

.main-nav .dropdown-divider {
    margin: 8px 0;
}

/* ===== Base Button Styles ===== */
.btn-base,
.btn-become-partner,
.btn-find,
.btn-login,
.btn-get-help,
.btn-get-help-sm,
.btn-learn-more,
.btn-contact,
.btn-view-all,
.btn-join,
.btn-partner-green,
.btn-partner-white,
.btn-ask-question,
.btn-submit,
.btn-search-main,
.btn-outline-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 25px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    gap: 8px;
    box-sizing: border-box;
}

.btn-find.btn-large {
    min-height: 50px;
    padding: 14px 28px;
    font-size: 16px;
}

.search-bar-wrapper .btn-find.btn-large {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #ffffff !important;
}

/* Button Size Variants */
.btn-sm,
.btn-become-partner,
.btn-find,
.btn-login {
    min-height: 40px;
    padding: 12px 20px;
    font-size: 14px;
}

.btn-lg,
.btn-view-all,
.btn-learn-more,
.btn-contact,
.btn-partner-green,
.btn-partner-white {
    min-height: 48px;
    padding: 14px 28px;
    font-size: 15px;
}

/* Become Partner Button */
.btn-become-partner {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-become-partner:hover {
    background: var(--secondary);
    color: var(--text-light);
    border-color: var(--secondary);
}

/* Search Bar */
.search-bar-wrapper {
    padding: 0;
    width: 100%;
    position: relative;
}

.search-bar {
    background: var(--dominant-white);
    border-radius: 50px;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    justify-content: space-between;
}

.search-field {
    flex: 1;
    padding: 0 15px;
}

.search-field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.search-field input,
.search-field select,
.form-select-custom,
.date-input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-medium);
    outline: none;
    width: 100%;
    cursor: pointer;
    padding: 2px 0;
    padding-left: 10px;
}

.search-field input::placeholder {
    color: #aaa;
}

.form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 18px;
}

.date-input {
    color: var(--text-medium);
}

.date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.search-field label i {
    color: var(--secondary);
}

.divider {
    width: 1px;
    height: 35px;
    background: #ddd;
}

.btn-find {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-find:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

.btn-search-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-icon:hover {
    background: var(--accent-dark);
    color: var(--text-light);
}

/* Header Actions */
.header-actions span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-globe {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.btn-login {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-login:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 32px 0px 48px 0px;
}

.hero-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Banner Grid */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

/* Hero Cards Base */
.hero-card {
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero Card Background Image for SEO */
.hero-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay for text visibility */
.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.14) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-card .card-content {
    position: relative;
    z-index: 2;
}

/* Light text for cards with image backgrounds */
.hero-card h1,
.hero-card h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.9);
}

.card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-dark {
    background: #333;
    color: #fff;
}

.badge-white {
    background: var(--primary-light);
    color: #ffffff;
}

.card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.card-arrow:hover {
    background: var(--secondary);
    color: var(--text-light);
}

/* Main Hero Card */
.main-card {
    background: var(--gradient-ocean);
    min-height: 280px;
}

.main-card h1 {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: auto;
}

.main-card .btn-get-help {
    background: var(--dominant-dark);
    border-color: var(--dominant-dark);
    color: var(--text-light);
}

.main-card .btn-get-help:hover {
    background: var(--text-medium);
    border-color: var(--text-medium);
}

/* Service Cards */
.service-card {
    min-height: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-card p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

/* Plumber Card */
.plumber-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.plumber-card .card-icon {
    background: var(--primary);
    color: #fff;
}

.plumber-card h3 {
    color: #ffffff;
}

/* Electrician Card */
.electrician-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.electrician-card .card-icon {
    background: var(--secondary);
    color: #fff;
}

.electrician-card h3 {
    color: #ffffff;
}

/* Welder Card */
.welder-card {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    min-height: calc(50% - 12px);
}

.welder-card .card-icon {
    background: var(--secondary);
    color: #fff;
}

.welder-card h3 {
    color: #ffffff;
}

/* Carpenter Card */
.carpenter-card {
    background: linear-gradient(135deg, #fef3e2 0%, #fed7aa 100%);
    min-height: calc(50% - 12px);
}

.carpenter-card .card-icon {
    background: var(--accent);
    color: #fff;
}

.carpenter-card h3 {
    color: #ffffff;
}

/* Painter Card - Tall Card */
.painter-card {
    background: linear-gradient(180deg, #c4b5fd 0%, #a78bfa 100%);
    height: 100%;
}

.painter-card .card-icon {
    background: var(--gradient-mixed);
    color: #fff;
}

.painter-card h3 {
    color: #fff;
}

.painter-card p {
    color: rgba(255, 255, 255, 0.9);
}

.painter-card .card-content {
    margin-top: auto;
}

.tall-card {
    display: flex;
    flex-direction: column;
}

.btn-get-help-sm {
    background: var(--dominant-white);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-get-help-sm:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

/* Handyman Card */
.handyman-card {
    background: var(--dominant-white);
    position: relative;
}

.handyman-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.handyman-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.handyman-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.handyman-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Admin Card */
.admin-card {
    background: var(--dominant-white);
    position: relative;
}

.admin-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.admin-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Shipping Card */
.shipping-card {
    background: linear-gradient(135deg, #e8e4f8 0%, #d4d0f0 100%);
    position: relative;
}

.shipping-card .card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 70%;
}

.shipping-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.shipping-card .card-content {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.shipping-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

/* Join Card */
.join-card {
    background: var(--dominant-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.join-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.join-card .btn-join {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.join-card .btn-join:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

/* Tasker Card */
.tasker-card {
    background: var(--dominant-white);
}

.tasker-avatars {
    margin-bottom: 15px;
}

.avatar-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-name {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    white-space: nowrap;
}

.avatar:nth-child(2) .avatar-name {
    background: var(--success);
}

.avatar:nth-child(3) .avatar-name {
    background: var(--accent);
}

.avatar:nth-child(4) .avatar-name {
    background: var(--warning);
}

.dots-indicator {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.dot.active {
    background: var(--secondary);
}

.tasker-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tasker-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Office Card */
.office-card {
    grid-row: span 2;
    background: linear-gradient(180deg, #4a90d9 0%, #2563eb 100%);
    position: relative;
    color: #fff;
}

.office-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
}

.office-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.office-card .card-content {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.office-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.office-card p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.5;
}

.office-card .btn-get-help-sm {
    background: var(--dominant-white);
    color: var(--text-dark);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ===== Service Providers Section ===== */
.providers-section {
    background: var(--dominant-white);
    padding: 65px 0px;
}

.providers-slider-wrapper {
    overflow: hidden;
}

.providers-swiper {
    overflow: visible;
    padding: 10px 0;
}

.providers-swiper .swiper-wrapper {
    transition-timing-function: ease-out;
}

.providers-swiper .swiper-slide {
    height: auto;
    width: auto !important;
}

.providers-swiper .provider-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile: 1 full card + 30% of next card */
@media (max-width: 767px) {
    .providers-slider-wrapper {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }

    .providers-swiper {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

    .providers-swiper .swiper-slide {
        width: auto !important;
    }

    .providers-swiper .provider-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.providers-pagination {
    position: relative;
    margin-top: 16px;
    text-align: center;
}

.providers-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-color, #4f46e5);
    opacity: 0.3;
    transition: all 0.25s ease;
    margin: 0 4px;
}

.providers-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

/* Navigation Buttons */
.providers-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.providers-slider-wrapper .slider-nav:hover {
    background: var(--secondary, #4f46e5);
    border-color: var(--secondary, #4f46e5);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.providers-slider-wrapper .slider-prev {
    left: 0px;
}

.providers-slider-wrapper .slider-next {
    right: 0px;
}

@media (max-width: 1024px) {
    .providers-slider-wrapper .slider-prev {
        left: -15px;
    }

    .providers-slider-wrapper .slider-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .providers-slider-wrapper .slider-nav {
        width: 36px;
        height: 36px;
    }

    .providers-slider-wrapper .slider-prev {
        left: -10px;
    }

    .providers-slider-wrapper .slider-next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .providers-slider-wrapper .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .providers-slider-wrapper .slider-prev {
        left: -5px;
    }

    .providers-slider-wrapper .slider-next {
        right: -5px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Category Tabs */
.category-tabs-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}

.category-tabs {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    scroll-behavior: smooth;
    max-width: 100%;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    /* background-color: #ffffff;
    border-radius: 4px; */
}

.category-tab:hover {
    color: var(--secondary);
}

.category-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.category-tab .tab-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--dominant-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.category-tab:hover .tab-icon,
.category-tab.active .tab-icon {
    background: rgba(111, 193, 165, 0.12);
    color: var(--secondary);
}

.category-tab span {
    font-size: 13px;
    font-weight: 500;
}

.scroll-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: var(--dominant-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn.scroll-left {
    left: 0;
}

.scroll-btn.scroll-right {
    right: 0;
}

.scroll-btn:hover {
    background: var(--secondary);
    color: var(--text-light);
    border-color: var(--secondary);
}

.scroll-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.scroll-btn.disabled:hover {
    background: var(--dominant-white);
    color: inherit;
    border-color: #e0e0e0;
}

/* Category Tabs Responsive */
@media (max-width: 991px) {
    .category-tabs-wrapper {
        padding: 0 45px;
    }

    .category-tabs {
        gap: 12px;
    }

    .category-tab {
        padding: 10px 12px;
        flex-shrink: 0;
    }

    .category-tab .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .category-tab span {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .category-tabs-wrapper {
        padding: 0;
    }

    .category-tabs-wrapper .scroll-btn {
        display: none !important;
    }

    .category-tabs-mobile-wrapper {
        position: relative;
        width: 100%;
    }

    .category-tabs {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow: hidden;
        max-height: 245px;
        transition: max-height 0.3s ease;
        padding: 10px 0;
    }

    .category-tabs.expanded {
        max-height: 2000px;
    }

    .category-tab {
        padding: 10px 8px;
        border-radius: 12px;
        background: var(--dominant-soft);
        border-bottom: none;
        width: calc(25% - 6px);
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .category-tab.active {
        background: rgba(111, 193, 165, 0.15);
        border-bottom: none;
    }

    .category-tab .tab-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .category-tab span {
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
    }

    .view-more-btn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 8px;
        width: calc(25% - 6px);
        background: var(--secondary) !important;
        color: #fff !important;
        border: none;
        cursor: pointer;
        border-radius: 12px;
        position: absolute;
        right: 0;
        bottom: 10px;
        box-sizing: border-box;
    }

    .view-more-btn .tab-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        font-size: 16px;
    }

    .view-more-btn span {
        color: #fff;
        font-size: 11px;
        font-weight: 500;
    }

    .view-more-btn.expanded .tab-icon i:before {
        content: "\F2EA";
    }

    .scroll-btn {
        width: 32px;
        height: 32px;
    }
}

.singleStrips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

@media (max-width: 480px) {
    .category-tabs {
        max-height: 280px;
        justify-content: space-between;
    }

    .provider-name {
        font-size: 16px !important;
    }

    .provider-location {
        font-size: 12px !important;
    }

    .singleStrips {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }

    .category-tab {
        padding: 8px 6px;
    }

    .marginZero {
        margin-top: 0 !important;
    }

    .category-tab .tab-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }

    .category-tab span {
        font-size: 10px;
    }

    .view-more-btn {
        padding: 8px 6px;
        bottom: 10px;
    }

    .view-more-btn .tab-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }

    .view-more-btn span {
        font-size: 10px;
    }

    .scroll-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

/* Hide view more button and mobile wrapper styles on larger screens */
@media (min-width: 768px) {
    .view-more-btn {
        display: none !important;
    }

    .category-tabs-mobile-wrapper {
        display: contents;
    }
}

/* Filter Pills */
.filter-pills-wrapper {
    padding: 5px 0;
}

.filter-pill {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    background: var(--dominant-white);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-pill:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-pill.active {
    background: var(--secondary);
    color: var(--text-light);
    border-color: var(--secondary);
}

.scroll-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.scroll-pill:hover {
    background: var(--secondary-dark);
}

/* Provider Cards Slider */
.providers-slider-wrapper {
    overflow: hidden;
}

.providers-slider {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.providers-slider::-webkit-scrollbar {
    display: none;
}

.provider-card {
    min-width: 250px;
    max-width: 250px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--dominant-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.providers-swiper .provider-image {
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edecec;
}

/* .providers-swiper .provider-image img{
    height: 135px;
    width: 135px;
    border-radius: 50%;
} */
.provider-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.provider-card:hover .provider-image img {
    transform: scale(1.05);
}

.provider-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.providers-swiper .provider-badges .badge {
    font-size: 10px;
    padding: 5px 10px;
}

.provider-badges .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 15px;
}

.provider-info {
    padding: 18px;
}

.provider-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.provider-rating {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.provider-rating i {
    color: var(--electrician);
    margin-right: 3px;
}

.providers-swiper .provider-location {
    border-bottom: 1px solid #edecec;
    padding-bottom: 8px;
}

.provider-badges.position-static {
    border-bottom: 1px solid #edecec;
    padding-bottom: 10px;
}

.provider-location {
    font-size: 13px;
    color: var(--text-muted);
    margin: 5px 0 10px;
}

.provider-location i {
    margin-right: 4px;
}

.provider-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    display: none;
}

.rate-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.rate-unit {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: auto;
}

/* Provider Contact Icons (Call & WhatsApp) */
.provider-contact-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px;
    top: -80px;
    left: 0;
    width: 100%;
}

.provider-contact-icons .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.provider-contact-icons .call-icon {
    background-color: #dc3545;
    color: #ffffff;
}

.provider-contact-icons .call-icon:hover {
    background-color: #bb2d3b;
    transform: scale(1.1);
}

.provider-contact-icons .whatsapp-icon {
    background-color: #25D366;
    color: #ffffff;
}

.provider-contact-icons .whatsapp-icon:hover {
    background-color: #1fb855;
    transform: scale(1.1);
}

/* Provider Contact Buttons (Text Buttons Style) */
.provider-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.provider-contact-buttons .btn-call,
.provider-contact-buttons .btn-whatsapp {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.provider-contact-buttons .btn-call {
    background-color: #dc3545;
    color: #ffffff;
}

.provider-contact-buttons .btn-call:hover {
    background-color: #bb2d3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.provider-contact-buttons .btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.provider-contact-buttons .btn-whatsapp:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Service Page Provider Card - Match Home Page Design */
.services-page-section .provider-card,
.providers-container .provider-card {
    min-width: 100%;
    max-width: 100%;
}

.services-page-section .provider-image,
.providers-container .provider-image {
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edecec;
    background: #f8f9fa;
}

.services-page-section .provider-image img,
.providers-container .provider-image img {
    height: 135px;
    width: 135px;
    border-radius: 50%;
    object-fit: cover;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* Slider Progress */
.slider-progress {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-progress .progress-bar {
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s;
}

/* ===== About Us Section ===== */
.about-section {
    background: var(--dominant-white);
    padding: 100px 0;
    overflow: hidden;
}

/* About Images */
.about-images-wrapper {
    position: relative;
    padding: 30px;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-images .image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-images .image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 6px solid #fff;
    z-index: 3;
}

.about-images .image-main img,
.about-images .image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-images .image-main:hover img,
.about-images .image-secondary:hover img {
    transform: scale(1.08);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 130px;
    height: 130px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: var(--shadow-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.experience-badge .exp-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
}

/* Decorative Shapes */
.about-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: rgba(111, 193, 165, 0.1);
    top: -50px;
    left: -50px;
}

.about-shape.shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(111, 193, 165, 0.15);
    bottom: 50px;
    right: 80px;
}

/* About Content */
.about-content {
    padding-left: 30px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-label i {
    font-size: 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 25px;
}

.about-title .highlight {
    color: var(--secondary);
    position: relative;
}

.about-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(111, 193, 165, 0.25);
    z-index: -1;
}

.about-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Features List */
.about-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s;
}

.about-content .feature-item {
    margin-bottom: 0;
}

.feature-item:hover {
    background: var(--dominant-light);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(111, 193, 165, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: var(--secondary);
}

.feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* About Buttons */
.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-learn-more {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-learn-more:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-contact {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-contact:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

/* ===== Services Section ===== */
.services-section {
    background: var(--dominant-light);
    padding: 100px 0;
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label i {
    font-size: 20px;
}

.section-label-light {
    color: var(--secondary-light);
}

.section-main-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 15px;
}

.section-main-title .highlight {
    color: var(--secondary);
    position: relative;
}

.section-main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(111, 193, 165, 0.25);
    z-index: -1;
}

/* Light variant for dark backgrounds */
.section-main-title-light {
    color: #fff;
}

.section-main-title .highlight-light {
    color: var(--secondary-light);
    position: relative;
}

.section-main-title .highlight-light::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(143, 212, 188, 0.35);
    z-index: -1;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Service Box */
.service-box {
    background: var(--dominant-white);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s;
    border: 1px solid #eee;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s;
}

.service-box:hover .service-icon {
    transform: rotateY(180deg);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
}

/* Service Icon Colors */
.plumber-icon {
    background: rgba(14, 165, 233, 0.12);
    color: var(--plumber);
}

.electrician-icon {
    background: rgba(245, 158, 11, 0.12);
    color: var(--electrician);
}

.carpenter-icon {
    background: rgba(217, 119, 6, 0.12);
    color: var(--carpenter);
}

.painter-icon {
    background: rgba(139, 92, 246, 0.12);
    color: var(--painter);
}

.welder-icon {
    background: rgba(239, 68, 68, 0.12);
    color: var(--welder);
}

.ac-icon {
    background: rgba(6, 182, 212, 0.12);
    color: var(--ac-repair);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-medium);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--success);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover {
    color: var(--secondary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* View All Button */
.btn-view-all {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-view-all:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background: var(--dominant-white);
    padding: 100px 0;
    overflow: hidden;
}

/* Why Choose Image */
.why-choose-image {
    position: relative;
    padding: 40px 30px 40px 0;
}

.image-main-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.image-main-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.image-main-frame:hover img {
    transform: scale(1.05);
}

.image-small-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.image-small-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-small-frame:hover img {
    transform: scale(1.1);
}

/* Floating Stats Card */
.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--dominant-white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-item {
    text-align: center;
}

.floating-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.floating-stats .stat-label {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

/* Decorative Elements */
.why-dots {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 1;
}

.why-circle-badge {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(76, 175, 122, 0.4);
    animation: pulse 2s infinite;
}

.why-circle-badge i {
    font-size: 32px;
    color: #fff;
}

/* Why Choose Content */
.why-choose-content {
    padding-left: 30px;
}

.why-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-line {
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.why-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 25px;
}

.why-title .text-highlight {
    color: var(--secondary);
    position: relative;
}

.why-title .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(111, 193, 165, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.why-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Stats Row */
.why-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.why-stat {
    text-align: center;
}

.why-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.why-stat-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Why Features Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature-box {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 15px;
    transition: all 0.3s;
    background: var(--dominant-light);
    border: 1px solid #eee;
}

.why-feature-box:hover {
    background: var(--dominant-white);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(111, 193, 165, 0.15);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(111, 193, 165, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.why-feature-icon i {
    font-size: 20px;
    color: var(--secondary);
    transition: all 0.3s;
}

.why-feature-icon.icon-yellow {
    background: rgba(245, 158, 11, 0.12);
}

.why-feature-icon.icon-yellow i {
    color: var(--electrician);
}

.why-feature-icon.icon-green {
    background: rgba(34, 197, 94, 0.12);
}

.why-feature-icon.icon-green i {
    color: var(--success);
}

.why-feature-icon.icon-red {
    background: rgba(239, 68, 68, 0.12);
}

.why-feature-icon.icon-red i {
    color: var(--welder);
}

.why-feature-box:hover .why-feature-icon {
    transform: rotateY(180deg);
}

.why-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.why-feature-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.listPoints {
    padding: 0;
    list-style: none;
}

.listPoints li {
    position: relative;
    margin-bottom: 0px;
    color: #ffffff;
    opacity: .8;
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    /* .search-bar-wrapper {
        display: none;
    } */

    .main-card h1 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .hero-card {
        min-height: 180px;
    }

    .main-card {
        min-height: 220px;
    }

    .main-card h1 {
        font-size: 20px;
    }

    .tall-card {
        height: auto;
        min-height: 200px;
    }

    .service-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    /* About Section */
    .about-section {
        padding: 70px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-images {
        height: 420px;
    }

    .about-images .image-main {
        width: 320px;
        height: 380px;
    }

    .about-images .image-secondary {
        width: 240px;
        height: 280px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
    }

    .experience-badge .exp-number {
        font-size: 30px;
    }

    /* Services Section */
    .services-section {
        padding: 70px 0;
    }

    .section-main-title {
        font-size: 32px;
    }

    .service-box {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .service-number {
        font-size: 40px;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 34px;
    }

    .image-main-frame img {
        height: 400px;
    }

    .image-small-frame {
        width: 170px;
        height: 150px;
    }

    .why-stats-row {
        gap: 30px;
    }

    .why-stat-number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-actions span {
        /* display: none; */
    }

    .service-card {
        min-height: 180px;
    }

    .btn-become-partner {
        display: none;
    }

    .section-title {
        font-size: 22px;
    }

    .slider-nav {
        display: none;
    }

    .provider-card {
        min-width: 220px;
        max-width: 220px;
    }

    .provider-image {
        height: 240px;
    }

    /* About Section */
    .about-images-wrapper {
        margin-bottom: 20px;
        padding: 0;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-title {
        font-size: 28px;
    }

    .about-images {
        height: 350px;
    }

    .about-images .image-main {
        width: 280px;
        height: 320px;
        right: 10%;
    }

    .about-images .image-secondary {
        width: 200px;
        height: 240px;
        left: 5%;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: 60px;
    }

    .experience-badge .exp-number {
        font-size: 26px;
    }

    .experience-badge .exp-text {
        font-size: 10px;
    }

    .feature-item {
        justify-content: start;
        text-align: left;
    }

    .about-buttons {
        justify-content: center;
    }

    /* Services Section */
    .section-main-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .service-title {
        font-size: 20px;
    }

    /* Why Choose Us Section */
    .why-choose-image {
        margin-bottom: 40px;
        padding: 20px;
    }

    .why-choose-content {
        padding-left: 0;
        text-align: center;
    }

    .why-title {
        font-size: 28px;
    }

    .image-main-frame img {
        height: 350px;
    }

    .image-small-frame {
        width: 150px;
        height: 130px;
    }

    .floating-stats {
        left: 15px;
        bottom: 50px;
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 26px;
    }

    .why-dots {
        display: none;
    }

    .why-circle-badge {
        width: 55px;
        height: 55px;
        top: 40px;
        right: 40px;
    }

    .why-circle-badge i {
        font-size: 24px;
    }

    .why-stats-row {
        justify-content: center;
        gap: 25px;
    }

    .why-stat-number {
        font-size: 28px;
    }

    .why-features-grid {
        gap: 15px;
    }

    .why-feature-box {
        padding: 15px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 16px;
    }

    .btn-login {
        padding: 8px 15px;
        font-size: 12px;
    }

    .hero-section {
        padding: 15px 0;
    }

    .hero-card {
        min-height: 180px;
        padding: 15px;
    }

    .main-card h1 {
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }

    .section-title {
        font-size: 20px;
    }

    .category-tab {
        padding: 10px 0px;
        width: 80px;
    }

    .category-tab .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .filter-pill {
        padding: 8px 15px;
        font-size: 12px;
    }

    .provider-card {
        min-width: 200px;
        max-width: 200px;
    }

    .provider-image {
        height: 200px;
    }

    .provider-info {
        padding: 12px;
    }

    .provider-name {
        font-size: 14px;
    }

    .rate-amount {
        font-size: 18px;
    }

    /* About Section */
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-images {
        height: 300px;
    }

    .about-images .image-main {
        width: 220px;
        height: 260px;
        right: 5%;
    }

    .about-images .image-secondary {
        width: 160px;
        height: 200px;
        left: 0;
    }

    .experience-badge {
        width: 85px;
        height: 85px;
        bottom: 40px;
    }

    .experience-badge .exp-number {
        font-size: 22px;
    }

    .experience-badge .exp-text {
        font-size: 9px;
    }

    .about-shape {
        display: none;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .feature-text h5 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }

    .btn-learn-more,
    .btn-contact {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .about-buttons {
        flex-direction: column;
    }

    /* Services Section */
    .services-section {
        padding: 50px 0;
    }

    .section-main-title {
        font-size: 24px;
    }

    .service-box {
        padding: 25px 20px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        border-radius: 14px;
    }

    .service-number {
        font-size: 36px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-desc {
        font-size: 13px;
    }

    .service-features li {
        font-size: 13px;
    }

    .btn-view-all {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-image {
        padding: 15px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-title .text-highlight::after {
        height: 6px;
        bottom: 4px;
    }

    .why-description {
        font-size: 14px;
    }

    .image-main-frame img {
        height: 280px;
    }

    .image-small-frame {
        width: 120px;
        height: 110px;
        border-width: 3px;
    }

    .floating-stats {
        padding: 12px 15px;
        left: 10px;
        bottom: 40px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }

    .why-circle-badge {
        width: 50px;
        height: 50px;
        top: 30px;
        right: 30px;
    }

    .why-circle-badge i {
        font-size: 20px;
    }

    .why-stats-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .why-stat-number {
        font-size: 24px;
    }

    .why-stat-text {
        font-size: 11px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-feature-box {
        padding: 15px;
    }

    .why-feature-icon {
        width: 45px;
        height: 45px;
    }

    .why-feature-icon i {
        font-size: 18px;
    }

    .why-feature-content h4 {
        font-size: 15px;
    }

    .why-feature-content p {
        font-size: 12px;
    }
}

/* ============================================
   Statistics Section
============================================ */
.statistics-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.col-6:nth-child(2) .stat-item::after,
.col-md-3:last-child .stat-item::after {
    display: none;
}

@media (min-width: 768px) {
    .col-6:nth-child(2) .stat-item::after {
        display: block;
    }

    .col-md-3:last-child .stat-item::after {
        display: none;
    }
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgb(255 255 255 / 50%), rgb(255 255 255 / 50%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-mint);
    opacity: 0.3;
    z-index: -1;
}

.stat-icon i {
    font-size: 32px;
    color: #ffffff;
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* Statistics Responsive */
@media (max-width: 992px) {
    .statistics-section {
        padding: 70px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .stat-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-item::after {
        display: none;
    }

    .col-6:nth-child(odd) .stat-item::after {
        display: block;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 50px 0;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .stat-icon i {
        font-size: 22px;
    }
}

/* ============================================
   FAQ Section
============================================ */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-content {
    padding-right: 30px;
}

.faq-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.faq-title .text-highlight {
    position: relative;
    display: inline;
}

.faq-title .text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 10px;
    background-color: rgba(16, 185, 129, 0.3);
    z-index: -1;
}

.faq-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-ask-question {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-ask-question:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-ask-question i {
    transition: transform 0.3s ease;
}

.btn-ask-question:hover i {
    transform: translateX(5px);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dominant-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.faq-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    min-width: 25px;
}

.faq-question-text span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background-color: var(--secondary);
}

.faq-question[aria-expanded="true"] .faq-icon i {
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 22px 65px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* FAQ Responsive Styles */
@media (max-width: 1200px) {
    .faq-title {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-title .text-highlight::after {
        height: 8px;
        bottom: 5px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text span:last-child {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 18px 55px;
        font-size: 14px;
    }

    .btn-ask-question {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question-text {
        gap: 10px;
    }

    .faq-number {
        font-size: 14px;
        min-width: 20px;
    }

    .faq-question-text span:last-child {
        font-size: 14px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
    }

    .faq-icon i {
        font-size: 12px;
    }

    .faq-answer {
        padding: 0 15px 15px 45px;
        font-size: 13px;
    }

    .btn-ask-question {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Join as Partner Section
============================================ */
.partner-section {
    padding: 80px 0;
    background-color: var(--dominant-white);
}

.partner-wrapper {
    background-color: var(--text-dark);
    border-radius: 30px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.decorative-lines.left {
    left: 30px;
    bottom: 40px;
}

.decorative-lines.right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-lines span {
    display: block;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.decorative-lines.left span:nth-child(1) {
    width: 80px;
}

.decorative-lines.left span:nth-child(2) {
    width: 100px;
}

.decorative-lines.left span:nth-child(3) {
    width: 120px;
}

.decorative-lines.left span:nth-child(4) {
    width: 90px;
}

.decorative-lines.right span {
    width: 60px;
    transform-origin: right center;
}

.decorative-lines.right span:nth-child(1) {
    transform: rotate(-30deg);
    width: 80px;
}

.decorative-lines.right span:nth-child(2) {
    transform: rotate(-20deg);
    width: 100px;
}

.decorative-lines.right span:nth-child(3) {
    transform: rotate(-10deg);
    width: 120px;
}

.decorative-lines.right span:nth-child(4) {
    transform: rotate(0deg);
    width: 100px;
}

/* Partner Content */
.partner-content {
    position: relative;
    z-index: 2;
}

.partner-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    font-style: italic;
}

.title-underline {
    position: relative;
    display: inline;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: rgba(16, 185, 129, 0.5);
    z-index: -1;
    border-radius: 4px;
}

.partner-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Partner Actions */
.partner-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-partner-green {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-accent);
}

.btn-partner-green:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-partner-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
}

.btn-partner-white:hover {
    background: var(--dominant-white);
    border-color: var(--dominant-white);
    color: var(--text-dark);
}

.partner-slider-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-slider-nav .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-slider-nav .nav-btn:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
}

.partner-slider-nav .slide-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Partner Images */
.partner-images {
    position: relative;
    height: 320px;
    margin-left: 20px;
}

.floating-chat-icon {
    position: absolute;
    top: -15px;
    left: 100px;
    width: 60px;
    height: 60px;
    background: var(--gradient-mint);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: floatChat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.floating-chat-icon i {
    font-size: 26px;
    color: #fff;
}

@keyframes floatChat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

.partner-img-main {
    position: absolute;
    top: 20px;
    left: 0;
    width: 280px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 3;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

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

.partner-img-main:hover img {
    transform: scale(1.05);
}

.partner-img-secondary {
    position: absolute;
    top: 0;
    right: 20px;
    width: 200px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.partner-img-secondary:hover img {
    transform: scale(1.05);
}

.partner-img-third {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 180px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.partner-img-third:hover img {
    transform: scale(1.05);
}

.partner-stats-card {
    position: absolute;
    bottom: 20px;
    left: 180px;
    background: var(--dominant-white);
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 5;
    animation: floatStats 4s ease-in-out infinite;
}

@keyframes floatStats {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.partner-stats-card .stats-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.partner-stats-card .stats-number {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-stats-card .stats-number span {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

.partner-stats-card .stats-number i {
    font-size: 22px;
    color: var(--secondary);
}

.cursor-icon {
    position: absolute;
    bottom: 0;
    left: 320px;
    z-index: 6;
}

.cursor-icon i {
    font-size: 32px;
    color: #a5b4fc;
    transform: rotate(-10deg);
    filter: drop-shadow(0 5px 10px rgba(165, 180, 252, 0.5));
}

/* Partner Section Responsive */
@media (max-width: 1200px) {
    .header-main img {
        height: 40px;
    }

    .main-nav .nav-link {
        font-size: 13px;
        padding: 5px 10px;
        line-height: 1.3;
    }

    .live-activity-link {
        padding: 5px 10px;
    }

    .header-actions span {
        font-size: 13px;
    }

    .custom-lang-dropdown .lang-btn {
        padding: 6px 12px !important;
    }

    .btn-become-partner {
        padding: 8px 15px;
        font-size: 13px;
        min-height: inherit;
    }

    .partner-wrapper {
        padding: 50px 60px;
    }

    .partner-title {
        font-size: 32px;
    }

    .partner-images {
        margin-left: 15px;
        height: 300px;
    }

    .partner-img-main {
        width: 250px;
        height: 210px;
    }

    .partner-img-secondary {
        width: 180px;
        height: 140px;
        right: 10px;
    }

    .partner-img-third {
        width: 160px;
        height: 120px;
    }

    .partner-stats-card {
        left: 150px;
    }

    .floating-chat-icon {
        left: 80px;
    }
}

@media (max-width: 992px) {
    .partner-wrapper {
        padding: 50px 40px;
    }

    .partner-title {
        font-size: 28px;
    }

    .partner-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .partner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .partner-images {
        margin-left: 0;
        height: 300px;
        display: flex;
        justify-content: center;
    }

    .partner-img-main {
        position: relative;
        top: auto;
        left: auto;
        width: 240px;
        height: 200px;
    }

    .partner-img-secondary {
        position: absolute;
        top: -15px;
        right: 5%;
        width: 160px;
        height: 130px;
    }

    .partner-img-third {
        position: absolute;
        bottom: 30px;
        right: 0;
        width: 140px;
        height: 110px;
    }

    .floating-chat-icon {
        left: 5%;
        top: -15px;
    }

    .partner-stats-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    @keyframes floatStats {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    .cursor-icon {
        display: none;
    }

    .decorative-lines.left {
        left: 20px;
        bottom: 20px;
    }

    .decorative-lines.right {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 60px 0;
    }

    .partner-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .partner-title {
        font-size: 24px;
    }

    .title-underline::after {
        height: 6px;
        bottom: 3px;
    }

    .partner-description {
        font-size: 14px;
    }

    .btn-partner-green,
    .btn-partner-white {
        padding: 14px 25px;
        font-size: 14px;
    }

    .partner-images {
        height: 280px;
    }

    .partner-img-main {
        width: 200px;
        height: 170px;
    }

    .partner-img-secondary {
        width: 140px;
        height: 110px;
    }

    .partner-img-third {
        width: 120px;
        height: 95px;
        bottom: 40px;
    }

    .floating-chat-icon {
        width: 50px;
        height: 50px;
    }

    .floating-chat-icon i {
        font-size: 22px;
    }

    .partner-stats-card {
        padding: 14px 22px;
    }

    .partner-stats-card .stats-number span {
        font-size: 26px;
    }

    .decorative-lines span {
        height: 2px;
    }

    .decorative-lines.left span:nth-child(1) {
        width: 50px;
    }

    .decorative-lines.left span:nth-child(2) {
        width: 70px;
    }

    .decorative-lines.left span:nth-child(3) {
        width: 90px;
    }

    .decorative-lines.left span:nth-child(4) {
        width: 60px;
    }

    .decorative-lines.right span:nth-child(1) {
        width: 50px;
    }

    .decorative-lines.right span:nth-child(2) {
        width: 70px;
    }

    .decorative-lines.right span:nth-child(3) {
        width: 90px;
    }

    .decorative-lines.right span:nth-child(4) {
        width: 70px;
    }
}

@media (max-width: 576px) {
    .partner-section {
        padding: 40px 0;
    }

    .partner-wrapper {
        padding: 35px 20px;
    }

    .partner-title {
        font-size: 20px;
    }

    .partner-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .partner-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-partner-green,
    .btn-partner-white {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .partner-images {
        height: 260px;
    }

    .partner-img-main {
        width: 180px;
        height: 150px;
    }

    .partner-img-secondary {
        width: 120px;
        height: 95px;
    }

    .partner-img-third {
        width: 100px;
        height: 80px;
        bottom: 50px;
    }

    .partner-stats-card {
        padding: 12px 18px;
    }

    .partner-stats-card .stats-number span {
        font-size: 22px;
    }

    .partner-stats-card .stats-label {
        font-size: 11px;
    }

    .floating-chat-icon {
        width: 45px;
        height: 45px;
    }

    .floating-chat-icon i {
        font-size: 18px;
    }

    .decorative-lines {
        display: none;
    }
}

/* ============================================
   Testimonial Section
============================================ */
.testimonial-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.testimonial-header {
    padding-right: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.testimonial-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonial-title .text-highlight {
    position: relative;
    display: inline;
    color: var(--secondary);
}

.testimonial-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.testimonial-nav .nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: var(--dominant-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.testimonial-nav .nav-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}

/* Testimonial Swiper Slider */
.testimonial-swiper {
    overflow: hidden;
    padding-bottom: 50px;
}

.testimonial-swiper .swiper-wrapper {
    padding: 10px 0;
}

.testimonial-card {
    background: var(--dominant-white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    height: auto;
}

.swiper-slide-active .testimonial-card,
.swiper-slide-next .testimonial-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Swiper Pagination */
.testimonial-swiper .swiper-pagination {
    bottom: 0;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 35px;
    border-radius: 10px;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 24px;
    color: #fff;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-right: 50px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    font-size: 18px;
    color: #ffc107;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Swiper Slide Styling */
.swiper-slide {
    height: auto;
}

/* Testimonial Responsive */
@media (max-width: 1200px) {
    .testimonial-title {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .testimonial-title {
        font-size: 30px;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 26px;
    }

    .testimonial-desc {
        font-size: 14px;
    }

    .testimonial-nav .nav-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
        padding-right: 40px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px;
    }

    .quote-icon i {
        font-size: 18px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info span {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-title {
        font-size: 22px;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
        padding-right: 30px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonial-swiper .swiper-pagination-bullet-active {
        width: 28px;
    }
}

/* ============================================
   Blog Section
============================================ */
.blog-section {
    background-color: var(--dominant-white);
    padding: 65px 0px;
}

.section-badge-primary {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-primary-custom {
    color: var(--secondary);
}

.btn-outline-primary-custom {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-primary-custom:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
}

.badge-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    font-weight: 500;
}

.blog-read-more {
    color: var(--secondary);
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-dark);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 6px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.blog-card .blog-img {
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-section .card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Disclaimer Marquee Section
============================================ */
.disclaimer-marquee {
    background: var(--secondary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    /* background: linear-gradient(to right, #1e293b, transparent); */
    z-index: 2;
    pointer-events: none;
}

.disclaimer-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    /* background: linear-gradient(to left, #334155, transparent); */
    z-index: 2;
    pointer-events: none;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.marquee-item i {
    color: #fbbf24;
    font-size: 16px;
}

.marquee-item i.bi-exclamation-triangle-fill {
    color: #f87171;
}

.marquee-item i.bi-shield-exclamation {
    color: #fb923c;
}

.marquee-item i.bi-info-circle-fill {
    color: #60a5fa;
}

.marquee-item i.bi-cash-stack {
    color: #4ade80;
}

.marquee-item i.bi-telephone-fill {
    color: #a78bfa;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Marquee Responsive */
@media (max-width: 768px) {
    .disclaimer-marquee {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 12px;
        padding: 0 30px;
        gap: 6px;
    }

    .marquee-item i {
        font-size: 14px;
    }

    .disclaimer-marquee::before,
    .disclaimer-marquee::after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .disclaimer-marquee {
        padding: 10px 0;
    }

    .marquee-item {
        font-size: 11px;
        padding: 0 25px;
    }

    .marquee-item i {
        font-size: 12px;
    }

    .disclaimer-marquee::before,
    .disclaimer-marquee::after {
        width: 30px;
    }

    .marquee-content {
        animation-duration: 30s;
    }
}

/* ============================================
   Footer Section
============================================ */
.footer-section {
    background-color: var(--text-dark);
    padding-top: 80px;
}

.footer-main {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 22px;
    color: #fff;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    font-style: italic;
    margin-top: 20px;
    line-height: 1.3;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links li a i {
    font-size: 10px;
    opacity: 0.5;
}

.footer-links li a:hover {
    color: #a5b4fc;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #a5b4fc;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 18px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-tagline {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding-top: 60px;
    }

    .footer-tagline {
        font-size: 26px;
        margin-top: 15px;
    }

    .footer-bottom-left {
        text-align: center;
        align-items: center;
    }

    .footer-bottom-right {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 50px;
    }

    .footer-main {
        padding-bottom: 40px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        font-size: 24px;
        text-align: center;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding-top: 40px;
    }

    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-logo .logo-icon i {
        font-size: 18px;
    }

    .footer-logo .logo-text {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 20px;
    }

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

    .footer-bottom-left {
        gap: 8px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link i {
        font-size: 14px;
    }
}


.contact-section {
    padding: 80px 0px;
}

.contact-card {
    background: var(--dominant-white);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-card .info-label {
    margin-top: 0;
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
}

.contact-sub {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 25px;
}

.info-label {
    font-weight: 600;
    margin-bottom: 3px;
    margin-top: 20px;
}

.form-control,
.form-select {
    border-radius: 10px;
    height: 48px;
    font-size: 15px;
}

textarea.form-control {
    height: 130px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-submit:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

/* ===== Services Page Styles ===== */
.services-page-section {
    background-color: #f0f4f8;
    min-height: calc(100vh - 200px);
}

/* Page Header */
.page-header {
    padding: 10px 0 20px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* Search & Filter Section */
.search-filter-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Main Search Bar */
.main-search-bar .search-input-wrapper {
    position: relative;
}

.main-search-bar .search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 16px;
}

.main-search-bar .location-use-current {
    position: relative;
}

.main-search-bar .location-use-current span {
    margin-left: 20px;
}

.main-search-bar .location-use-current i {
    position: absolute;
    top: 25px;
    left: 12px;
}

.main-search-bar .location-suggestion-item i {
    position: inherit;
    margin-top: 10px;
}

.main-search-bar .search-input-wrapper .form-control {
    padding-left: 45px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    font-size: 14px;
    transition: all 0.3s;
}

.main-search-bar .search-input-wrapper .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.main-search-bar .form-select {
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    font-size: 14px;
    cursor: pointer;
}

.main-search-bar .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-search-main {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-search-main:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

/* Advanced Toggle Button */
.btn-advanced-toggle {
    height: 50px;
    min-width: 50px;
    background: var(--dominant-white);
    border: 2px solid #e8e8e8;
    color: var(--text-medium);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.btn-advanced-toggle:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: #f8f7ff;
}

.btn-advanced-toggle[aria-expanded="true"] {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-advanced-toggle i {
    font-size: 18px;
}

/* Advanced Filters Panel */
.advanced-filters-panel {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #eee;
}

.filter-panel-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-panel-header h6 i {
    color: var(--secondary);
}

.active-filter-tag {
    background: var(--secondary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-filter-tag i {
    cursor: pointer;
    opacity: 0.8;
}

.active-filter-tag i:hover {
    opacity: 1;
}

/* Filter Groups */
.filter-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    height: 100%;
}

.filter-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.filter-label i {
    color: var(--secondary);
}

.filter-group .form-control,
.filter-group .form-select {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: var(--secondary);
    box-shadow: none;
}

/* Price Range Inputs */
.price-range-inputs .form-control {
    width: 80px;
    text-align: center;
}

.btn-price-filter {
    background: var(--dominant-white);
    border: 1px solid #ddd;
    color: var(--text-muted);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s;
}

.btn-price-filter:hover,
.btn-price-filter.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* Rating Filter */
.rating-filter-options .form-check {
    margin-bottom: 8px;
}

.rating-filter-options .form-check-label {
    font-size: 13px;
    color: var(--text-medium);
    cursor: pointer;
}

.rating-filter-options .form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Filter Actions */
.btn-apply-filter {
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
}

.btn-apply-filter:hover {
    background: var(--secondary-dark);
    color: #fff;
}

.btn-clear-filter {
    background: #f8f9fa;
    color: var(--text-muted);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
}

.btn-clear-filter:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

/* Results Info Bar */
.results-info-bar {
    padding: 15px 0px 0px 0px;
    border-top: 1px solid #eee;
}

.results-count {
    font-size: 14px;
    color: var(--text-muted);
}

.results-count span {
    color: var(--secondary);
}

.btn-view-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: var(--dominant-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-view-toggle:hover,
.btn-view-toggle.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* Provider Card in Grid */
.services-page-section .provider-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    height: 100%;
}

.services-page-section .provider-image {
    height: 200px;
}

.services-page-section .provider-image img {
    object-fit: contain;
    background-color: #0369a1;
}

/* Provider Stats */
.provider-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.provider-stats span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-stats span i {
    color: var(--secondary);
    font-size: 12px;
}

/* View Details Button */
.btn-view-details {
    background: var(--secondary);
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    margin-top: 12px;
    width: 100%;
}

.btn-view-details:hover {
    background: var(--secondary-dark);
    color: #fff;
}

/* Custom Badge Colors */
.bg-wood {
    background-color: var(--carpenter) !important;
    color: #fff !important;
}

.bg-purple {
    background-color: var(--painter) !important;
    color: #fff !important;
}

/* Services Page Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 28px;
    }

    .services-page-section .provider-image {
        height: 250px;
    }

    .search-filter-section {
        padding: 20px;
    }

    .filter-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }

    .filter-tags {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .services-page-section .provider-image {
        height: 220px;
    }

    .search-filter-section {
        padding: 15px;
        border-radius: 15px;
    }

    .main-search-bar .search-input-wrapper .form-control,
    .main-search-bar .form-select,
    .btn-search-main,
    .btn-advanced-toggle {
        height: 45px;
    }

    .btn-advanced-toggle {
        min-width: 45px;
        padding: 0 12px;
    }

    .advanced-filters-panel {
        padding: 15px;
    }

    .filter-panel-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start !important;
    }

    .price-range-inputs {
        flex-wrap: wrap;
    }

    .price-range-inputs .form-control {
        width: 70px;
    }

    .price-quick-filters {
        justify-content: flex-start;
    }

    .filter-actions-row {
        flex-direction: column;
    }

    .filter-actions-row .btn {
        width: 100%;
    }

    .results-info-bar {
        /* flex-direction: column; */
        gap: 15px;
        align-items: flex-start !important;
    }

    /* Services page mobile search collapse */
    .services-mobile-search-trigger {
        display: flex !important;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        padding: 14px 16px;
        border: 1px solid #e0e0e0;
        font-size: 15px;
        color: #6b7280;
        cursor: pointer;
    }

    .main-search-bar .main-search-bar-content {
        display: none !important;
    }

    .btn-cancel-services-mobile {
        display: none !important;
    }

    .main-search-bar.expanded .services-mobile-search-trigger {
        display: none !important;
    }

    .main-search-bar.expanded .main-search-bar-content {
        display: flex !important;
    }

    .main-search-bar.expanded .btn-cancel-services-mobile {
        display: inline-flex !important;
        align-items: center;
        padding: 8px 16px;
        border: 1px solid var(--secondary) !important;
        border-radius: 25px;
        background: var(--secondary) !important;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
    }
}

/* ===== Service Provider Details Page ===== */
.provider-details-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.provider-details-section .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.provider-details-section .breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.provider-details-section .breadcrumb-item.active {
    color: var(--text-muted);
}

/* Provider Profile Card */
.provider-profile-card,
.provider-contact-card,
.provider-about-card,
.provider-services-card,
.provider-availability-card,
.provider-experience-card,
.provider-gallery-card,
.provider-reviews-card {
    background: var(--dominant-white);
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Availability Section Styles */
.availability-content {
    padding: 10px 0;
}

.working-days-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e9fa 100%);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 52, 135, 0.1);
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

/* Edit Availability Modal Checkbox Styles */
.working-days-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.day-checkbox-item:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.day-checkbox-item input[type="checkbox"] {
    display: none;
}

.day-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ced4da;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.day-checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.day-checkbox-item input[type="checkbox"]:checked+.day-checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.day-checkbox-item input[type="checkbox"]:checked+.day-checkbox-custom::after {
    opacity: 1;
}

.day-checkbox-item input[type="checkbox"]:checked~.day-checkbox-label {
    color: var(--primary);
    font-weight: 600;
}

.day-checkbox-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* Languages Section Styles */
.language-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(146, 64, 14, 0.15);
    margin: 3px;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* Edit Languages Modal Checkbox Styles */
.languages-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    min-width: 130px;
}

.language-checkbox-item:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.language-checkbox-item input[type="checkbox"] {
    display: none;
}

.language-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ced4da;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

.language-checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.language-checkbox-item input[type="checkbox"]:checked+.language-checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.language-checkbox-item input[type="checkbox"]:checked+.language-checkbox-custom::after {
    opacity: 1;
}

.language-checkbox-item input[type="checkbox"]:checked~.language-checkbox-label {
    color: var(--primary);
    font-weight: 600;
}

.language-checkbox-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* Share Profile Section Styles */
.share-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
}

.share-buttons .btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-buttons .btn-outline-success:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.share-buttons .btn-outline-primary:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-buttons .btn-outline-dark:hover {
    background: #000;
    border-color: #000;
    color: white;
}

#profileLinkText {
    display: block;
    word-break: break-all;
    font-size: 12px;
}

/* Social Links Section Styles */
.social-links-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: white !important;
}

.social-icons-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.online-status {
    position: absolute;
    bottom: 8px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: var(--success);
    border-radius: 50%;
    border: 3px solid #fff;
}

.services-page-section .provider-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.verified-badge {
    color: var(--secondary);
    font-size: 24px;
}

.provider-profession {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

.provider-location {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-score {
    font-weight: 600;
    color: var(--text-dark);
}

.jobs-completed {
    font-size: 14px;
    color: var(--text-medium);
}

.provider-badges .badge {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

/* Compact Profile Header Layout */
.profile-header-compact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-image-section {
    flex-shrink: 0;
}

.profile-image-section .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-image-section .online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
}

.profile-info-section {
    flex: 1;
    min-width: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.profile-name-row .provider-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.profile-name-row .verified-badge {
    color: var(--secondary);
    font-size: 20px;
}

.profile-name-row .btn-report-provider {
    margin-left: auto;
    padding: 4px 8px;
    font-size: 14px;
}

.profile-info-section .provider-profession {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.provider-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.provider-meta-row .provider-location {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-rating-inline {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-rating-inline strong {
    color: var(--text-dark);
}

.profile-progress-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.profile-progress-section .profile-progress-circle {
    width: 100px;
    height: 100px;
}

.profile-progress-section .progress-value {
    font-size: 14px;
}

.profile-progress-section .progress-label {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

/* Complete Profile Button */
.btn-complete-profile {
    background: linear-gradient(135deg, var(--secondary), #c41420);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(235, 25, 40, 0.3);
}

.btn-complete-profile:hover {
    background: linear-gradient(135deg, #c41420, var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4);
    color: #fff;
}

.btn-complete-profile i {
    font-size: 14px;
}

/* Complete Profile Modal Styles */


#completeProfileModal .verification-section {
    background: #fff9f9;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #ffe0e0;
}

#completeProfileModal .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

#completeProfileModal .section-header i {
    font-size: 20px;
    color: var(--secondary);
}

#completeProfileModal .upload-box {
    border: 2px dashed #ffcdd2;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

#completeProfileModal .upload-box:hover {
    border-color: var(--secondary);
    background: #fff5f5;
}

#completeProfileModal .upload-box.uploaded {
    border-color: #198754;
    background: #d1f7e5;
    border-style: solid;
}

#completeProfileModal .upload-box i {
    font-size: 32px;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

#completeProfileModal .upload-box span {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

#completeProfileModal .upload-box small {
    color: var(--text-muted);
    font-size: 11px;
}

#completeProfileModal .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

#completeProfileModal .input-group-text {
    background: #fff5f5;
    border-color: #ffe0e0;
    color: var(--secondary);
}

#completeProfileModal .form-control:focus,
#completeProfileModal .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(235, 25, 40, 0.15);
}

#completeProfileModal .verification-terms {
    border: 1px solid #ffe0e0;
    background: #fff9f9;
}

#completeProfileModal .verification-terms .form-check-label {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Theme Primary Button */
.btn-theme-primary {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-theme-primary:hover {
    background: linear-gradient(135deg, #c41420, var(--secondary));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.3);
}

/* Badge subtle colors fallback */
.badge.bg-danger-subtle {
    background-color: #f8d7da !important;
}

.badge.bg-warning-subtle {
    background-color: #fff3cd !important;
}

/* Complete Profile Modal Responsive */
@media (max-width: 576px) {
    #completeProfileModal .verification-section {
        padding: 15px;
    }

    #completeProfileModal .upload-box {
        padding: 20px 10px;
    }

    #completeProfileModal .upload-box i {
        font-size: 28px;
    }

    .btn-complete-profile {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Provider Profile Card Badges - Override absolute positioning */
.provider-profile-card .provider-badges {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
}

.provider-profile-card .provider-badges .badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Badge Colors - Bootstrap 5.3 subtle colors fallback */
.provider-profile-card .provider-badges .badge.bg-success-subtle {
    background-color: #d1f7e5 !important;
    color: #198754 !important;
}

.provider-profile-card .provider-badges .badge.bg-primary-subtle {
    background-color: #cfe2ff !important;
    color: #0d6efd !important;
}

.provider-profile-card .provider-badges .badge.bg-info-subtle {
    background-color: #cff4fc !important;
    color: #0dcaf0 !important;
}

.provider-profile-card .provider-badges .badge.bg-warning-subtle {
    background-color: #fff3cd !important;
    color: #ffc107 !important;
}

.provider-profile-card .provider-badges .badge i {
    font-size: 12px;
}

/* Mobile Responsive for Provider Profile Card */
@media (max-width: 768px) {
    .profile-header-compact {
        flex-wrap: wrap;
    }

    .profile-image-section {
        order: 1;
    }

    .profile-progress-section {
        order: 2;
        flex-direction: row;
        gap: 10px;
        margin-left: auto;
    }

    .profile-progress-section .profile-progress-circle {
        width: 50px;
        height: 50px;
    }

    .profile-progress-section .progress-value {
        font-size: 12px;
    }

    .profile-progress-section .progress-label {
        font-size: 10px;
    }

    .profile-info-section {
        order: 3;
        width: 100%;
        margin-top: 15px;
        flex-basis: auto;
    }

    .provider-profile-card .provider-badges {
        justify-content: flex-start;
    }

    .provider-profile-card .provider-badges .badge {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .provider-profile-card {
        padding: 15px;
    }

    .profile-header-compact {
        gap: 12px;
        align-items: center;
    }

    .profile-image-section .profile-image {
        width: 70px;
        height: 70px;
    }

    .profile-image-section .online-status {
        width: 14px;
        height: 14px;
        bottom: 2px;
        right: 2px;
    }

    .profile-name-row .provider-name {
        font-size: 16px;
    }

    .profile-name-row .verified-badge {
        font-size: 16px;
    }

    .profile-info-section .provider-profession {
        font-size: 13px;
    }

    .provider-meta-row {
        gap: 10px;
    }

    .provider-meta-row .provider-location,
    .provider-rating-inline {
        font-size: 12px;
    }

    .provider-profile-card .provider-badges .badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .provider-profile-card .provider-badges .badge i {
        font-size: 9px;
    }

    .profile-progress-section .profile-progress-circle {
        width: 45px;
        height: 45px;
    }

    .profile-progress-section .progress-value {
        font-size: 10px;
    }

    .profile-progress-section .progress-label {
        font-size: 9px;
    }
}

/* Contact Card with Blur Effect */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-blur-overlay {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Blurred Text Effect */
.blurred-text {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}

.blur-unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.unlock-content {
    text-align: center;
    padding: 20px;
}

.unlock-content i {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.unlock-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-unlock {
    background: var(--accent);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
}

/* .btn-unlock:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--painter));
} */

/* About Section */
.about-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.service-item i {
    font-size: 20px;
    color: var(--secondary);
}

.service-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Experience Timeline */
.experience-timeline {
    position: relative;
    padding-left: 30px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e0e0e0;
}

.experience-item {
    position: relative;
    padding-bottom: 25px;
}

.experience-item:last-child {
    padding-bottom: 0;
}

.experience-dot {
    position: absolute;
    left: -26px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--secondary);
}

.experience-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.experience-content .company {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 3px;
}

.experience-content .duration {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Reviews Section */
.see-all-link {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-all-link:hover {
    text-decoration: underline;
}

.review-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.review-item:last-child {
    margin-bottom: 0;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-rating {
    font-size: 14px;
}

.review-date {
    font-size: 12px;
}

.review-text {
    margin-top: 12px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sidebar Cards */
.hire-card,
.verification-card,
.requirements-card,
.availability-card,
.languages-card,
.share-card {
    background: var(--dominant-white);
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hire-card {
    top: 100px;
}

.hire-card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.starting-price {
    font-size: 13px;
    color: var(--text-muted);
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.price .per-visit {
    font-size: 16px;
    color: var(--text-muted);
}

.btn-hire {
    background: var(--accent);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 25px;
}

.btn-hire:hover {
    background: var(--secondary);
}

.response-time {
    font-size: 13px;
    color: var(--text-muted);
}

/* Verification Card */
.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.verification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.verification-item.verified .verification-icon,
.verification-item.verified .verification-icon i {
    color: #22C55E !important;
}

.verification-item.pending .verification-icon,
.verification-item.pending .verification-icon i {
    color: #F59E0B !important;
}

.verification-icon {
    font-size: 20px;
}

.verification-icon i {
    font-size: 20px;
}

.verification-details {
    display: flex;
    flex-direction: column;
}

.verification-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.verification-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Requirements Card */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.requirement-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.requirement-item i {
    font-size: 20px;
    color: var(--secondary);
    margin-top: 2px;
}

.requirement-item strong {
    font-size: 14px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
}

.requirement-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Availability Card */
.availability-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.day-row .day {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.day-row .time {
    font-size: 13px;
    color: var(--text-muted);
}

.day-row.closed {
    background: #fee2e2;
}

.day-row.closed .time {
    color: #dc2626;
    font-weight: 500;
}

.emergency-note {
    padding: 12px;
    background: #fef3c7;
    border-radius: 10px;
    font-size: 13px;
    color: #92400e;
}

/* Languages Card */
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-tag {
    padding: 8px 16px;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Share Card */
.share-buttons .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles for Provider Details */
@media (max-width: 991px) {
    .hire-card {
        position: relative;
        top: 0;
    }

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

@media (max-width: 767px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }

    .provider-name {
        font-size: 22px;
    }

    .provider-rating {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 480px) {

    .provider-profile-card,
    .provider-contact-card,
    .provider-about-card,
    .provider-services-card,
    .provider-experience-card,
    .provider-gallery-card,
    .provider-reviews-card,
    .hire-card,
    .verification-card,
    .requirements-card,
    .availability-card,
    .languages-card,
    .share-card {
        padding: 20px;
    }

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

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

/* ===== Contact Page Simple Styles ===== */

/* Contact Page Header */
.contact-page-header {
    background: var(--gradient-ocean);
    padding: 40px 0;
    text-align: center;
}

.contact-page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 15px;
}

.contact-page-header .breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.contact-page-header .breadcrumb-item a:hover {
    /* color: #fff; */
}

.contact-page-header .breadcrumb-item.active {
    /* color: #fff; */
}

.contact-page-header .breadcrumb-item+.breadcrumb-item::before {
    /* color: rgba(255, 255, 255, 0.5); */
}

.contact-page-header h1 {
    /* color: #fff; */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-page-header p {
    /* color: rgba(255, 255, 255, 0.9); */
    font-size: 16px;
    margin: 0;
}

/* Contact Section Simple */
.contact-section-simple {
    padding: 60px 0;
    background: #f9fafb;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--dominant-white);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-box>p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    font-size: 18px;
    color: #fff;
}

.contact-item-text span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.contact-item-text a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-text a:hover {
    color: var(--secondary);
}

.contact-item-text p {
    color: var(--text-dark);
    font-size: 15px;
    margin: 0;
}

/* Contact Social */
.contact-social {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.contact-social>span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.contact-social .social-icons {
    display: flex;
    gap: 10px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.3s;
}

.contact-social .social-icons a:hover {
    background: var(--secondary);
    color: #fff;
}

/* Contact Form Box */
.contact-form-box {
    background: var(--dominant-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form-box>p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form-box label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 6px;
    display: block;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form-box textarea.form-control {
    resize: none;
}

.btn-primary-custom {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Contact Map Box */
.contact-map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-page-header h1 {
        font-size: 30px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contact-page-header {
        padding: 30px 0;
    }

    .contact-page-header h1 {
        font-size: 26px;
    }

    .contact-section-simple {
        padding: 40px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 20px;
    }
}

/* ========================================
   LIST VIEW & MAP VIEW STYLES
======================================== */

/* Providers Content Wrapper */
.providers-content-wrapper {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.providers-container {
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

/* Map Container */
.map-container {
    display: none;
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper {
    position: relative;
    height: 100%;
}

.services-map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Map Provider Card Overlay */
.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffffff;
}

.map-provider-card {
    background: var(--dominant-white);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-card-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--dominant-soft);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.map-card-close:hover {
    background: var(--error);
    color: var(--text-light);
}

.map-card-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.map-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-card-content {
    flex: 1;
    min-width: 0;
}

.map-card-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.map-card-rating {
    font-size: 13px;
    margin-bottom: 5px;
}

.map-card-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.map-card-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.btn-view-details-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-details-sm:hover {
    background: var(--accent-dark);
    color: var(--text-light);
}

/* View Toggle Buttons */
.btn-view-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: var(--dominant-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.btn-view-toggle:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-view-toggle.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
}

/* Button Group Layout */
.btn-group-layout {
    background: var(--dominant-light);
    border-radius: 12px;
    padding: 4px;
}

.btn-group-layout .btn-view-toggle {
    border-radius: 8px;
    border: none;
    background: transparent;
    border: 1px solid #dddddd;
}

.btn-group-layout .btn-view-toggle.active {
    background: var(--dominant-white);
    color: var(--secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-group-layout .btn-view-toggle:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Map Toggle Button */
.btn-map-toggle {
    margin-left: 8px;
}

.btn-map-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-map-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================================
   GRID VIEW - Modern Card Design (Vertical Layout)
   ============================================================ */
.providers-container.grid-view {
    width: 100%;
}

.providers-container.grid-view #providersGrid {
    display: flex;
    flex-wrap: wrap;
    /* gap: 24px; */
}

/* .providers-container.grid-view .provider-col {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
} */

.providers-container.grid-view .provider-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    min-width: auto;
    max-width: 100%;
    position: relative;
}

.providers-container.grid-view .provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.providers-container.grid-view .provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(111, 193, 165, 0.15);
}

.providers-container.grid-view .provider-card:hover::before {
    opacity: 1;
}

.providers-container.grid-view .provider-image {
    height: 175px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edecec;
    background: #f8f9fa;
}

.providers-container.grid-view .provider-image img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.providers-container.grid-view .provider-card:hover .provider-image img {
    transform: scale(1.05);
}

.providers-container.grid-view .provider-badges {
    position: static;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    border-bottom: 1px solid #edecec;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.providers-container.grid-view .provider-badges .badge {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 15px;
}

.providers-container.grid-view .provider-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.providers-container.grid-view .provider-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dominant-dark);
    margin-bottom: 4px;
}

.providers-container.grid-view .provider-rating {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #1a1a1a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.providers-container.grid-view .provider-location {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.providers-container.grid-view .provider-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.providers-container.grid-view .provider-stats span {
    background: var(--dominant-light);
    /* padding: 6px 10px;
    border-radius: 8px; */
    font-size: 12px;
    color: var(--text-secondary);
}

.providers-container.grid-view .provider-rate {
    margin-top: auto;
    /* padding-top: 16px; */
    border-top: 1px dashed var(--dominant-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.providers-container.grid-view .rate-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
}

.logoSider {
    font-size: 14px;
}

.providers-container.grid-view .rate-unit {
    color: var(--text-muted);
    font-size: 13px;
}

.providers-container.grid-view .btn-view-details {
    display: none;
}

/* ============================================================
   LIST VIEW - Horizontal Detailed Design (2 Cards Per Row without map)
   ============================================================ */
.providers-container.list-view {
    width: 100%;
}

.providers-container.list-view #providersGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* List without map: 2 cards per row */
.providers-container.list-view .provider-col {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    width: calc(50% - 10px);
}

.providers-container.list-view .provider-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--dominant-soft);
    transition: all 0.3s ease;
    height: auto;
    min-width: auto;
    max-width: 100%;
}

.providers-container.list-view .provider-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(111, 193, 165, 0.12);
    transform: translateX(4px);
}

.providers-container.list-view .provider-image {
    width: 200px;
    min-width: 200px;
    height: auto;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.providers-container.list-view .provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.providers-container.list-view .provider-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    /* flex-direction: column; */
    gap: 4px;
}

.providers-container.list-view .provider-badges .badge {
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
}

.providers-container.list-view .provider-info {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.providers-container.list-view .provider-info>.d-flex {
    margin-bottom: 8px;
}

.providers-container.list-view .provider-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dominant-dark);
    margin-bottom: 0;
}

.providers-container.list-view .provider-rating {
    background: var(--dominant-light);
    color: var(--dominant-dark);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.providers-container.list-view .provider-rating i {
    color: #ffc107;
}

.providers-container.list-view .provider-location {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.providers-container.list-view .provider-location i {
    color: var(--secondary);
}

.providers-container.list-view .provider-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.providers-container.list-view .provider-stats span {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.providers-container.list-view .provider-stats span i {
    color: var(--secondary);
    font-size: 14px;
}

.providers-container.list-view .provider-rate {
    display: none;
}

/* List View - Price Display on Right Side */
.providers-container.list-view .provider-card {
    position: relative;
    padding-right: 200px;
}

.providers-container.list-view .provider-card .provider-rate {
    display: flex !important;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -75px;
    bottom: 0;
    width: 200px;
    background-color: #ffffff;
    border-left: 1px solid var(--dominant-soft);
    margin: 0;
    padding: 15px 15px 130px 15px;
    gap: 4px;
}

.providers-container.list-view .provider-card .provider-rate .rate-unit {
    margin: 0px !important;
}

.providers-container.list-view .provider-card .provider-contact-buttons {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 200px;
    flex-direction: column;
    padding: 0 20px;
    gap: 8px;
    margin-top: 0;
}

.providers-container.list-view .rate-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1;
}

.providers-container.list-view .rate-unit {
    color: var(--text-muted);
    font-size: 13px;
}

.providers-container.list-view .btn-view-details {
    background: var(--secondary);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    margin-top: 8px;
}

.providers-container.list-view .btn-view-details:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* ============================================================
   GRID VIEW WITH MAP - 3 cards per row
   ============================================================ */
.providers-content-wrapper.map-active .providers-container.grid-view {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.providers-content-wrapper.map-active .providers-container.grid-view #providersGrid {
    gap: 16px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-col {
    flex: 0 0 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-card {
    border-radius: 16px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edecec;
    background: #f8f9fa;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-info {
    padding: 14px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-name {
    font-size: 14px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-location {
    font-size: 12px;
    margin-bottom: 8px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-stats {
    gap: 6px;
    margin-bottom: 12px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-stats span {
    font-size: 10px;
    padding: 4px 2px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .provider-rate {
    padding-top: 12px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .rate-amount {
    font-size: 16px;
}

.providers-content-wrapper.map-active .providers-container.grid-view .rate-unit {
    font-size: 11px;
}

/* ============================================================
   LIST VIEW WITH MAP - 1 card per row (full width in container)
   ============================================================ */
.providers-content-wrapper.map-active .providers-container.list-view {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.providers-content-wrapper.map-active .providers-container.list-view #providersGrid {
    flex-direction: column;
    gap: 16px;
}

/* List with map: 1 card per row */
.providers-content-wrapper.map-active .providers-container.list-view .provider-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-card {
    padding-right: 160px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-image {
    width: 160px;
    min-width: 160px;
    min-height: 160px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-info {
    padding: 16px 20px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-name {
    font-size: 17px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-location {
    font-size: 13px;
    margin-bottom: 8px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-stats {
    gap: 16px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-stats span {
    font-size: 12px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-card .provider-rate {
    width: 160px;
    padding: 16px;
}

.providers-content-wrapper.map-active .providers-container.list-view .provider-card .provider-contact-buttons {
    width: 160px;
    padding: 0 10px;
}

.providers-content-wrapper.map-active .providers-container.list-view .rate-amount {
    font-size: 22px;
}

.providers-content-wrapper.map-active .providers-container.list-view .btn-view-details {
    padding: 8px 16px;
    font-size: 12px;
}

/* ===== MAP CONTAINER - col-lg-4 (33.333%) ===== */
.providers-content-wrapper.map-active .map-container {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

/* Custom Leaflet Marker */
.custom-marker {
    background: var(--accent);
    border: 3px solid var(--dominant-white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.custom-marker i {
    color: var(--text-light);
    font-size: 16px;
}

.custom-marker.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Leaflet Popup Custom Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    min-width: 200px;
}

.map-popup-content {
    padding: 15px;
}

.map-popup-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-popup-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.map-popup-content .popup-rating {
    font-size: 12px;
    margin-bottom: 8px;
}

.map-popup-content .popup-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================================
   RESPONSIVE STYLES FOR GRID & LIST VIEWS
   ============================================================ */

/* XL screens (1400px+): Grid 4 cards, List 2 cards - default styles apply */

/* Large screens (1200-1399px): Grid 3 cards, List 2 cards */
@media (max-width: 1399px) {
    .providers-container.grid-view .provider-col {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    /* Grid with map: 2 cards per row */
    .providers-content-wrapper.map-active .providers-container.grid-view .provider-col {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* Medium-Large screens (992-1199px): Grid 2 cards, List 1 card */
@media (max-width: 1199.9px) {
    .custom-lang-dropdown .lang-btn {
        padding: 6px 12px;
    }

    header .btn.btn-login {
        padding: 9px 16px;
        min-height: inherit;
    }

    /* Grid: 2 cards per row */
    .providers-container.grid-view .provider-col {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    /* List: 1 card per row */
    .providers-container.list-view .provider-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    /* List: reduce price area */
    .providers-container.list-view .provider-card {
        padding-right: 180px;
    }

    .providers-container.list-view .provider-card .provider-rate {
        width: 180px;
    }

    /* Map active adjustments */
    .providers-content-wrapper.map-active .providers-container.grid-view,
    .providers-content-wrapper.map-active .providers-container.list-view {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .providers-content-wrapper.map-active .map-container {
        flex: 0 0 40%;
        max-width: 40%;
    }

    /* Grid with map: 2 cards per row */
    .providers-content-wrapper.map-active .providers-container.grid-view .provider-col {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* Tablets (768-991px) */
@media (max-width: 991px) {
    .providers-content-wrapper {
        flex-direction: column;
    }

    /* Map goes on top when active */
    .providers-content-wrapper.map-active .map-container {
        flex: 0 0 100%;
        max-width: 100%;
        height: 350px;
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: 20px;
    }

    .providers-content-wrapper.map-active .providers-container.grid-view,
    .providers-content-wrapper.map-active .providers-container.list-view {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Grid with map: back to 2 cards per row */
    .providers-content-wrapper.map-active .providers-container.grid-view .provider-col {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    /* List view - stack card vertically */
    .providers-container.list-view .provider-card {
        flex-direction: column;
        padding-right: 0;
    }

    .providers-container.list-view .provider-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .providers-container.list-view .provider-card .provider-rate {
        position: relative;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-left: none;
        border-top: 1px solid var(--dominant-soft);
        bottom: auto;
        top: auto;
        right: auto;
    }

    .providers-container.list-view .btn-view-details {
        margin-top: 0;
    }

    .providers-container.list-view .provider-card .provider-contact-buttons {
        position: relative;
        width: 100%;
        flex-direction: row;
        padding: 0 20px 16px 20px;
        bottom: auto;
        right: auto;
    }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
    .category-tab {
        white-space: inherit;
    }

    .providers-content-wrapper {
        gap: 0px;
        margin-top: 12px;
    }

    .view-toggle {
        gap: 8px;
    }

    .btn-view-toggle {
        width: 36px;
        height: 36px;
    }

    .btn-view-toggle[data-view="list"] {
        display: none;
    }

    /* Grid: 1 card per row on mobile */
    .providers-container.grid-view .provider-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .providers-container.grid-view .provider-image {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #edecec;
        background: #f8f9fa;
    }

    .providers-container.grid-view .provider-image img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* List: 1 card per row on mobile */
    .providers-container.list-view .provider-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* List view adjustments */
    .providers-container.list-view .provider-info {
        padding: 16px;
    }

    .providers-container.list-view .provider-name {
        font-size: 18px;
    }

    .providers-container.list-view .provider-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .providers-container.list-view .provider-image img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
    }

    .providers-container.list-view .provider-image {
        height: 220px;
    }

    .map-container {
        height: 300px;
    }

    .map-provider-card {
        flex-direction: column;
        text-align: center;
    }

    .map-card-image {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
}


/* ===================================
   REGISTER PAGE STYLES
===================================== */

/* Register Page Layout */
.register-wrapper {
    min-height: 100vh;
    display: flex;
}

/* Left Side - Form */
.register-left {
    flex: 1.2;
    padding: 40px 40px;
    background: #fff;
    overflow-y: auto;
    max-height: 100vh;
}

.register-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary);
}

.register-content {
    max-width: 700px;
    margin: 0 auto;
}

.register-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.register-subtitle {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 175px;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 49%;
    transform: translateX(-50%);
    width: 175px;
    height: 3px;
    background: #e8eaed;
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 8px;
    left: 49%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--secondary);
    z-index: 1;
    transition: width 0.4s ease;
    width: 0px;
    max-width: 175px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8eaed;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4);
}

.step.completed .step-number {
    background: var(--success);
    color: #fff;
}

.step.completed .step-number::after {
    content: '\2713';
    font-size: 18px;
}

.step.completed .step-number span {
    display: none;
}

.step-label {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    position: absolute;
    white-space: nowrap;
    top: 26px;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--text-dark);
}

/* Form Steps Container */
.form-steps-container {
    position: relative;
    overflow: hidden;
}

.form-step {
    display: none;
    animation: registerFadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes registerFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Form Sections */
.form-section {
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--secondary);
    font-size: 20px;
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 100%;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--error);
    margin-left: 2px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    background: #f8f9fb;
    border: 1.5px solid #e8eaed;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(235, 25, 40, 0.15);
}

.form-control-custom::placeholder {
    color: #aaa;
}

select.form-control-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

textarea.form-control-custom {
    min-height: 100px;
    resize: vertical;
}

/* Input with Icon */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.input-icon-wrapper .form-control-custom {
    padding-left: 48px;
}

/* File Upload */
.file-upload {
    border: 2px dashed #e8eaed;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.file-upload:hover {
    border-color: var(--secondary);
    background: var(--secondary-bg);
}

.file-upload input {
    display: none;
}

.file-upload-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
}

.file-upload-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

.file-upload-hint {
    font-size: 13px;
    color: #999;
}

.file-upload.uploaded {
    border-color: var(--success);
    background: rgba(34, 197, 94, 0.05);
}

.file-upload.uploaded .file-upload-icon {
    background: var(--success);
}

/* Checkbox & Radio */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8f9fb;
    border: 1.5px solid #e8eaed;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--secondary);
}

.checkbox-item input {
    display: none;
}

.checkbox-item input:checked+.checkbox-custom {
    background: var(--secondary);
    border-color: var(--secondary);
}

.checkbox-item input:checked+.checkbox-custom::after {
    opacity: 1;
}

.checkbox-item input:checked~.checkbox-label {
    color: var(--secondary-dark);
    font-weight: 600;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.checkbox-label {
    font-size: 14px;
    color: #555;
}

/* Service Selection Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

label.service-card {
    padding: 20px;
    background: #f8f9fb;
    border: 2px solid #e8eaed;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: inherit;
    position: relative;
    overflow: visible;
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: #10b981;
    background: #ecfdf5;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.service-card.selected .service-card-icon {
    transform: scale(1.1);
}

.service-card.selected .service-card-name {
    color: #10b981;
    font-weight: 700;
}

.service-card input {
    display: none;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.service-card-icon.plumber {
    background: #e0f2fe;
    color: #0ea5e9;
}

.service-card-icon.electrician {
    background: #fef3c7;
    color: #f59e0b;
}

.service-card-icon.carpenter {
    background: #fce7f3;
    color: #ec4899;
}

.service-card-icon.painter {
    background: #dbeafe;
    color: #3b82f6;
}

.service-card-icon.welder {
    background: #fee2e2;
    color: #ef4444;
}

.service-card-icon.ac {
    background: #d1fae5;
    color: #10b981;
}

.service-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Service Selected Checkmark Badge */
.service-selected-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
    z-index: 10;
    border: 2px solid #fff;
}

label.service-card.selected .service-selected-badge,
.service-card.selected .service-selected-badge {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Step Ready State - when all fields are filled */
.step.ready .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse-ready 2s infinite;
}

.step.ready .step-label {
    color: #10b981;
    font-weight: 600;
}

@keyframes pulse-ready {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.6);
    }
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 12px;
    margin-top: 24px;
}

.terms-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.terms-text a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.step-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-step {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.btn-prev {
    background: #f1f5f9;
    color: #64748b;
}

.btn-prev:hover {
    background: #e2e8f0;
}

.btn-next {
    background: var(--secondary);
    color: #fff;
}

.btn-next:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 25, 40, 0.3);
}

.btn-submit {
    background: var(--gradient-secondary);
    color: #fff;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(235, 25, 40, 0.35);
}

.login-link {
    text-align: center;
    margin-top: 24px;
    color: var(--text-medium);
    font-size: 15px;
}

.login-link a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Step Summary Card */
.step-summary {
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 52, 135, 0.05) 100%);
    border: 1px solid rgba(0, 52, 135, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.step-summary h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-summary p {
    font-size: 14px;
    color: var(--primary);
    margin: 0;
}

/* Right Side - Info */
.register-right {
    flex: 0.8;
    background: var(--gradient-primary);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100vh;
}

.register-right-content {
    /* max-width: 400px; */
}

.register-right h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.register-right p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.benefit-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Partner Stats */
.partner-stats {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0 0;
}

/* Validation Styles */
.form-control-custom.error {
    border-color: var(--error);
    background: rgba(235, 25, 40, 0.05);
}

.error-message {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

/* Register Page Responsive */
@media (max-width: 1200px) {
    .register-left {
        padding: 40px;
    }

    .register-right {
        padding: 40px;
    }

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

@media (max-width: 991px) {
    .register-wrapper {
        flex-direction: column;
    }

    .register-left {
        max-height: none;
        padding: 30px 24px;
    }

    .register-right {
        position: relative;
        height: auto;
        padding: 40px 24px;
        /* order: -1; */
    }

    .register-right h2 {
        font-size: 28px;
    }

    .partner-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .progress-steps {
        gap: 100px;
    }

    .progress-steps::before {
        width: 100px;
    }

    .progress-line {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .register-header {
        /* flex-direction: column; */
        gap: 20px;
        align-items: flex-start;
    }

    .register-title {
        font-size: 26px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

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

    .progress-steps {
        gap: 80px;
    }

    .progress-steps::before {
        width: 80px;
    }

    .progress-line {
        max-width: 80px;
    }

    .step-label {
        font-size: 11px;
        white-space: nowrap;
    }

    .checkbox-group {
        flex-direction: column;
    }

    .checkbox-item {
        width: 100%;
    }

    .step-buttons {
        flex-direction: column;
    }

    .btn-prev {
        order: 2;
    }
}

/* ===================================
   LANGUAGE SWITCHER STYLES
===================================== */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 8px 14px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--primary);
    background: rgba(0, 52, 135, 0.05);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 52, 135, 0.3);
}

@media (max-width: 768px) {
    .header-right-actions {
        gap: 12px;
    }

    .language-switcher {
        padding: 3px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}


/* ============ Booking Modal =========== */
.modal-title {
    font-size: 24px;
}

.providerHeading h6 {
    font-size: 18px;
}

.booking-price-estimate {
    background-color: var(--accent-lighter) !important;
}

.booking-price-estimate h4 {
    font-size: 20px;
    color: var(--primary);
}

.termsChecked label {
    font-size: 14px;
}

.termsChecked label a {
    text-decoration: none;
    color: var(--primary);
}

.booking-provider-summary img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.8rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #ffc107;
}

.feedback-tags .btn-check:checked+.btn {
    background-color: var(--accent);
    border-color: var(--primary-color);
    color: var(--primary);
}

.provider-feedback-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.user-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.provider-feedback-card textarea.form-control::placeholder {
    opacity: .7;
}

/* ===== Responsive Header & Mobile Menu ===== */

/* Hamburger Button */
.btn-hamburger {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-hamburger:hover,
.btn-hamburger:focus {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.05);
}

/* Mobile Offcanvas Menu */
#mobileMenu {
    max-width: 320px;
    border-left: 3px solid var(--primary);
}

#mobileMenu .offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

#mobileMenu .offcanvas-body {
    padding: 24px;
}

/* Mobile Navigation */
.mobile-nav .nav-item {
    margin-bottom: 4px;
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: var(--primary-bg);
    color: var(--primary);
}

.mobile-nav .nav-link i {
    font-size: 1.2rem;
    width: 28px;
}

/* Mobile Dropdown Toggle */
.mobile-dropdown-toggle {
    justify-content: flex-start;
}

.mobile-dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle:not(.collapsed) .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu-collapse {
    overflow: hidden;
}

.mobile-submenu {
    list-style: none;
    padding: 8px 0 8px 20px;
    margin: 0;
}

.mobile-submenu li {
    margin-bottom: 4px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

/* Mobile Action Buttons */
.mobile-actions .btn {
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 10px;
}

.mobile-actions .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-actions .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobile Contact Info */
.mobile-contact-info {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.mobile-contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.mobile-contact-info a:hover {
    text-decoration: underline;
}

/* ============== Floating point: ============= */
/* Floating Action Button Wrapper */
#fab-wrapper {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    display: none;
}

/* Main FAB Button */
#fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

/* Actions Container */
#fab-actions {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Active State */
#fab-wrapper.active #fab-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Common Action Button */
.fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
    white-space: nowrap;
}

/* Call Button */
.fab-call {
    background: #0d6efd;
}

/* WhatsApp Button */
.fab-whatsapp {
    background: #25D366;
}


/* ===================================
   CAREER PAGE STYLES
===================================== */
/* Career Page Specific Styles */
.career-page-header {
    background: var(--gradient-primary);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.career-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.career-page-header .breadcrumb {
    margin-bottom: 20px;
}

.career-page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.career-page-header .breadcrumb-item.active {
    color: #fff;
}

.career-page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.career-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.career-page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
}

/* Stats Banner */
.career-stats-banner {
    background: #fff;
    border-radius: 16px;
    padding: 25px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.career-stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.career-stat-item:last-child {
    border-right: none;
}

.career-stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.career-stat-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Job Section */
.career-jobs-section {
    padding: 80px 0px 120px 0px;
    background: #f8f9fa;
}

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

.callBtnCard,
.whatsappbtnCard {
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    border: none;
}

.callBtnCard {
    background-color: var(--secondary);
}

.whatsappbtnCard {
    background-color: #25D366;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

/* Filter Section */
.jobs-filter-bar {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.filter-item {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 6px;
}

.filter-item label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.filter-item select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    min-width: 120px;
    height: 40px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-item select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 52, 135, 0.1);
    outline: none;
}

/* Filter Actions */
.filter-actions {
    padding-top: 8px;
}

.filter-results-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 14px;
    border-radius: 20px;
}

#resetFilters {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: normal;
    height: inherit;
    padding: 5px 15px;
}

#resetFilters:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* No Results Message */
.no-results-message {
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.no-results-message .no-results-icon {
    opacity: 0.6;
}

.no-results-message h4 {
    font-weight: 600;
    color: #374151;
}

.no-results-message p {
    font-size: 15px;
}

/* Job Cards */
.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.job-type-badge.electrician {
    background: rgba(255, 193, 7, 0.15);
    color: #d4a000;
}

.job-type-badge.plumber {
    background: rgba(0, 123, 255, 0.15);
    color: #0056b3;
}

.job-type-badge.carpenter {
    background: rgba(139, 69, 19, 0.15);
    color: #8B4513;
}

.job-type-badge.painter {
    background: rgba(0, 206, 201, 0.15);
    color: #00a8a3;
}

.job-type-badge.welder {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.job-type-badge.ac-repair {
    background: rgba(23, 162, 184, 0.15);
    color: #117a8b;
}

.job-type-badge.other {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

.job-urgency {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.job-urgency.urgent {
    background: #fff3cd;
    color: #856404;
}

.job-urgency.emergency {
    background: #f8d7da;
    color: #721c24;
}

.job-urgency.normal {
    background: #d4edda;
    color: #155724;
}

.job-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.job-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.job-meta-item:first-child {
    width: 100%;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
}

.job-meta-item i {
    color: var(--primary);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-budget {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.job-budget span {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.job-posted-by {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-posted-by .posterBy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.totalView {
    font-size: 13px;
    font-weight: 700;
}

.totalView i {
    font-size: 16px;
}

/* Report Flag Button */
.job-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-report-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: var(--dominant-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-report-flag:hover {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.btn-report-flag.reported {
    background: #f8d7da;
    border-color: #dc3545;
    color: #dc3545;
}

/* Report Modal Styles */
.report-modal .modal-header {
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.report-modal .modal-title {
    font-weight: 600;
    color: var(--text-dark);
}

.report-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-option:hover {
    background: #f8f9fa;
    border-color: var(--secondary);
}

.report-option input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--secondary);
}

.report-option label {
    cursor: pointer;
    margin: 0;
    font-size: 14px;
}

/* Report Button in Modal */
.btn-report-job {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 600;
}

.btn-report-job:hover {
    background-color: #dc3545;
    color: #fff;
}

.job-posted-by img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.job-posted-by .poster-info {
    font-size: 12px;
}

.job-posted-by .poster-name {
    font-weight: 600;
    color: var(--text-dark);
}

.job-posted-by .poster-time {
    color: #999;
}

.btn-apply-job {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply-job:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Post Job CTA */
.post-job-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.post-job-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.post-job-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.post-job-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
}

.btn-post-job {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    /* border: none; */
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-post-job:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* How It Works Section - Impressive Design */
.how-it-works-career {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-career::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 52, 135, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-career .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(235, 25, 40, 0.08) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-it-works-career .section-header h2 {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.how-it-works-career .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.steps-container {
    position: relative;
    padding: 40px 0;
}

/* Connecting Line */
.steps-connector {
    position: absolute;
    top: 100px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 2px;
    z-index: 1;
}

.steps-connector::before,
.steps-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.steps-connector::before {
    left: 0;
}

.steps-connector::after {
    right: 0;
    background: var(--accent);
}

.step-card {
    text-align: center;
    padding: 40px 30px 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 52, 135, 0.25);
}

.step-card:hover .step-icon::after {
    transform: scale(1.2);
    opacity: 0;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 52, 135, 0.2);
    transition: all 0.4s ease;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 28px;
    z-index: -1;
    opacity: 0.3;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    transition: all 0.4s ease;
}

.step-icon i {
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(235, 25, 40, 0.3);
    z-index: 3;
    border: 3px solid #fff;
}

.step-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.step-card:hover h4 {
    color: var(--primary);
}

.step-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.step-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #22C55E;
    font-weight: 500;
    background: rgba(34, 197, 94, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
}

.step-features span i {
    font-size: 14px;
}

/* Step Card Variations */
.step-card:nth-child(2) .step-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    box-shadow: 0 15px 40px rgba(235, 25, 40, 0.2);
}

.step-card:nth-child(2) .step-icon::before {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.step-card:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(0, 52, 135, 0.3);
}

.step-card:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #22C55E 0%, #16a34a 100%);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.step-card:nth-child(3) .step-icon::before {
    background: linear-gradient(135deg, #22C55E, var(--accent));
}

.step-card:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(255, 203, 19, 0.4);
}

/* Floating Elements Animation */
.step-card::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 52, 135, 0.05), rgba(235, 25, 40, 0.05));
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.step-card:nth-child(2)::before {
    animation-delay: 2s;
    left: 10%;
    right: auto;
}

.step-card:nth-child(3)::before {
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 1024.99px) {

    .callBtnCard,
    .whatsappbtnCard {
        padding: 6px 16px;
        font-size: 10px;
    }
}
/* Responsive for How It Works */
@media (max-width: 991px) {
    .steps-connector {
        display: none;
    }

    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {


    .hero-section .section-header h2 {
        font-size: 20px;
        text-align: center;
    }

    .hero-section .section-header {
        align-items: center !important;
    }

    .how-it-works-career {
        padding: 60px 0;
    }

    .how-it-works-career .section-header h2 {
        font-size: 28px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        border-radius: 20px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: -8px;
        right: -8px;
    }

    .step-card h4 {
        font-size: 18px;
    }
}

/* Post Job Modal */
.modal-content {
    border-radius: 20px;
    border: none;
}

#disclaimerModal .modal-content {
    border-radius: 10px;
}

.desclimerPoints {
    padding: 0;
    list-style: none;
}

.desclimerPoints li {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.desclimerCheck label {
    font-size: 14px;
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 30px;
}

.modal-title {
    font-weight: 700;
    color: var(--text-dark);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 30px;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 52, 135, 0.08);
}

/* Login Required Overlay */
.login-required-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-required-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-required-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 450px;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.login-required-overlay.show .login-required-box {
    transform: scale(1);
}

.login-required-box .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.login-required-box .icon i {
    font-size: 36px;
    color: var(--primary);
}

.login-required-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.login-required-box p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.login-required-box .btn-login-now {
    background: var(--primary);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.login-required-box .btn-login-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.login-required-box .btn-close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

/* For Service Providers Section */
.for-providers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.provider-benefits-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.provider-benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.provider-benefits-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.provider-benefits-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.provider-benefits-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.info-box .icon i {
    color: #ffffff;
    font-size: 13px;
}

.info-box .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #001A44;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalUrgencyBadge .job-urgency.urgent {
    font-size: 13px !important;
}

.budget-box {
    font-size: 18px;
    font-weight: 700;
}

.budget-box #modalBudget {
    color: var(--primary);
}

.contact-box h6 {
    font-size: 16px;
}

.contact-box p {
    font-size: 14px;
}

.contact-box p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

#modalUserImage {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.modalDesc {
    background-color: #001a4415;
    padding: 12px;
    border-left: 5px solid var(--primary);
    border-radius: 10px;
}


/* Language Switcher */
.language-switcher {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;

    padding: 6px 32px 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #212529;

    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.2;
    min-height: 34px;

    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.language-switcher:hover {
    border-color: #0d6efd;
}

.language-switcher:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

/* Dark header support (optional) */
.header-main.dark .language-switcher {
    background-color: #1e1e1e;
    color: #fff;
    border-color: #2c2c2c;
}


.promotionalSection {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========== Coupon Card Styles ========== */
.coupon-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* height: 85px; */
}

.coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Coupon Left - Image Section */
.coupon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 160px;
    min-width: 120px;
    height: 135px;
    overflow: hidden;
}

.coupon-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.coupon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .coupon-card:hover .coupon-image img {
    transform: scale(1.05);
} */

/* Overlay on Image */
.coupon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.overlay-discount {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.overlay-code {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

/* Coupon Divider with Circles */
.coupon-divider {
    position: relative;
    width: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.coupon-circle {
    width: 16px;
    height: 8px;
    background: #f5f5f5;
    border-radius: 0 0 50px 50px;
}

.coupon-circle-top {
    border-radius: 0 0 50px 50px;
    margin-top: -1px;
}

.coupon-circle-bottom {
    border-radius: 50px 50px 0 0;
    margin-bottom: -1px;
}

.coupon-dashed {
    flex: 1;
    border-left: 1px dashed #d0d0d0;
}

/* Coupon Right - Content Section */
.coupon-right {
    flex: 1;
    padding: 8px 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
}

.coupon-brand i {
    font-size: 13px;
}

.coupon-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coupon-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Coupon Code Section */
.coupon-code-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-code {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 6px;
}

.code-label {
    font-size: 11px;
    color: #6b7280;
}

.code-value {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-copy-code {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.btn-copy-code:hover {
    transform: scale(1.05);
}

.btn-copy-code.copied {
    background: #10b981 !important;
    color: #fff !important;
}

/* Full Width Copy Button */
.btn-copy-code-full {
    width: fit-content;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-copy-code-full i {
    font-size: 11px;
}

.btn-copy-code-full:hover {
    transform: translateY(-1px);
}

.btn-copy-code-full.copied {
    background: #10b981 !important;
    color: #fff !important;
}

/* Purple Theme */
.coupon-purple .coupon-brand {
    color: #7c3aed;
}

.coupon-purple .btn-copy-code-full {
    background: #f3e8ff;
    color: #7c3aed;
}

.coupon-purple .btn-copy-code-full:hover {
    background: #8b5cf6;
    color: #fff;
}

.coupon-purple:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* Blue Theme */
.coupon-blue .coupon-brand {
    color: #2563eb;
}

.coupon-blue .btn-copy-code-full {
    background: #eff6ff;
    color: #2563eb;
}

.coupon-blue .btn-copy-code-full:hover {
    background: #3b82f6;
    color: #fff;
}

.coupon-blue:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Teal Theme */
.coupon-teal .coupon-brand {
    color: #0d9488;
}

.coupon-teal .btn-copy-code-full {
    background: #f0fdfa;
    color: #0d9488;
}

.coupon-teal .btn-copy-code-full:hover {
    background: #14b8a6;
    color: #fff;
}

.coupon-teal:hover {
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.2);
}

/* Coupon Card Responsive */
@media (max-width: 991px) {
    /* .coupon-card {
        height: 80px;
    }

    .coupon-left {
        width: 85px;
        min-width: 85px;
        height: 80px;
    } */

    .coupon-right {
        padding: 6px 8px;
    }

    .coupon-title {
        font-size: 10px;
    }

    .coupon-desc {
        font-size: 9px;
    }

    .overlay-discount {
        font-size: 13px;
    }

    .overlay-code {
        font-size: 8px;
        padding: 2px 5px;
    }

    .btn-copy-code-full {
        padding: 3px 6px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    /* .coupon-card {
        height: 75px;
    }

    .coupon-left {
        width: 80px;
        min-width: 80px;
        height: 75px;
    } */

    /* .coupon-right {
        padding: 5px 7px;
    }

    .coupon-brand {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .coupon-brand i {
        font-size: 12px;
    }

    .coupon-title {
        font-size: 10px;
    }

    .coupon-desc {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .overlay-discount {
        font-size: 12px;
    }

    .overlay-code {
        font-size: 8px;
    }

    .btn-copy-code-full {
        padding: 3px 5px;
        font-size: 9px;
    } */
}

/* ========== Old Promo Card Styles (kept for compatibility) ========== */
.promo-card {
    position: relative;
    background: #fff;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 12px 0 0 12px;
}

.promo-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Color Theme 1 - Purple/Violet for Paint Shop */
.promo-card.promo-purple {
    background: linear-gradient(135deg, #f8f5ff 0%, #efe8ff 100%);
    border: 1px solid #e0d4f7;
}

.promo-card.promo-purple::before {
    background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
}

.promo-card.promo-purple .promo-icon-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #fff;
}

.promo-card.promo-purple .promo-link {
    color: #7c3aed;
}

.promo-card.promo-purple:hover {
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.2);
}

/* Color Theme 2 - Blue for Plumber Tools */
.promo-card.promo-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border: 1px solid #c7deff;
}

.promo-card.promo-blue::before {
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.promo-card.promo-blue .promo-icon-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.promo-card.promo-blue .promo-link {
    color: #2563eb;
}

.promo-card.promo-blue:hover {
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.2);
}

/* Color Theme 3 - Teal/Cyan for AC Shop */
.promo-card.promo-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 1px solid #99f6e4;
}

.promo-card.promo-teal::before {
    background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
}

.promo-card.promo-teal .promo-icon-badge {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #fff;
}

.promo-card.promo-teal .promo-link {
    color: #0d9488;
}

.promo-card.promo-teal:hover {
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.2);
}

/* Promo Card Header */
.promo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.promo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-brand-info .promo-brand-name {
    font-weight: 700;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 1px;
}

.promo-brand-info .promo-sponsored {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Promo Card Content */
.promo-card-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.promo-image {
    flex-shrink: 0;
}

.promo-image img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.3;
}

.promo-text p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.4;
}

.promo-link {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.promo-link:hover {
    gap: 8px;
}

.promo-link i {
    font-size: 10px;
}

/* Close Button */
.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: #f1f3f5;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
}

.promo-close:hover {
    background: #dee2e6;
    color: #000;
}



/* Google Translate - Hide banner */
.goog-te-banner-frame {
    display: none !important;
}


body {
    top: 0 !important;
}

/* Custom Language Dropdown */
.custom-lang-dropdown {
    position: relative;
    display: inline-block;
}

.custom-lang-dropdown .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--primary, #003487);
    border-radius: 25px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary, #003487);
    cursor: pointer;
    transition: all 0.2s ease;
    /* min-width: 75px; */
}

.custom-lang-dropdown .lang-btn:hover {
    background: var(--primary-bg, rgba(0, 52, 135, 0.07));
}

.custom-lang-dropdown .lang-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.custom-lang-dropdown.open .lang-btn i {
    transform: rotate(180deg);
}

.custom-lang-dropdown .lang-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 2px solid var(--primary, #003487);
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 99999;
}

.custom-lang-dropdown.open .lang-menu {
    display: block;
}

.custom-lang-dropdown .lang-menu li {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-lang-dropdown .lang-menu li:hover {
    background: var(--primary, #003487);
    color: #fff;
}

.custom-lang-dropdown .lang-menu li:first-child {
    border-radius: 4px 4px 0 0;
}

.custom-lang-dropdown .lang-menu li:last-child {
    border-radius: 0 0 4px 4px;
}

.custom-lang-dropdown .lang-menu li.active {
    background: var(--primary, #003487);
    color: #fff;
    font-weight: 600;
}

.custom-lang-dropdown .lang-menu li.active::after {
    content: '✓';
    float: right;
    margin-left: 10px;
    position: absolute;
}

/* Mobile responsive */
@media (max-width: 575.98px) {
    .custom-lang-dropdown .lang-btn {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 65px;
    }

    .custom-lang-dropdown .lang-menu li {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Searchable Dropdown (Choices.js) Styling */
.search-field .choices {
    margin-bottom: 0;
}

.search-field .choices__inner {
    background: transparent;
    border: none;
    padding: 0;
    min-height: auto;
    font-size: 0.95rem;
}

.search-field .choices__list--single {
    padding: 0;
}

.search-field .choices__list--single .choices__item {
    padding: 0;
}

.search-field .choices__list--dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.search-field .choices__list--dropdown .choices__item {
    padding: 10px 15px;
}

.search-field .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f0f7ff;
    color: #0d6efd;
}

.search-field .choices__input {
    background: transparent;
    padding: 5px 0;
    font-size: 0.9rem;
}

.search-field .choices[data-type*=select-one]::after {
    right: 0;
    border-color: #666 transparent transparent transparent;
}

.search-field .choices__placeholder {
    color: #999;
    opacity: 1;
}

.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
    position: absolute;
    z-index: 10;
}

/* Mobile spacing */
@media (max-width: 575px) {
    .language-switcher {
        padding: 5px 30px 5px 10px;
        font-size: 13px;
    }

    .providers-content-wrapper.map-active .providers-container.list-view .provider-card {
        padding-right: 0px;
    }

    .providers-content-wrapper.map-active .providers-container.list-view .provider-image {
        width: 100px !important;
        /* min-width: 160px;
        min-height: 160px; */
    }
}


/* Responsive */
@media (max-width: 991px) {
    .career-page-header h1 {
        font-size: 32px;
    }

    .career-stats-banner {
        padding: 20px;
    }

    .career-stat-item {
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .career-stat-item:last-child {
        border-bottom: none;
    }

    .post-job-cta {
        padding: 35px 25px;
        text-align: center;
    }

    .post-job-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .jodDetailsModal h4 {
        font-size: 20px;
    }

    .jodDetailsModal .btn-close {
        top: 15px;
        right: 15px;
    }

    .career-page-header {
        padding: 40px 0 60px;
    }

    .career-page-header h1 {
        font-size: 28px;
    }

    .jobs-filter-bar {
        padding: 15px;
    }

    .filter-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .filter-item select {
        width: 100%;
        min-width: unset;
    }

    .filter-actions {
        justify-content: space-between !important;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .filter-results-count {
        font-size: 13px;
        padding: 5px 12px;
    }

    .job-card {
        padding: 20px;
    }

    .job-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}



/* Responsive Header Adjustments */
@media (max-width: 991.98px) {
    .header-main .container {
        padding: 0 15px;
    }

    .header-main .logo img {
        height: 40px;
    }

    .btn-login {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .header-main {
        padding: 10px 0 !important;
    }

    .header-main .logo img {
        height: 35px;
    }

    .btn-hamburger {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .btn-login {
        padding: 8px 10px;
    }
}

/* ===== Profile Complete Progress Circle ===== */
.profile-complete-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.profile-progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.profile-progress-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.profile-progress-circle .progress-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
}

.profile-progress-circle .progress-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    transition: stroke-dashoffset 0.5s ease;
}

.profile-progress-circle .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.profile-progress-circle .progress-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.profile-complete-wrapper .progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    text-align: center;
    white-space: nowrap;
}

/* Responsive for Profile Progress Circle */
@media (max-width: 767.98px) {
    .profile-complete-wrapper {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: row;
        gap: 12px;
    }

    .profile-progress-circle {
        width: 60px;
        height: 60px;
    }

    .profile-progress-circle .progress-value {
        font-size: 0.9rem;
    }

    .profile-complete-wrapper .progress-label {
        font-size: 0.8rem;
    }
}

/* ===== Contact Buttons (Call & WhatsApp) ===== */
.btn-contact {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.otherColor1 {
    background-color: var(--secondary);
    color: #fff;
    border: none;
}

.otherColor2 {
    background-color: #25D366;
    color: #fff;
    border: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-contact i {
    font-size: 1.1rem;
}

/* ===== Report Provider Button ===== */
.btn-report-provider {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-report-provider:hover {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.btn-report-provider:active {
    background: #ffeeba;
}

/* Report Reasons Styling */
.report-reasons .form-check-label {
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    display: block;
    font-size: 14px;
    margin-left: -8px;
}

.report-reasons .form-check-label:hover {
    background: #f8f9fa;
}

.report-reasons .form-check-input:checked+.form-check-label {
    background: #e7f1ff;
}

/* ===== Promotional Slider Section ===== */
.promo-slider-section {
    background: #ecf0f1;
    padding: 100px 0;
    overflow: hidden;
}

.promo-nav {
    display: flex;
    gap: 8px;
}

.promo-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-nav-btn:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.promo-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.promo-swiper {
    overflow: hidden;
}

.promo-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    height: 260px;
}

.promo-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.promo-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.promo-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-slider-section {
        padding: 70px 0;
    }

    .promo-card {
        height: 200px;
    }

    .promo-card-content h4 {
        font-size: 14px;
    }

    .promo-card-content p {
        font-size: 11px;
    }
}

/* Hide mobile-only search elements on desktop */
.hero-mobile-search-trigger {
    display: none;
}

.hero-mobile-actions {
    display: none;
}

.services-mobile-search-trigger {
    display: none;
}

.btn-cancel-services-mobile {
    display: none;
}

@media (max-width: 576px) {
    .about-features {
        margin-bottom: 15px;
    }

    .providers-content-wrapper.map-active .providers-container.grid-view .provider-col {
        flex: 1;
        max-width: 100%;
    }

    .faq-content {
        margin-bottom: 0px;
    }

    /* Hero search - mobile collapsed state */
    .hero-mobile-search-trigger {
        display: flex;
        align-items: center;
        background: var(--dominant-white);
        border-radius: 8px;
        padding: 14px 20px;
        border: 1px solid #e0e0e0;
        /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
        font-size: 14px;
        color: var(--text-medium);
        cursor: pointer;
    }

    #heroSearchForm .search-bar {
        flex-direction: column;
        display: none !important;
    }

    #heroSearchForm.expanded .hero-mobile-search-trigger {
        display: none;
    }

    #heroSearchForm.expanded .search-bar {
        display: flex !important;
        flex-direction: column;
    }

    #heroSearchForm .search-field {
        width: 100%;
    }

    #heroSearchForm .divider {
        display: none;
    }

    /* Hide the desktop find button on mobile */
    #heroSearchForm .btn.btn-find {
        display: none;
    }

    /* Mobile bottom action buttons */
    .hero-mobile-actions {
        display: none;
        gap: 10px;
        width: 100%;
        margin-top: 5px;
    }

    #heroSearchForm.expanded .hero-mobile-actions {
        display: flex;
    }

    .btn-cancel-mobile {
        flex: 1;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background: #fff;
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 500;
    }

    .btn-find-mobile {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background-color: var(--secondary);
        color: #fff;
        font-size: 15px;
        font-weight: 500;
    }

    .search-bar {
        border-radius: 8px;
        padding: 12px;
        gap: 16px;
        box-shadow: none !important;
    }


    .promo-slider-section {
        padding: 50px 0;
    }

    .promo-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .promo-card {
        height: 180px;
    }

    .promo-card-content {
        padding: 12px;
    }

    .promo-tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    .promo-card-content h4 {
        font-size: 16px;
    }

    .promo-card-content p {
        font-size: 13px;
    }

    .emergency-btn {
        font-size: 12px;
    }

    .mobileRow {
        background-color: #ffffff;
    }
}