/* San Andreas Legal - Landing Page Styles */

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --dark: #1a1d29;
    --light: #f8f9fa;
}

html {
    font-size: 80%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 48px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    line-height: 1.2;
}

.hero-image .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: #2d3748;
    padding: 10px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-content {
    background: #1a1d29;
    padding: 0;
}

.mockup-placeholder {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    padding: 80px 32px;
    text-align: center;
    color: #a0aec0;
}

.mockup-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: #4a5568;
}

.mockup-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    color: #cbd5e0;
}

.mockup-placeholder small {
    color: #718096;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid var(--primary);
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    font-size: 1.25rem;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: white;
}

.feature-icon i {
    font-size: 1.6rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.price {
    margin: 1rem 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price .period {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-weight: 600;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Navbar */
.navbar {
    transition: all 0.3s;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
    color: #cbd5e0 !important;
}

footer a:hover {
    color: white !important;
}

/* Utilities */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Spacing Overrides - Reduce whitespace */
section.py-5 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
}

section.py-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
}

.mb-5 {
    margin-bottom: 1.6rem !important;
}

.mb-4 {
    margin-bottom: 1.2rem !important;
}

.row.g-4 {
    --bs-gutter-y: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 64px 0 32px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    section.py-5 {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important;
    }
}
