/* StoreSignals Page Styles */

/* Hero Section */
.hero--service .badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero--service .badge-dark {
    background-color: rgba(255, 255, 255, 0.95);
    color: #111827;
    font-weight: 600;
}

/* Gaps for flex containers (Bootstrap 4 doesn't have gap utility) */
.gap-2 > * + * {
    margin-left: 0.5rem !important;
}

.gap-3 > * + * {
    margin-left: 1rem !important;
}

/* Sample Alerts Card Styling */
.list-group-item {
    border-left: 0;
    border-right: 0;
}

.list-group-item:first-child {
    border-top: 0;
}

.list-group-item:last-child {
    border-bottom: 0;
}

/* Service Cards Enhancement */
.service-card {
    transition: all 0.3s ease;
}

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

/* Integration Badges */
.badge-light.border {
    background-color: #f8f9fa;
    color: #111827;
    border-color: #dee2e6 !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

/* Pricing Cards */
.card.border-primary {
    border-width: 2px;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* Feature Lists */
.list-unstyled li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.list-unstyled li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Form Enhancements */
.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* Card Header Badges */
.badge-secondary {
    background-color: #6c757d;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
}

.badge-success {
    background-color: #28a745;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
}

/* Metric Cards in Hero */
.bg-light.rounded {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

/* Alert Icon Styling */
.bg-light.border.rounded.p-2 {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquote Styling */
.blockquote {
    font-size: 1.125rem;
    font-style: italic;
}

.blockquote-footer {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero--service h1 {
        font-size: 2rem;
    }

    .hero--service .hero-subtitle {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gap-2 {
        flex-direction: column;
        align-items: stretch;
    }

    .gap-2 > * + * {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    .gap-3 {
        flex-direction: column;
        align-items: stretch;
    }

    .gap-3 > * + * {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .btn-lg {
        display: block;
        width: 100%;
    }

    .section {
        padding: 2.5rem 0;
    }
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

/* Success/Error Indicators on Form */
.form-messages {
    margin-bottom: 1rem;
    padding: 0;
}

.form-messages.alert {
    padding: 1rem;
}

/* Trust Line Styling */
.text-white-50 strong {
    color: #ffffff;
    font-weight: 700;
}
