:root {
    --primary: #0078d4;
    --primary-dark: #005a9e;
    --primary-light: #2b88d8;
    --primary-bg: #f0f6ff;
    --secondary: #0078d4;
    --secondary-dark: #005a9e;
    --success: #10b981;
    --success-light: #d1fae5;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --gradient-border: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary-light));
    --glow-primary: 0 0 20px rgba(0,120,212,0.35), 0 0 60px rgba(0,120,212,0.1);
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #334155;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.navbar {
    padding: 0.6rem 0;
    z-index: 1050;
    background: #fff !important;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark) !important;
    letter-spacing: -0.5px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .site-logo {
        height: 34px;
    }
    .footer-logo {
        height: 32px;
    }
}

.nav-link {
    font-weight: 500;
    color: #475569 !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.2s;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover { color: var(--primary) !important; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after { width: 60%; }

.hero-section {
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
    color: var(--dark);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #f0f6ff 0%, #deecfb 50%, #b3d4fc 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 20px; right: 40px;
    width: 300px; height: 300px;
    background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.1;
    z-index: 0;
    animation: fadeIn 2s ease 1s both;
}

.hero-section .container { position: relative; z-index: 2; }

.hero-section h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.15rem;
    letter-spacing: -1.2px;
    color: #1a202c;
    position: relative;
}

.hero-section h1 strong {
    font-weight: 800;
    background: linear-gradient(135deg, #0078d4 0%, #0ea5e9 50%, #0078d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
    position: relative;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-bg);
    border: 1px solid #7abaed;
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.8s ease;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-search {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.5) inset;
    border: 1px solid var(--glass-border);
    max-width: 560px;
    animation: fadeInUp 1s ease 0.3s both;
    overflow: visible;
    position: relative;
    z-index: 100;
}

.hero-search .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
}

.hero-search .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,120,212,0.12);
}

.hero-search .btn-primary {
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.hero-search .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,120,212,0.25);
}

.hero-illustration {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.hero-illustration .hero-person-placeholder {
    width: 100%;
    max-width: 360px;
    height: 380px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f6ff 0%, #deecfb 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-illustration .hero-person-placeholder i {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.25;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    animation: fadeIn 1.2s ease 0.6s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.trust-badge i { color: var(--primary); font-size: 0.85rem; }

.stats-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-item .stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.stat-item .stat-label { font-size: 0.75rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.marquee-container {
    overflow: hidden;
    background: var(--dark);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-content {
    display: flex;
    gap: 3.5rem;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marquee-item i { color: var(--primary); font-size: 0.8rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.6;
}

.step-card {
    text-align: center;
    padding: 2.25rem 1.5rem 2rem;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,120,212,0.2);
}

.step-card:hover::before { opacity: 1; }

.step-number {
    width: 52px; height: 52px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(0,120,212,0.2);
}

.step-card:hover .step-number {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.step-card h5 { font-weight: 700; font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--dark); }
.step-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin: 0; }

.feature-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,120,212,0.25);
}

.feature-icon {
    width: 64px; height: 64px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s;
    border: 2px solid rgba(0,120,212,0.15);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.feature-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: 0.88rem; margin: 0; line-height: 1.5; }

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #fff;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,120,212,0.1);
    border-color: rgba(0,120,212,0.2);
}

.service-card .card-body { padding: 1.5rem; }
.service-card h5 { font-weight: 700; margin-bottom: 0.6rem; font-size: 1.1rem; color: var(--dark); }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }

.service-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0.15rem;
    transition: all 0.2s;
}

.service-tag:hover {
    background: var(--primary);
    color: #fff;
}

.service-icon-wrap {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0,120,212,0.06) 100%);
    position: relative;
    overflow: hidden;
}

.service-icon-wrap i {
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap i {
    transform: scale(1.15);
    color: var(--primary-dark);
}

.service-icon-wrap::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(0,120,212,0.06);
    right: -30px; bottom: -30px;
}

.city-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.city-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,120,212,0.15);
    color: inherit;
}

.city-card:hover::before { transform: scaleX(1); }

.city-card .popular-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,120,212,0.3);
}

.city-card h5 { font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.city-card h6 { font-weight: 600; font-size: 0.95rem; }
.city-card .city-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--gray); margin-top: 0.75rem; font-weight: 500; }
.city-card .city-meta i { color: var(--primary); }

.listing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.listing-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0,120,212,0.2);
}

.listing-card .company-logo {
    width: 85px; height: 85px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--border);
    background: linear-gradient(135deg, var(--primary-bg), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.listing-card .company-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.listing-card .company-name:hover { color: var(--primary); }

.badge-verified {
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.review-section { background: #fff; }

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px; right: 20px;
    font-size: 4rem;
    color: var(--primary-bg);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-card .reviewer-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-card .reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.review-card .reviewer-role { font-size: 0.8rem; color: var(--gray); }
.review-card .review-text { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }
.review-card .review-meta { font-size: 0.82rem; color: var(--gray); }
.review-card .review-service {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.review-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}

.review-summary .big-rating { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--dark); }
.review-summary .review-count { font-size: 0.9rem; color: var(--gray); }

.rating-bars { margin-top: 1.25rem; }
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    color: var(--gray);
}
.rating-bar-row .bar-track {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-row .bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

.impact-section {
    background: linear-gradient(180deg, #f8faff 0%, #fff 50%, #f8faff 100%);
    color: var(--dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,120,212,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0,120,212,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.impact-item {
    text-align: center;
    padding: 1.5rem 0.5rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap;
}

.impact-label { font-weight: 600; margin-top: 0.5rem; font-size: 0.82rem; color: var(--dark); }
.impact-sublabel { font-size: 0.82rem; color: var(--gray); margin-top: 0.2rem; }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--border);
    transition: all 0.3s;
}

.trust-strip-item:last-child { border-right: none; }
.trust-strip-item:hover { background: var(--primary-bg); }

.trust-strip-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-strip-item strong { font-size: 0.88rem; color: var(--dark); display: block; }
.trust-strip-item span { font-size: 0.78rem; color: var(--gray); }

.cta-section {
    background: linear-gradient(135deg, #312e81 0%, var(--primary-dark) 25%, var(--primary) 50%, var(--secondary) 85%, #0078d4 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-weight: 800; font-size: 2.1rem; letter-spacing: -0.5px; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; }

.cta-section .btn-light {
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-light::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(0,120,212,0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-section .btn-light:hover::before {
    width: 300px; height: 300px;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 40px rgba(255,255,255,0.15);
}

.faq-section { background: #fff; }

.faq-section .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 1.15rem 1.5rem;
    font-size: 1rem;
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-bg);
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card img { height: 200px; object-fit: cover; width: 100%; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .card-body { padding: 1.5rem; }
.blog-card h5 { font-weight: 700; font-size: 1rem; line-height: 1.4; }
.blog-card h5 a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.blog-card h5 a:hover { color: var(--primary); }

.blog-content { line-height: 1.8; font-size: 1.05rem; }
.blog-content h2, .blog-content h3 { color: var(--dark); margin-top: 2rem; margin-bottom: 1rem; }

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1040;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

.sidebar-filter {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.sidebar-filter h5 { font-weight: 700; color: var(--dark); }

.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 3rem 0 2.5rem;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    font-size: 2rem;
}

.page-header p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.page-header a { color: rgba(255,255,255,0.8); }
.page-header a:hover { color: #fff; }

.cost-estimator {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.cost-estimator::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.cost-estimator h4 { font-weight: 700; color: var(--dark); }

.cost-estimator .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.cost-estimator .btn-group .btn {
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.stars { color: var(--primary); }

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

footer {
    background: linear-gradient(180deg, var(--dark) 0%, #020617 100%);
    color: rgba(255,255,255,0.7);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.4;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

footer a:hover { color: #fff; padding-left: 4px; }

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
    margin-top: 2rem;
}

.admin-sidebar {
    width: 260px;
    height: 100vh;
    background: var(--dark);
    position: fixed;
    left: 0; top: 0;
    z-index: 1040;
    transition: transform 0.3s;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.admin-sidebar .sidebar-brand {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.6) !important;
    padding: 0.7rem 1.5rem !important;
    font-size: 0.88rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: #fff !important;
    background: rgba(0,120,212,0.15);
    border-left-color: var(--primary);
}

.admin-sidebar .nav-link i { width: 22px; text-align: center; margin-right: 0.6rem; font-size: 0.85rem; }

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    margin-bottom: 1.25rem;
}

.admin-content {
    margin-left: 260px;
    padding: 1.75rem;
    min-height: 100vh;
    background: #f1f5f9;
    animation: fadeInUp 0.2s ease;
}

.admin-stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.admin-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.admin-stat-card .stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.admin-stat-card h3 { font-size: 1.75rem; font-weight: 800; margin: 0; letter-spacing: -0.5px; }
.admin-stat-card p { font-size: 0.85rem; color: var(--gray); margin: 0; font-weight: 500; }

.counter-up { display: inline-block; }

@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 2.5rem 0 2rem; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section::before { display: none; }
    .hero-section::after { display: none; }
    .hero-map-wrap { min-height: 280px !important; margin-top: 1.5rem; }
    .hero-map-img { height: 270px !important; width: 216px !important; }
    .hero-map-svg { height: 270px !important; width: 216px !important; }
    .hero-map-wrap .floating-card { transform: scale(0.75); }
    .hero-map-wrap .route-animation { transform: scale(0.75); }
    .hero-search { max-width: 100%; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .section-title h2 { font-size: 1.75rem; }
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
    }
    .navbar-nav { margin-bottom: 0.75rem; }
    .navbar-nav .nav-link { padding: 0.6rem 0.75rem !important; border-radius: var(--radius-sm); }
    .navbar-nav .nav-link:hover { background: var(--primary-bg); }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-collapse .d-flex { flex-wrap: wrap; padding-top: 0.5rem; border-top: 1px solid var(--border); }
    .navbar-collapse .d-flex .btn span { display: inline !important; }
    .sidebar-filter { position: static; margin-bottom: 1.5rem; }
    .listing-card .d-flex.gap-3 { flex-direction: column; }
    .listing-card .company-logo { width: 60px; height: 60px; font-size: 1.2rem; }
    .detail-header .d-flex.flex-wrap { flex-direction: column; text-align: center; }
    .detail-header .flex-shrink-0 { margin: 0 auto; }
    .detail-header .d-flex.flex-wrap > div:last-child { align-items: center; display: flex; flex-direction: column; }
    .detail-header .d-flex.flex-wrap .d-flex.flex-wrap { justify-content: center; }
    .page-header h1 { font-size: 1.75rem; }
    .cta-section { padding: 3rem 0; }
    .cta-section h2 { font-size: 1.65rem; }
    .impact-section { padding: 3.5rem 0; }
    .impact-number { font-size: 1.85rem; }
    .review-summary { padding: 1.5rem; }
    .cost-estimator { padding: 1.5rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 2rem 0 1.5rem; }
    .hero-section h1 { font-size: 1.75rem; line-height: 1.25; }
    .hero-map-wrap { min-height: 240px !important; margin-top: 1rem; }
    .hero-map-img { height: 230px !important; width: 184px !important; }
    .hero-map-svg { height: 230px !important; width: 184px !important; }
    .hero-map-wrap .floating-card { transform: scale(0.65); }
    .hero-map-wrap .route-animation { transform: scale(0.65); }
    .hero-badge { font-size: 0.78rem; padding: 0.35rem 0.9rem; }
    .hero-search { padding: 1.15rem; }
    .hero-search .d-flex { flex-direction: column; }
    .hero-search .btn-primary { width: 100%; }
    .stats-bar { gap: 1rem; padding: 1rem; }
    .stat-item .stat-number { font-size: 1.2rem; }
    .stat-item .stat-label { font-size: 0.68rem; }
    .section-title { margin-bottom: 2rem; }
    .section-title h2 { font-size: 1.5rem; }
    .section-title p { font-size: 0.92rem; }
    .step-card { padding: 1.5rem 1rem; }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-icon { width: 52px; height: 52px; font-size: 1.2rem; }
    .service-card .card-body { padding: 1.15rem; }
    .service-icon-wrap { height: 130px; }
    .service-icon-wrap i { font-size: 2.2rem; }
    .city-card { padding: 1.15rem; }
    .city-card h5 { font-size: 1rem; }
    .listing-card { padding: 1.15rem; }
    .listing-card .d-flex.gap-3 { flex-direction: column; }
    .listing-card .company-logo { width: 56px; height: 56px; font-size: 1rem; }
    .listing-card .company-name { font-size: 1.05rem; }
    .review-card { padding: 1.25rem; }
    .review-card::before { font-size: 3rem; top: 10px; right: 15px; }
    .impact-number { font-size: 1.65rem; }
    .impact-section { padding: 2.5rem 0; }
    .impact-label { font-size: 0.78rem; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-strip-item { padding: 1rem 0.75rem; }
    .trust-strip-item i { font-size: 1.2rem; }
    .trust-strip-item strong { font-size: 0.82rem; }
    .cta-section { padding: 2.5rem 0; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section p { font-size: 0.95rem; }
    .cta-section .btn-light { padding: 0.7rem 2rem; font-size: 0.95rem; }
    .faq-section .accordion-button { padding: 0.9rem 1.15rem; font-size: 0.92rem; }
    .faq-section .accordion-body { padding: 0 1.15rem 1rem; font-size: 0.88rem; }
    .blog-card img { height: 160px; }
    .blog-card .card-body { padding: 1.15rem; }
    .blog-card h5 { font-size: 0.92rem; }
    .blog-content { font-size: 0.95rem; }
    .page-header { padding: 2.5rem 0 2rem; }
    .page-header h1 { font-size: 1.5rem; }
    .page-header p { font-size: 0.95rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
    footer { padding-top: 2.5rem !important; }
    footer h5 { font-size: 0.95rem; margin-bottom: 1rem; }
    footer a { font-size: 0.85rem; }
    footer .footer-bottom { margin-top: 1.5rem; padding-top: 1rem; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; padding: 1rem; }
    .marquee-item { font-size: 0.75rem; }
    .sidebar-filter { position: static; }
    .nav-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .nav-tabs .nav-link { white-space: nowrap; font-size: 0.85rem; padding: 0.6rem 0.75rem !important; }
    .trust-badges { gap: 0.75rem; }
    .trust-badge { font-size: 0.78rem; }
    .modal-dialog { margin: 0.75rem; }
    .modal-body { padding: 1.25rem !important; }
}

@media (max-width: 480px) {
    .hero-section { padding: 1.5rem 0 1.25rem; }
    .hero-section h1 { font-size: 1.4rem; letter-spacing: -0.5px; }
    .hero-section h1 br { display: none; }
    .hero-section p { font-size: 0.9rem !important; }
    .hero-map-wrap { min-height: 200px !important; margin-top: 0.75rem; }
    .hero-map-img { height: 190px !important; width: 152px !important; }
    .hero-map-svg { height: 190px !important; width: 152px !important; }
    .hero-map-wrap .floating-card { transform: scale(0.55); }
    .hero-map-wrap .route-animation { transform: scale(0.55); }
    .hero-badge { font-size: 0.72rem; padding: 0.3rem 0.75rem; margin-bottom: 0.75rem; }
    .hero-search { padding: 1rem; }
    .hero-search .form-select { padding: 0.7rem 0.85rem; font-size: 0.9rem; }
    .hero-search .btn-primary { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    .stats-bar { gap: 0.5rem; padding: 0.75rem; margin-top: 1.25rem; }
    .stat-item .stat-number { font-size: 1.05rem; }
    .stat-item .stat-label { font-size: 0.62rem; letter-spacing: 0.3px; }
    .trust-badges { gap: 0.5rem; margin-top: 1rem; }
    .trust-badge { font-size: 0.72rem; gap: 0.35rem; }
    .trust-badge i { font-size: 0.72rem; }
    .section-title { margin-bottom: 1.5rem; }
    .section-title h2 { font-size: 1.3rem; }
    .section-title p { font-size: 0.85rem; }
    .section-badge { font-size: 0.72rem; padding: 0.25rem 0.75rem; }
    .step-card { padding: 1.25rem 0.85rem; }
    .step-card h5 { font-size: 0.92rem; }
    .step-card p { font-size: 0.8rem; }
    .step-number { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 1rem; }
    .feature-card { padding: 1.25rem 0.85rem; }
    .feature-card h5 { font-size: 0.92rem; }
    .feature-card p { font-size: 0.82rem; }
    .feature-icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 1rem; }
    .service-card h5 { font-size: 1rem; }
    .service-card p { font-size: 0.82rem; }
    .service-icon-wrap { height: 110px; }
    .service-icon-wrap i { font-size: 2rem; }
    .city-card { padding: 1rem; }
    .city-card h5 { font-size: 0.92rem; }
    .city-card .city-meta { font-size: 0.75rem; gap: 0.6rem; }
    .listing-card { padding: 1rem; }
    .listing-card .company-logo { width: 48px; height: 48px; font-size: 0.9rem; border-radius: 8px; }
    .listing-card .company-name { font-size: 0.95rem; }
    .listing-card .d-flex.flex-wrap.gap-2 { gap: 0.35rem !important; }
    .listing-card .btn-sm { font-size: 0.75rem; padding: 0.3rem 0.8rem !important; }
    .service-tag { font-size: 0.68rem; padding: 0.2rem 0.5rem; }
    .review-card { padding: 1rem; }
    .review-card .reviewer-avatar { width: 40px; height: 40px; font-size: 0.95rem; }
    .review-card .reviewer-name { font-size: 0.88rem; }
    .review-card .review-text { font-size: 0.85rem; }
    .impact-item { padding: 0.75rem 0.25rem; }
    .impact-number { font-size: 1.4rem; }
    .impact-label { font-size: 0.72rem; }
    .impact-sublabel { font-size: 0.72rem; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .trust-strip-item { padding: 0.85rem 0.5rem; }
    .trust-strip-item i { font-size: 1rem; margin-bottom: 0.35rem; }
    .trust-strip-item strong { font-size: 0.78rem; }
    .trust-strip-item span { font-size: 0.7rem; }
    .cta-section { padding: 2rem 0; }
    .cta-section h2 { font-size: 1.25rem; }
    .cta-section p { font-size: 0.88rem; }
    .cta-section .btn-light { padding: 0.6rem 1.5rem; font-size: 0.88rem; }
    .blog-card img { height: 140px; }
    .blog-card .card-body { padding: 1rem; }
    .blog-card h5 { font-size: 0.85rem; }
    .blog-content { font-size: 0.9rem; line-height: 1.7; }
    .page-header { padding: 2rem 0 1.5rem; }
    .page-header h1 { font-size: 1.35rem; }
    .page-header p { font-size: 0.88rem; }
    .breadcrumb { font-size: 0.78rem; }
    .breadcrumb-item + .breadcrumb-item::before { font-size: 0.7rem; }
    .cost-estimator { padding: 1.15rem; }
    .cost-estimator .form-label { font-size: 0.8rem; }
    .whatsapp-float { bottom: 15px; right: 15px; width: 48px; height: 48px; font-size: 1.3rem; }
    footer .row.g-4 > div { margin-bottom: 0.5rem; }
    .marquee-content { gap: 2rem; }
    .marquee-item { font-size: 0.7rem; }
    .modal-body { padding: 1rem !important; }
    .modal-body .row.g-3 > div { margin-bottom: 0; }
    .badge-verified, .badge-featured { font-size: 0.62rem; padding: 0.2rem 0.5rem; }
    .nav-tabs .nav-link { font-size: 0.78rem; padding: 0.5rem 0.6rem !important; }
    .nav-tabs .nav-link i { display: none; }
    .detail-header h1 { font-size: 1.35rem !important; }
    .review-summary .big-rating { font-size: 2.5rem; }
    .rating-bar-row { font-size: 0.75rem; }
    .admin-content { padding: 0.75rem; }
}

.bg-gradient-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.text-primary { color: var(--primary) !important; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3730a3 100%);
    border-color: transparent;
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(0,120,212,0.2);
}
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 600; }
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.btn { transition: all 0.3s; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

a:focus-visible, .nav-link:focus-visible, .city-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.service-tag:focus-visible, .step-card:focus-visible, .feature-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
    transition: all 0.3s;
}

.card:hover { box-shadow: var(--shadow-sm); }

input.form-control, select.form-select, textarea.form-control {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    transition: all 0.3s;
}

input.form-control:focus, select.form-select:focus, textarea.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
}

section {
    position: relative;
}

.py-5 + .py-5::before,
.review-section + section::before,
section.py-5 + .impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.listing-card {
    transition: all 0.3s ease, border-color 0.4s ease;
}

.listing-card:hover {
    border-color: rgba(0,120,212,0.2);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,120,212,0.05);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0,120,212,0.15);
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
    border-color: rgba(0,120,212,0.15);
}

.section-badge {
    background: linear-gradient(135deg, var(--primary-bg), rgba(0,120,212,0.12));
    border: 1px solid rgba(0,120,212,0.15);
}

.impact-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon-wrap {
    transition: all 0.4s;
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, rgba(0,120,212,0.1) 0%, rgba(0,120,212,0.06) 100%);
}

.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95) !important;
}

.verified-badge { display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;background:#0078d4;border-radius:50%;margin-left:6px;vertical-align:middle;flex-shrink:0; }
.verified-badge i { color:#fff;font-size:0.55rem; }
.verified-badge-lg { width:22px;height:22px; }
.verified-badge-lg i { font-size:0.65rem; }

/* ── Page Progress Bar ─────────────────────────────────────── */
#page-progress { position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--primary),var(--secondary));z-index:9999;width:0;transition:width 0.3s ease; }
#page-progress.done { opacity:0;transition:opacity 0.4s ease 0.1s; }

/* ── Admin Page Animations ─────────────────────────────────── */
.admin-content-wrapper { animation:fadeInUp 0.2s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
