/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h3 {
    color: #667eea;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.demo-description h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.demo-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.demo-feature:hover {
    transform: translateX(5px);
}

.demo-feature i {
    font-size: 1.5rem;
    color: #667eea;
}

.demo-feature span {
    font-weight: 500;
    color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subhead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #f8f9fa;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.problem-image {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* KPIs Section */
.kpis {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.kpis .section-title {
    color: white;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kpi-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #f8f9fa;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-header > div,
.comparison-row > div {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.feature-column {
    font-weight: 500;
    background: white;
}

.our-service {
    color: #28a745;
}

.competitor {
    color: #dc3545;
}

.our-service i,
.competitor i {
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
    font-style: italic;
}

.package-desc {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-features li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.extra-drone-note {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #e9ecef;
    border-radius: 6px;
}

.extra-drone-note small {
    color: #666;
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.pricing-note p {
    color: #666;
    margin: 0;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.credential {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: #f8f9fa;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.case-study {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.case-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.case-attendees {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.testimonial {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

/* Credibility Section */
.credibility {
    padding: 100px 0;
    background: white;
}

.credibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credibility-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.credibility-item:hover {
    transform: translateY(-3px);
}

.credibility-item i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 1rem;
}

.credibility-item span {
    font-weight: 500;
    color: #1a1a1a;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

/* Technology Page Styles */
.tech-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.tech-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-detailed {
    padding: 100px 0;
    background: white;
}

.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-detailed {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: start;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.tech-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.advanced-tech {
    padding: 100px 0;
    background: #f8f9fa;
}

.tech-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tech-card-detailed {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-card-detailed:hover {
    transform: translateY(-10px);
}

.tech-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.tech-card-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.tech-card-detailed p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-features {
    list-style: none;
    text-align: left;
}

.tech-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.operational-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-video .video-container {
    max-width: 600px;
    margin: 0 auto;
}

.overview-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.overview-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overview-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.overview-feature:hover {
    transform: translateX(5px);
}

.overview-feature i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.25rem;
}

.overview-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.overview-feature p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Live Demo Page Styles */
.demo-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.demo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.demo-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon {
    padding: 100px 0;
    background: white;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    background: #f8f9fa;
    border: 3px dashed #667eea;
    border-radius: 12px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.placeholder-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 2rem;
}

.video-placeholder h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.video-placeholder p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.tech-specs {
    padding: 100px 0;
    background: #f8f9fa;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-category h3 i {
    color: #667eea;
    font-size: 1.3rem;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #666;
}

.spec-value {
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

.performance-metrics {
    padding: 100px 0;
    background: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.metric-trend i {
    font-size: 0.8rem;
}

/* Fleet Page Styles */
.fleet-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
}

.fleet-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.fleet-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.fleet-overview {
    padding: 100px 0;
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.drone-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.drone-image {
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.drone-image:has(.drone-photo) {
    background: none;
}

.drone-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.drone-photo:hover {
    transform: scale(1.05);
}

.drone-placeholder {
    color: white;
    font-size: 4rem;
    opacity: 0.8;
}

.drone-info {
    padding: 2.5rem;
}

.drone-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.drone-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.drone-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

.feature-tag i {
    font-size: 1rem;
}

.specs-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.specs-toggle:hover {
    background: #5a6fd8;
}

.specs-toggle i {
    transition: transform 0.3s ease;
}

.detailed-specs {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-category h4 i {
    color: #667eea;
    font-size: 1.1rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.drone-actions {
    margin-top: 2rem;
    text-align: center;
}

.drone-actions .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-capabilities {
    padding: 100px 0;
    background: #f8f9fa;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.capability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.capability-card p {
    color: #666;
    line-height: 1.6;
}

/* Drone Animation Styles */
.drone-animation {
    padding: 100px 0;
    background: white;
}

.animation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.animation-container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-site {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 12px;
    overflow: hidden;
}

.perimeter {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px dashed #28a745;
    border-radius: 8px;
    opacity: 0.6;
}

.guard {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.guard-1 { top: 80px; left: 80px; }
.guard-2 { top: 80px; right: 80px; }
.guard-3 { bottom: 80px; left: 80px; }
.guard-4 { bottom: 80px; right: 80px; }

.guard-body {
    width: 30px;
    height: 40px;
    background: #007bff;
    border-radius: 15px 15px 8px 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
}

.guard-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    border: 2px solid #007bff;
}

.guard-body::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 8px;
    background: #6c757d;
    border-radius: 4px;
}

.guard-label {
    font-size: 0.6rem;
    color: #007bff;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

.guard.moving {
    animation: guardMoveToThreat 4s ease-in-out;
}

@keyframes guardMoveToThreat {
    0% { transform: translate(0, 0); }
    50% { transform: translate(100px, 50px); }
    100% { transform: translate(0, 0); }
}

.drone-van {
    position: absolute;
    width: 60px;
    height: 45px;
    background: #6c757d;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.van-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.van-2 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.van-3 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.van-icon {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.van-label {
    font-size: 0.6rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.drone {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drone-body {
    position: relative;
    width: 30px;
    height: 20px;
    background: #28a745;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.drone-propeller {
    position: absolute;
    width: 8px;
    height: 2px;
    background: #6c757d;
    border-radius: 1px;
    animation: propellerSpin 0.1s linear infinite;
}

.prop-1 { top: 2px; left: 2px; }
.prop-2 { top: 2px; right: 2px; }
.prop-3 { bottom: 2px; left: 2px; }
.prop-4 { bottom: 2px; right: 2px; }

.drone-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #1e7e34;
    border-radius: 50%;
}

@keyframes propellerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Triangular formation with synchronized circular patrol */
.drone-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: droneCircularPatrol1 15s linear infinite;
}

.drone-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: droneCircularPatrol2 15s linear infinite;
}

.drone-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: droneCircularPatrol3 15s linear infinite;
}

@keyframes droneCircularPatrol1 {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(180px) rotate(-0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

@keyframes droneCircularPatrol2 {
    0% { 
        transform: translate(-50%, -50%) rotate(120deg) translateX(180px) rotate(-120deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(480deg) translateX(180px) rotate(-480deg);
    }
}

@keyframes droneCircularPatrol3 {
    0% { 
        transform: translate(-50%, -50%) rotate(240deg) translateX(180px) rotate(-240deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(600deg) translateX(180px) rotate(-600deg);
    }
}

.drone.landing {
    animation: droneLand 1s ease-in-out;
}

.drone.taking-off {
    animation: droneTakeoff 1s ease-in-out;
}

.drone.responding {
    animation: droneRespond 1s ease-in-out;
}

@keyframes droneLand {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.8); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes droneTakeoff {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes droneRespond {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.threat-dot {
    position: absolute;
    top: 150px;
    left: 250px;
    width: 20px;
    height: 20px;
    background: #dc3545;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
}

.threat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #dc3545;
    border-radius: 50%;
    animation: threatPulse 1s ease-in-out infinite;
}

@keyframes threatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.threat-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #dc3545;
    font-weight: 700;
    white-space: nowrap;
}

.communication-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.communication-lines line {
    stroke: url(#dashPattern);
    stroke-width: 3;
    stroke-dasharray: 10, 5;
    animation: dashMove 1s linear infinite;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 15; }
}

@keyframes alarmPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* Drone Alarm Indicators */
.drone-alarm {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    border: 2px solid #ff0000;
    z-index: 15;
    animation: alarmPulse 0.5s infinite;
    top: -15px;
    right: -15px;
}

.alarm-icon {
    font-size: 16px;
    color: white;
}

/* Guard Alert Indicators */
.guard-alert {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    border: 2px solid #ff8c00;
    z-index: 15;
    animation: alertPulse 0.8s infinite;
    top: -10px;
    right: -10px;
}

.alert-icon {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.battery-swap {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffc107;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
    z-index: 12;
}

.lightning-icon {
    font-size: 1rem;
    color: white;
    animation: lightningFlash 0.5s ease-in-out infinite;
}

@keyframes lightningFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-display {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-label {
    color: #ccc;
}

.status-value {
    color: #28a745;
    font-weight: 600;
}

.animation-controls {
    padding: 2rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.demo-button {
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.demo-button:active {
    transform: translateY(0);
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.demo-feature i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.demo-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.demo-feature p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-text h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem;
    }
    
    .feature-column {
        background: #667eea;
        color: white;
        font-weight: 600;
    }
    
    .kpi-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* Pilot Application Styles */
.pilot-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.pilot-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pilot-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pilot-application {
    padding: 80px 0;
    background: #f8f9fa;
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
}

.application-header {
    text-align: center;
    margin-bottom: 3rem;
}

.application-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.application-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.pilot-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #667eea;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[type="file"] {
    padding: 8px 15px;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-group h4 {
    margin-bottom: 1rem;
    color: #333;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.pilot-benefits {
    padding: 80px 0;
    background: white;
}

.pilot-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Pilot Application Responsive */
@media (max-width: 768px) {
    .pilot-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pilot-form {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 40px 0;
}

.dashboard-title {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.dashboard-title p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dashboard-content {
    padding: 40px 0;
    background: #f5f6fa;
    min-height: 80vh;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.camera-section {
    grid-column: 1;
    grid-row: 1;
}

.highlights-section {
    grid-column: 2;
    grid-row: 1;
}

.heatmap-section {
    grid-column: 1;
    grid-row: 2;
}

.status-section {
    grid-column: 2;
    grid-row: 2;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e1e5e9;
}

.section-header h3 {
    font-size: 1.3rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h3 i {
    color: #667eea;
}

.demo-notice {
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.control-btn, .filter-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover, .filter-btn:hover {
    background: #e9ecef;
}

.control-btn.active, .filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.simulation-btn {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.simulation-btn:hover {
    background: #218838;
}

.simulation-btn.active {
    background: #dc3545;
    border-color: #dc3545;
}

.simulation-btn.active:hover {
    background: #c82333;
}

.camera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.camera-feed {
    position: relative;
    background: #000;
    border-radius: 10px;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.camera-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.camera-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.camera-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
}

.status-dot.warning {
    background: #ffc107;
}

.camera-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}

.camera-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.ai-highlight {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.ai-highlight.crowd-cheer {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.ai-highlight.movement {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
}

.ai-highlight.vehicle {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.highlights-list {
    max-height: 400px;
    overflow-y: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 4px solid #e9ecef;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.highlight-item.audio {
    border-left-color: #28a745;
}

.highlight-item.movement {
    border-left-color: #ffc107;
}

.highlight-item.vehicle {
    border-left-color: #dc3545;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-item.audio .highlight-icon {
    background: #28a745;
    color: white;
}

.highlight-item.movement .highlight-icon {
    background: #ffc107;
    color: #000;
}

.highlight-item.vehicle .highlight-icon {
    background: #dc3545;
    color: white;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.highlight-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.highlight-time {
    font-size: 0.8rem;
    color: #999;
}

.highlight-severity {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.highlight-severity.low {
    background: #d4edda;
    color: #155724;
}

.highlight-severity.medium {
    background: #fff3cd;
    color: #856404;
}

.highlight-severity.high {
    background: #f8d7da;
    color: #721c24;
}

.heatmap-container {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-map {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.event-areas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.area {
    position: absolute;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

/* Threat level colors */
.area.threat-high {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
}

.area.threat-medium {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.area.threat-low {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

/* Density level colors */
.area.density-high {
    background: rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.area.density-medium {
    background: rgba(108, 117, 125, 0.2);
    border-color: #6c757d;
}

.area.density-low {
    background: rgba(23, 162, 184, 0.2);
    border-color: #17a2b8;
}

/* Risk level colors */
.area.risk-high {
    background: rgba(111, 66, 193, 0.2);
    border-color: #6f42c1;
}

.area.risk-medium {
    background: rgba(253, 126, 20, 0.2);
    border-color: #fd7e14;
}

.area.risk-low {
    background: rgba(32, 201, 151, 0.2);
    border-color: #20c997;
}

.area.main-stage {
    top: 10%;
    left: 20%;
    width: 30%;
    height: 25%;
}

.area.food-court {
    top: 40%;
    left: 60%;
    width: 25%;
    height: 20%;
}

.area.parking-north {
    top: 5%;
    left: 5%;
    width: 15%;
    height: 30%;
}

.area.parking-south {
    top: 65%;
    left: 5%;
    width: 15%;
    height: 30%;
}

.area.entrance {
    top: 35%;
    left: 0%;
    width: 15%;
    height: 20%;
}

/* Extended Perimeter Areas */
.area.forest-north {
    top: 0%;
    left: 20%;
    width: 60%;
    height: 10%;
}

.area.forest-south {
    top: 90%;
    left: 20%;
    width: 60%;
    height: 10%;
}

.area.buildings-east {
    top: 20%;
    left: 85%;
    width: 15%;
    height: 60%;
}

.area.buildings-west {
    top: 20%;
    left: 0%;
    width: 15%;
    height: 60%;
}

.area.road-north {
    top: 10%;
    left: 0%;
    width: 20%;
    height: 5%;
}

.area.road-south {
    top: 85%;
    left: 0%;
    width: 20%;
    height: 5%;
}

.threat-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.threat-indicator.high {
    background: #dc3545;
}

.threat-indicator.medium {
    background: #ffc107;
}

.threat-indicator.low {
    background: #28a745;
}

.risk-indicator {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.risk-indicator.high {
    background: #6f42c1;
}

.risk-indicator.medium {
    background: #fd7e14;
}

.risk-indicator.low {
    background: #20c997;
}

.drone-paths {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.drone-path {
    position: absolute;
    width: 50%;
    height: 50%;
}

.drone-path.path-1 {
    top: 0;
    left: 0;
}

.drone-path.path-2 {
    top: 0;
    right: 0;
}

.drone-path.path-3 {
    bottom: 0;
    left: 0;
}

.drone-path.path-4 {
    bottom: 0;
    right: 0;
}

.path-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.path-line path {
    stroke-width: 1;
    fill: none;
    opacity: 0.8;
}

.drone-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.drone-marker.drone-1 {
    position: absolute;
    animation: dronePatrol1 4s ease-in-out infinite;
}

.drone-marker.drone-2 {
    position: absolute;
    animation: dronePatrol2 5s ease-in-out infinite;
}

.drone-marker.drone-3 {
    position: absolute;
    animation: dronePatrol3 6s ease-in-out infinite;
}

.drone-marker.drone-4 {
    position: absolute;
    animation: dronePatrol4 7s ease-in-out infinite;
}

.heatmap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.heat-zone {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: heatPulse 2s ease-in-out infinite;
}

.heat-zone.high-threat {
    background: radial-gradient(circle, rgba(220, 53, 69, 0.8) 0%, rgba(220, 53, 69, 0.2) 70%, transparent 100%);
}

.heat-zone.medium-threat {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.8) 0%, rgba(255, 193, 7, 0.2) 70%, transparent 100%);
}

.heat-zone.low-threat {
    background: radial-gradient(circle, rgba(40, 167, 69, 0.8) 0%, rgba(40, 167, 69, 0.2) 70%, transparent 100%);
}

.heat-zone.high-density {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.8) 0%, rgba(0, 123, 255, 0.2) 70%, transparent 100%);
}

.heat-zone.medium-density {
    background: radial-gradient(circle, rgba(108, 117, 125, 0.8) 0%, rgba(108, 117, 125, 0.2) 70%, transparent 100%);
}

.heat-zone.low-density {
    background: radial-gradient(circle, rgba(23, 162, 184, 0.8) 0%, rgba(23, 162, 184, 0.2) 70%, transparent 100%);
}

.heatmap-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heatmap-legend h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.high {
    background: #dc3545;
}

.legend-color.medium {
    background: #ffc107;
}

.legend-color.low {
    background: #28a745;
}

/* Crowd density legend colors */
.legend-item:nth-child(1) .legend-color {
    background: #dc3545; /* High threat/density - red */
}

.legend-item:nth-child(2) .legend-color {
    background: #ffc107; /* Medium threat - yellow */
}

.legend-item:nth-child(3) .legend-color {
    background: #28a745; /* Low threat - green */
}

/* Crowd density specific colors */
.crowd-view .legend-item:nth-child(1) .legend-color {
    background: #007bff; /* High density - blue */
}

.crowd-view .legend-item:nth-child(2) .legend-color {
    background: #6c757d; /* Medium density - gray */
}

.crowd-view .legend-item:nth-child(3) .legend-color {
    background: #17a2b8; /* Low density - teal */
}

/* Drone paths specific colors */
.paths-view .legend-item:nth-child(1) .legend-color {
    background: #667eea; /* Drone 1 - blue */
}

.paths-view .legend-item:nth-child(2) .legend-color {
    background: #667eea; /* Drone 2 - blue */
}

.paths-view .legend-item:nth-child(3) .legend-color {
    background: #667eea; /* Drone 3 - blue */
}

/* Risk assessment specific colors */
.risk-view .legend-item:nth-child(1) .legend-color {
    background: #6f42c1; /* High risk - purple */
}

.risk-view .legend-item:nth-child(2) .legend-color {
    background: #fd7e14; /* Medium risk - orange */
}

.risk-view .legend-item:nth-child(3) .legend-color {
    background: #20c997; /* Low risk - teal */
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.status-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
}

.status-info {
    flex: 1;
}

.status-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.status-value {
    font-weight: 600;
    font-size: 1rem;
}

.status-value.online {
    color: #28a745;
}

.status-value.warning {
    color: #ffc107;
}

.status-value.offline {
    color: #dc3545;
}

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

@keyframes droneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes heatPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes dronePatrol1 {
    0% { top: 5%; left: 5%; }
    20% { top: 25%; left: 35%; }
    40% { top: 45%; left: 15%; }
    60% { top: 15%; left: 45%; }
    80% { top: 35%; left: 25%; }
    100% { top: 5%; left: 5%; }
}

@keyframes dronePatrol2 {
    0% { top: 5%; left: 55%; }
    20% { top: 35%; left: 75%; }
    40% { top: 45%; left: 65%; }
    60% { top: 25%; left: 85%; }
    80% { top: 15%; left: 55%; }
    100% { top: 5%; left: 55%; }
}

@keyframes dronePatrol3 {
    0% { top: 55%; left: 5%; }
    20% { top: 75%; left: 25%; }
    40% { top: 65%; left: 45%; }
    60% { top: 85%; left: 15%; }
    80% { top: 55%; left: 35%; }
    100% { top: 55%; left: 5%; }
}

@keyframes dronePatrol4 {
    0% { top: 55%; left: 55%; }
    20% { top: 75%; left: 75%; }
    40% { top: 65%; left: 85%; }
    60% { top: 85%; left: 65%; }
    80% { top: 55%; left: 75%; }
    100% { top: 55%; left: 55%; }
}


/* Dashboard Responsive */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .camera-section {
        grid-column: 1;
        grid-row: 1;
    }
    
    .highlights-section {
        grid-column: 1;
        grid-row: 2;
    }
    
    .heatmap-section {
        grid-column: 1;
        grid-row: 3;
    }
    
    .status-section {
        grid-column: 1;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    .dashboard-title h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .camera-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
