/* ============================================
   AI ENGINEERING CONSULTING PAGE STYLES
   ============================================ */

/* Two-line navigation link styling */
.nav-link-multiline {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-align: center;
    gap: 0.1rem;
}

.nav-link-multiline span {
    display: block;
}

/* Consulting page card grid */
.consulting-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.consulting-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 135, 90, 0.2);
}

.consulting-card h3 {
    color: #00875A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.consulting-card p {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.consulting-card ul {
    color: #cccccc;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin: 1rem 0;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.consulting-card ul li {
    margin-bottom: 0.5rem;
}

.consulting-card .use-case {
    font-style: italic;
    color: #888888;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 3px solid #00875A;
    padding-left: 1rem;
}

/* Pricing tier cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #00875A;
    border-width: 2px;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 135, 90, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.pricing-card h3 {
    color: #00875A;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.pricing-card .price-setup {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
    font-family: 'Merriweather', serif;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #888888;
    font-weight: 400;
}

.pricing-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: #00875A;
    font-weight: 700;
}

.pricing-card .tagline {
    font-style: italic;
    color: #00875A;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Process steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    width: 200px;
    text-align: center;
    border: 1px solid rgba(0, 135, 90, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 135, 90, 0.5);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: #00875A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    font-family: 'Merriweather', serif;
}

.process-step h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.process-step p {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* Architecture diagram styling - Legacy ASCII */
.architecture-diagram {
    background: #0a0a0a;
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 8px;
    padding: 2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre;
    color: #00875A;
    line-height: 1.4;
    margin: 2rem 0;
}

/* Interactive Architecture Diagram with draw.io */
.architecture-diagram-wrapper {
    margin: 2rem 0;
    text-align: center;
}

.architecture-interactive {
    position: relative;
    background: #0a0a0a;
    border: 2px solid rgba(0, 135, 90, 0.4);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    max-width: 900px;
    margin: 0 auto;
}

.architecture-interactive:hover {
    border-color: #00875A;
    box-shadow: 0 0 30px rgba(0, 135, 90, 0.3);
}

.architecture-interactive img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.architecture-interactive:hover img {
    transform: scale(1.02);
}

/* Overlay on hover */
.diagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 135, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.architecture-interactive:hover .diagram-overlay {
    opacity: 1;
}

.overlay-content {
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid #00875A;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.overlay-icon {
    font-size: 1.5rem;
    color: #00875A;
}

.overlay-text {
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Action buttons */
.diagram-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.diagram-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diagram-btn span {
    font-size: 1.1rem;
}

.diagram-btn-edit {
    background: #00875A;
    color: #ffffff;
    border: 2px solid #00875A;
}

.diagram-btn-edit:hover {
    background: #00a572;
    border-color: #00a572;
    transform: translateY(-2px);
}

.diagram-btn-reset {
    background: transparent;
    color: #888888;
    border: 2px solid #444444;
}

.diagram-btn-reset:hover {
    color: #ffffff;
    border-color: #666666;
    background: rgba(255, 255, 255, 0.05);
}

.diagram-hint {
    color: #666666;
    font-size: 0.85rem;
    font-family: 'Merriweather', serif;
    font-style: italic;
    margin-top: 1rem;
}

/* Loading overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #00875A;
    font-family: 'Merriweather', serif;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 135, 90, 0.3);
    border-top-color: #00875A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom badge for modified diagrams */
.custom-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00875A;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-family: 'Merriweather', serif;
    font-weight: 600;
    z-index: 5;
}

/* Save toast notification */
.save-toast {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 135, 90, 0.95);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 20;
}

.save-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Industry grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.industry-item:hover {
    border-color: rgba(0, 135, 90, 0.5);
    transform: translateY(-3px);
}

.industry-item h4 {
    color: #00875A;
    margin-bottom: 0.75rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.industry-item p {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* Tech stack table */
.tech-stack-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.tech-stack-table th,
.tech-stack-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 135, 90, 0.2);
    font-family: 'Merriweather', serif;
}

.tech-stack-table th {
    color: #00875A;
    font-weight: 700;
    background: #0a0a0a;
}

.tech-stack-table td {
    color: #cccccc;
    font-weight: 300;
}

.tech-stack-table tr:hover td {
    background: rgba(0, 135, 90, 0.05);
}

/* Differentiators section */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.differentiator-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.differentiator-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 135, 90, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00875A;
    font-size: 1.5rem;
}

.differentiator-content h4 {
    color: #00875A;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.differentiator-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: #00875A;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.cta-section p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #00875A;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.cta-primary:hover {
    background: #00a572;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #00875A;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    border: 2px solid #00875A;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.cta-secondary:hover {
    background: #00875A;
    color: #ffffff;
}

.trust-elements {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-elements span {
    color: #888888;
    font-size: 0.9rem;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 135, 90, 0.3), transparent);
    margin: 3rem 0;
}

/* Consulting page section styling */
.consulting-section {
    padding: 2rem 0;
}

.consulting-section h2 {
    font-size: 2.25rem;
    color: #00875A;
    margin-bottom: 1.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.consulting-section > p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Merriweather', serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* Challenge cards */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-item {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
}

.challenge-item h4 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.challenge-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* Solution highlight */
.solution-highlight {
    background: rgba(0, 135, 90, 0.1);
    border: 1px solid rgba(0, 135, 90, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.solution-highlight h4 {
    color: #00875A;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.solution-highlight p {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

/* ============================================
   PRESET CONFIGURATION BUTTONS & INFO PANEL
   ============================================ */

/* Main layout container for buttons + diagram */
.architecture-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

/* Preset buttons panel */
.preset-config-panel {
    flex-shrink: 0;
    width: 180px;
    background: #0a0a0a;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preset-panel-title {
    color: #3b82f6;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

/* Individual preset buttons */
.preset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #000000;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.preset-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.preset-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
}

.preset-btn.active .preset-btn-title {
    color: #ffffff;
}

.preset-btn-title {
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    font-weight: 600;
}

/* MCP + Docker button uses cyan/teal active state */
.preset-btn[data-config="mcp-docker"].active {
    background: #0ea5e9;
    border-color: #0ea5e9;
}

/* Diagram wrapper adjusts to fill remaining space */
.architecture-layout .architecture-diagram-wrapper {
    flex: 1;
    margin: 0;
}

/* Configuration Info Panel */
.config-info-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(0, 135, 90, 0.4);
    border-radius: 12px;
    margin-top: 1.5rem;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

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

.config-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 135, 90, 0.1);
    border-bottom: 1px solid rgba(0, 135, 90, 0.2);
}

.config-info-header h4 {
    color: #00875A;
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.config-info-close {
    background: none;
    border: none;
    color: #888888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.config-info-close:hover {
    color: #ffffff;
}

.config-info-body {
    padding: 1.5rem;
}

.config-info-section {
    margin-bottom: 1.5rem;
}

.config-info-section:last-child {
    margin-bottom: 0;
}

.config-info-section h5 {
    color: #00875A;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 135, 90, 0.2);
}

.config-info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.config-info-section ul li {
    color: #cccccc;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.config-info-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Layers section */
.config-layers ul li::before {
    background: #00875A;
}

/* Pros section - green indicators */
.config-pros h5 {
    color: #22c55e;
}

.config-pros ul li::before {
    background: #22c55e;
}

/* Cons section - muted red indicators */
.config-cons h5 {
    color: #f87171;
}

.config-cons ul li::before {
    background: #f87171;
}

/* Best For section */
.config-best-for h5 {
    color: #3b82f6;
}

.config-best-for p {
    color: #cccccc;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #3b82f6;
    border-radius: 0 8px 8px 0;
}

/* Two column layout for pros/cons */
.config-info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for consulting page */
@media (max-width: 768px) {
    .nav-link-multiline {
        flex-direction: row;
        gap: 0.3rem;
    }

    .consulting-card-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }

    .architecture-diagram {
        font-size: 0.65rem;
        padding: 1rem;
    }

    .architecture-interactive {
        border-radius: 8px;
    }

    .overlay-content {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .overlay-text {
        font-size: 0.85rem;
    }

    .diagram-actions {
        flex-direction: column;
        align-items: center;
    }

    .diagram-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Preset config panel responsive */
    .architecture-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .preset-config-panel {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .preset-panel-title {
        width: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .preset-btn {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 120px;
        padding: 0.4rem 0.5rem;
    }

    .preset-btn-title {
        font-size: 0.75rem;
    }

    /* Config info panel responsive */
    .config-info-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .config-info-header {
        padding: 0.875rem 1rem;
    }

    .config-info-header h4 {
        font-size: 1.1rem;
    }

    .config-info-body {
        padding: 1rem;
    }

    .config-quote-action {
        padding-top: 1rem;
    }

    .request-quote-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   REQUEST QUOTE BUTTON IN INFO PANEL
   ============================================ */

.config-quote-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 135, 90, 0.2);
    text-align: center;
}

.request-quote-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00875A 0%, #006644 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.request-quote-btn:hover {
    background: linear-gradient(135deg, #00a572 0%, #00875A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 135, 90, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* ============================================
   DEPLOYMENT PANEL QUOTE BUTTON (FLASHING)
   ============================================ */

.deployment-quote-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 135, 90, 0.3);
}

.deployment-quote-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #00875A;
    background: linear-gradient(135deg, #00875A 0%, #006644 100%);
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.deployment-quote-btn .quote-btn-text {
    font-size: 1rem;
    font-weight: 700;
}

.deployment-quote-btn .quote-btn-hint {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Disabled state - Liquid Glass Wave Effect */
.deployment-quote-btn.disabled {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #3b82f6 60%, #1e3a8a 100%);
    border-color: #3b82f6;
    color: #ffffff;
    cursor: pointer;
    animation: none;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.deployment-quote-btn.disabled::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(96, 165, 250, 0.15) 38%,
        rgba(147, 197, 253, 0.3) 40%,
        rgba(255, 255, 255, 0.4) 42%,
        rgba(147, 197, 253, 0.3) 44%,
        rgba(96, 165, 250, 0.15) 46%,
        transparent 54%
    );
    animation: liquidGlass 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidGlass {
    0% { transform: translateX(-30%) translateY(-30%) rotate(0deg); }
    100% { transform: translateX(30%) translateY(30%) rotate(0deg); }
}

.deployment-quote-btn.disabled .quote-btn-hint {
    opacity: 0.9;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deployment-quote-btn.disabled .quote-btn-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

/* Hover effect for disabled state */
.deployment-quote-btn.disabled:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 40%, #60a5fa 60%, #3b82f6 100%);
    border-color: #60a5fa;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(96, 165, 250, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.deployment-quote-btn.disabled:hover::before {
    animation: liquidGlassHover 1.5s ease-in-out infinite;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(147, 197, 253, 0.2) 35%,
        rgba(191, 219, 254, 0.4) 40%,
        rgba(255, 255, 255, 0.6) 42%,
        rgba(191, 219, 254, 0.4) 44%,
        rgba(147, 197, 253, 0.2) 49%,
        transparent 59%
    );
}

@keyframes liquidGlassHover {
    0% { transform: translateX(-40%) translateY(-40%); }
    100% { transform: translateX(40%) translateY(40%); }
}

.deployment-quote-btn.disabled:hover .quote-btn-text {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Active/enabled state with flashing animation */
.deployment-quote-btn:not(.disabled) {
    animation: quoteButtonFlash 2s ease-in-out infinite;
}

.deployment-quote-btn:not(.disabled) .quote-btn-hint {
    display: none;
}

.deployment-quote-btn:not(.disabled):hover {
    animation: none;
    background: linear-gradient(135deg, #00a572 0%, #00875A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 135, 90, 0.5);
}

/* Flashing keyframes */
@keyframes quoteButtonFlash {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 135, 90, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 135, 90, 0.8), 0 0 40px rgba(0, 135, 90, 0.4);
        transform: scale(1.02);
    }
}

/* Shake animation for disabled button click attempt */
.deployment-quote-btn.shake {
    animation: buttonShake 0.5s ease-in-out;
}

@keyframes buttonShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ============================================
   HIGHLIGHTED TOP SECTION
   ============================================ */

.highlighted-section {
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.1) 0%, rgba(0, 102, 68, 0.05) 100%);
    border: 2px solid rgba(0, 135, 90, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.highlighted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00875A 0%, #00a572 50%, #00875A 100%);
    border-radius: 16px 16px 0 0;
}

.highlighted-section h2 {
    color: #00a572;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 135, 90, 0.3);
}
