/* Slog Way IT Services - Modern & Premium Design System Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #4f46e5;          /* Indigo 600 */
    --primary-light: #818cf8;    /* Indigo 400 */
    --primary-dark: #3730a3;     /* Indigo 800 */
    --secondary: #7c3aed;        /* Violet 600 */
    --accent: #06b6d4;           /* Cyan 500 */
    --accent-light: #67e8f9;     /* Cyan 300 */
    
    /* Neutrals */
    --bg-main: #f8fafc;          /* Slate 50 */
    --bg-card: #ffffff;
    --text-primary: #0f172a;     /* Slate 900 */
    --text-secondary: #475569;   /* Slate 600 */
    --text-muted: #64748b;       /* Slate 500 */
    --border-light: rgba(226, 232, 240, 0.8); /* Slate 200 w/ opacity */
    
    /* Grains & Blurs */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px -1px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 8px 24px -4px rgba(15, 23, 42, 0.04);
    --shadow-indigo: 0 20px 40px -15px rgba(79, 70, 229, 0.18);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Reset & Typography */
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Navbar Upgrades */
.navbar {
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: transparent !important;
    border-bottom: 1px solid transparent;
}

.navbar-scrolled {
    padding: 12px 0;
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    padding: 8px 18px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(79, 70, 229, 0.08);
}

/* Glowing Background Blobs */
.blur-blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    mix-blend-mode: multiply;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-primary {
    background-color: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    right: 5%;
}

.blob-secondary {
    background-color: var(--secondary);
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -50px;
    animation-delay: -5s;
}

.blob-accent {
    background-color: var(--accent);
    width: 350px;
    height: 350px;
    top: 30%;
    left: 45%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 40px) scale(1.1); }
    100% { transform: translate(-20px, 80px) scale(0.9); }
}

/* Hero Section Styles */
.hero-section {
    padding: 180px 0 120px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(243, 244, 246, 0.6) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 550px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    filter: blur(40px);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

/* Modern Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Styled Section Header */
.section-title {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title span.tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    background-color: rgba(79, 70, 229, 0.08);
    border-radius: 30px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
}

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

/* Custom Buttons */
.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
    box-shadow: var(--shadow-indigo);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-indigo);
}

.btn-light-glass {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
}

.btn-light-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Tech Stack Section (Trust Indicators) */
.tech-stack-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.4);
}

.tech-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.65;
    cursor: default;
}

.tech-item i {
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.tech-item:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tech-item:hover i.fa-react { color: #61dafb; }
.tech-item:hover i.fa-php { color: #777bb4; }
.tech-item:hover i.fa-node-js { color: #68a063; }
.tech-item:hover i.fa-aws { color: #ff9900; }
.tech-item:hover i.fa-wordpress { color: #21759b; }
.tech-item:hover i.fa-google { color: #4285f4; }
.tech-item:hover i.fa-database { color: #f29111; }

/* Premium Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 28px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: scale(1.05) rotate(4deg);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Statistics Section */
.stats-section {
    position: relative;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Workflow Timeline (Slog Way Lifecycle) */
.workflow-section {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 35px;
    width: 24px;
    height: 24px;
    background: var(--bg-card);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 420px;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.2);
}

.timeline-step {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.timeline-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 8px !important;
    }
    
    .timeline-card {
        max-width: 100%;
    }
}

/* Testimonials Upgrades */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin: 20px 10px;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* FAQ Accordion Styling */
.faq-section {
    position: relative;
}

.faq-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(79, 70, 229, 0.2);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background-color: transparent;
    padding: 24px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.02);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Premium Call To Action (CTA) */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
    filter: blur(50px);
}

.cta-section h2 {
    color: white;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 0;
}

/* Footer Section */
footer {
    background-color: #0b0f19;
    border-top: 1px solid #1e293b;
    padding: 80px 0 45px;
    color: #94a3b8;
}

footer h5 {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: white;
    transform: translateX(4px);
}

footer .footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e293b;
    border-radius: 10px;
    color: #cbd5e1;
    transition: all 0.3s ease;
    margin-right: 8px;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.6);
}

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

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

/* Floating Animation Utility */
.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section {
        padding: 140px 0 80px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

/* Hero Live Map Styles */
.hero-map-wrapper {
    position: relative;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-map-wrapper:hover {
    box-shadow: 0 35px 70px -15px rgba(79, 70, 229, 0.15);
}

#heroMap {
    height: 440px;
    width: 100%;
    z-index: 5;
    background-color: #e2e8f0;
}

.map-live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Emerald 500 */
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    animation: indicator-pulse 1.8s infinite ease-in-out;
}

@keyframes indicator-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Leaflet Custom Styles */
.leaflet-popup-content-wrapper {
    border-radius: 16px !important;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid var(--border-light);
}

.leaflet-popup-content {
    margin: 12px 16px !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}

.leaflet-popup-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
    font-family: var(--font-heading);
}

.leaflet-popup-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Pulsing SVG map markers for client locations */
.map-marker-pulse {
    animation: marker-glow-pulse 2s infinite ease-in-out;
}

@keyframes marker-glow-pulse {
    0% {
        stroke-width: 2;
        stroke-opacity: 1;
    }
    50% {
        stroke-width: 10;
        stroke-opacity: 0.35;
    }
    100% {
        stroke-width: 2;
        stroke-opacity: 1;
    }
}

