/* Law Enforcement-Specific Styles */
:root {
    --law-primary: #1f2937;
    --law-secondary: #374151;
    --law-accent: #3b82f6;
    --law-warning: #f59e0b;
    --law-success: #10b981;
    --law-light: #f3f4f6;
    --law-gradient: linear-gradient(135deg, #1f2937 0%, #374151 50%, #3b82f6 100%);
    --law-bg: #f9fafb;
    --law-card: #ffffff;
    --law-text: #111827;
    --law-text-light: #6b7280;
    --law-border: #d1d5db;
    --law-dark-bg: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--law-text);
    background: var(--law-bg);
    overflow-x: hidden;
}

/* Navigation - Law Enforcement Theme */
.navbar {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--law-accent);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.sector-tag {
    background: var(--law-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--law-accent);
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--law-accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--law-accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Law Enforcement */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::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="tactical-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23374151" stroke-width="0.5"/><circle cx="10" cy="10" r="1" fill="%23374151" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23tactical-grid)"/></svg>');
    opacity: 0.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--law-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid var(--law-accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.sector-badge i {
    font-size: 1.2rem;
    color: var(--law-warning);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--law-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    border: 2px solid var(--law-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
    background: #2563eb;
}

.btn-secondary {
    background: transparent;
    color: var(--law-accent);
    border: 2px solid var(--law-accent);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.btn-secondary:hover {
    background: var(--law-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* Hero Visual - Law Enforcement */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: tacticalFloat 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

.floating-card .card-content {
    text-align: center;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--law-accent);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.floating-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.floating-card p {
    color: #d1d5db;
    font-size: 0.9rem;
}

@keyframes tacticalFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Applications Section - Law Enforcement */
.applications {
    padding: 6rem 0;
    background: var(--law-card);
    position: relative;
}

.applications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--law-gradient);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--law-text);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--law-accent);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--law-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.application-card {
    background: var(--law-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--law-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--law-gradient);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 41, 55, 0.15);
    border-color: var(--law-accent);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: var(--law-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px solid var(--law-accent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.application-icon i {
    font-size: 2rem;
    color: var(--law-accent);
}

.application-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--law-text);
}

.application-card p {
    color: var(--law-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--law-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--law-accent);
}

.scenarios {
    background: var(--law-card);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--law-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.scenarios h4 {
    color: var(--law-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scenarios ul {
    list-style: none;
    padding: 0;
}

.scenarios li {
    padding: 0.5rem 0;
    color: var(--law-text-light);
    position: relative;
    padding-left: 1.5rem;
}

.scenarios li::before {
    content: '▶';
    color: var(--law-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--law-dark-bg);
    color: white;
}

.features .section-header h2 {
    color: white;
}

.features .section-header p {
    color: #d1d5db;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: var(--law-accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--law-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Accessibility Section */
.accessibility {
    padding: 6rem 0;
    background: var(--law-card);
}

.accessibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.accessibility-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--law-text);
}

.accessibility-text p {
    font-size: 1.2rem;
    color: var(--law-text-light);
    margin-bottom: 2rem;
}

.access-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--law-bg);
    border-radius: 15px;
    border: 1px solid var(--law-border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--law-accent);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--law-accent);
    margin-top: 0.25rem;
}

.benefit-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--law-text);
}

.benefit-item p {
    color: var(--law-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.device-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.device {
    background: var(--law-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--law-accent);
    transition: all 0.3s ease;
    color: white;
}

.device:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.device i {
    font-size: 3rem;
    color: var(--law-accent);
    margin-bottom: 1rem;
    display: block;
}

.device span {
    font-weight: 600;
    color: white;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--law-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--law-text);
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--law-text-light);
    margin-bottom: 2rem;
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--law-card);
    border-radius: 10px;
    border: 1px solid var(--law-border);
    transition: all 0.3s ease;
}

.contact-benefit:hover {
    border-color: var(--law-accent);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.1);
}

.contact-benefit i {
    color: var(--law-accent);
    font-size: 1.2rem;
}

.contact-benefit span {
    font-weight: 600;
    color: var(--law-text);
}

.contact-form-container {
    background: var(--law-card);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--law-border);
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.1);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--law-text);
}

.contact-form-container p {
    color: var(--law-text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--law-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--law-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--law-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--law-dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--law-accent);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.made-in {
    font-weight: 600;
    color: var(--law-success) !important;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--law-accent);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .accessibility-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .device-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Special tactical animations */
@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

.tactical-scan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--law-accent);
    box-shadow: 0 0 10px var(--law-accent);
    animation: scanline 3s linear infinite;
}
