/* NorthGate STL - Components CSS */

/* NOVA AI Assistant */
.nova-assistant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: var(--font-family);
}

.nova-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.nova-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
}

.nova-toggle i {
    font-size: var(--font-size-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nova-chat {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.nova-chat.active {
    display: flex;
}

.nova-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.nova-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    font-weight: 600;
}

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

.nova-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nova-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nova-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.nova-message {
    display: flex;
    gap: var(--spacing-md);
    max-width: 85%;
}

.nova-message-bot {
    align-self: flex-start;
}

.nova-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.nova-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.nova-message-bot .nova-avatar {
    background: var(--gradient-primary);
    color: white;
}

.nova-message-user .nova-avatar {
    background: var(--gradient-secondary);
    color: white;
}

.nova-content {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: var(--font-size-sm);
}

.nova-message-user .nova-content {
    background: var(--gradient-secondary);
    color: white;
}

.nova-input {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--glass-border);
}

#nova-input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    color: white;
    font-size: var(--font-size-sm);
    outline: none;
    transition: var(--transition-fast);
}

#nova-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#nova-input-field:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

#nova-send {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

#nova-send:hover {
    transform: scale(1.05);
}

/* Loading Animation */
.nova-loading {
    display: flex;
    gap: 4px;
    padding: var(--spacing-md);
}

.nova-loading span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: loading 1.4s infinite ease-in-out both;
}

.nova-loading span:nth-child(1) { animation-delay: -0.32s; }
.nova-loading span:nth-child(2) { animation-delay: -0.16s; }
.nova-loading span:nth-child(3) { animation-delay: 0s; }

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Interactive Sliders */
.calculator-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--glass-shadow);
}

.calculator-title {
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-2xl);
}

.slider-group {
    margin-bottom: var(--spacing-xl);
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 500;
}

.slider-value {
    font-weight: 700;
    color: var(--accent);
    font-size: var(--font-size-lg);
}

.slider-container {
    margin-bottom: var(--spacing-lg);
}

/* NoUiSlider Customization */
.noUi-target {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: none;
    height: 10px;
}

.noUi-handle {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.noUi-connect {
    background: var(--gradient-primary);
}

.noUi-horizontal .noUi-handle {
    top: -7px;
}

/* Results Display */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.result-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chart Containers */
.chart-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--glass-shadow);
}

.chart-title {
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.chart-wrapper {
    position: relative;
    height: 400px;
}

/* Timeline Components */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

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

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--glass-shadow);
    max-width: 45%;
}

.timeline-date {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: inline-block;
}

.timeline-title {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Map Components */
.map-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    height: 600px;
    position: relative;
}

.map-controls {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.map-control-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.map-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.map-control-btn.active {
    background: var(--gradient-primary);
}

/* ===== GALLERY STYLES ===== */
.gallery-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
}

/* Feedback Form */
.feedback-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--glass-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    color: white;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    color: white;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Page Header */
.page-header {
    padding: calc(70px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    text-align: center;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.page-title {
    color: white;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-xl);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Back Navigation */
.back-nav {
    position: fixed;
    top: 80px;
    left: var(--spacing-lg);
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.back-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
    color: white;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-planned {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-completed {
    background: rgba(37, 99, 235, 0.2);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: var(--spacing-sm) 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s ease-in-out;
    border-radius: 4px;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}
/* ==================== */
/* MAP SPECIFIC STYLES */
/* ==================== */

.map-section {
    padding: 2rem 0;
    position: relative;
}

.map-controls-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .map-controls-container {
        flex-direction: row;
    }
    
    .map-controls {
        width: 300px;
        flex-shrink: 0;
    }
    
    .map-display {
        flex-grow: 1;
    }
}

.map-controls {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-group {
    margin-bottom: 2rem;
}

.control-group h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-control-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-control-btn:hover, .map-control-btn.active {
    background: rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.8);
}

.map-display {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 500px;
}

#projectMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    z-index: 1000;
    max-width: 400px;
    transition: all 0.3s ease;
}

.location-info-panel h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.location-info-panel #location-coordinates {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.location-info-panel p {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-actions {
    display: flex;
    gap: 0.75rem;
}

.location-actions button {
    flex: 1;
}

.locations-grid-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.phase1-card .location-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.phase2-card .location-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.phase3-card .location-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.phase4-card .location-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.catalyst-card .location-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.location-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.location-coords {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.location-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.location-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #475569;
}

.location-btn {
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.location-btn:hover {
    background: #2563eb;
}

.sharing-section {
    padding: 3rem 0;
}

.sharing-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sharing-container h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.email {
    background: #ea4335;
    color: white;
}

.share-btn.copy {
    background: #6b7280;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Leaflet Marker Styles */
.phase-marker, .catalyst-marker {
    background: transparent !important;
    border: none !important;
}