/* Technology Page Styles - PEG Security */

/* ========================================
   VARIABLES & ANIMATIONS
========================================== */

:root {
    --gold: #D0B96D;
    --gold-light: #e6c980;
    --dark: #292B2B;
    --dark-light: #3a3c3c;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey: #666666;
    --light-grey: #999999;
    --tech-blue: #4ECDC4;
    --tech-green: #2ECC71;
    --tech-orange: #F39C12;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-glow: 0 0 40px rgba(208, 185, 109, 0.3);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-tech {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(78, 205, 196, 0.6);
        transform: scale(1.05);
    }
}

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

/* Page Loading States */
body {
    opacity: 1;
    animation: fadeInUp 1s ease-out forwards;
}

/* ========================================
   TECHNOLOGY HERO SECTION
========================================== */

.tech-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1c1c 100%);
    overflow: hidden;
    padding: 100px 0 80px 0;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(78, 205, 196, 0.06) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(78, 205, 196, 0.1);
    color: var(--tech-blue);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    animation: pulse-tech 3s ease-in-out infinite;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--tech-blue);
    border-radius: 50%;
    animation: pulse-tech 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 30px;
    line-height: 1.1;
}

.text-gold {
    color: var(--gold);
    position: relative;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: expandWidth 2s ease-out 1.5s forwards;
}

@keyframes expandWidth {
    to { width: 100%; }
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 0 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--tech-blue);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--tech-blue);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--gold);
    transition: var(--transition-smooth);
}

.hero-visual:hover .hero-image {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.tech-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(78, 205, 196, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badge-text {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.badge-status {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ========================================
   COMMAND CENTRE SECTION
========================================== */

.command-centre {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: var(--tech-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.command-feature {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.command-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(41, 43, 43, 0.15);
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    position: relative;
    transition: var(--transition-bounce);
}

.feature-icon.monitoring {
    background: linear-gradient(135deg, var(--tech-blue), #45B7B8);
}

.feature-icon.communication {
    background: linear-gradient(135deg, var(--tech-green), #27AE60);
}

.feature-icon.analytics {
    background: linear-gradient(135deg, var(--tech-orange), #E67E22);
}

.command-feature:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
}

.command-feature h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 15px;
}

.command-feature p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--grey);
}

.feature-list i {
    color: var(--tech-green);
    font-size: 14px;
    flex-shrink: 0;
}

/* ========================================
   SURVEILLANCE SYSTEMS SECTION
========================================== */

.surveillance-systems {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 120px 0;
}

.systems-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
}

.lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.systems-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.system-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(41, 43, 43, 0.06);
    border-left: 4px solid var(--tech-blue);
    transition: var(--transition-smooth);
}

.system-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.1);
    border-left-color: var(--gold);
}

.system-item i {
    color: var(--tech-blue);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.system-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px;
}

.system-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

.systems-visual {
    position: relative;
}

.camera-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 43, 43, 0.15);
}

.systems-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.camera-specs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.spec-item {
    text-align: center;
}

.spec-label {
    display: block;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    display: block;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ========================================
   VEHICLE TECHNOLOGY SECTION
========================================== */

.vehicle-technology {
    background: var(--dark);
    padding: 120px 0;
    position: relative;
    color: var(--white);
}

.vehicle-technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(208, 185, 109, 0.08) 2px, transparent 2px);
    background-size: 250px 250px, 350px 350px;
    animation: float 25s ease-in-out infinite;
    z-index: 1;
}

.vehicle-technology .section-tag {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
}

.vehicle-technology .section-title {
    color: var(--white);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.8s ease;
}

.vehicle-card:hover::before {
    left: 100%;
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(78, 205, 196, 0.5);
    background: rgba(78, 205, 196, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.4);
    transition: var(--transition-bounce);
}

.vehicle-card:hover .card-icon {
    transform: scale(1.15) rotate(360deg);
}

.vehicle-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 15px;
}

.vehicle-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SECURITY INFRASTRUCTURE SECTION
========================================== */

.security-infrastructure {
    background: var(--white);
    padding: 120px 0;
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.access-control-demo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 43, 43, 0.15);
}

.infrastructure-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.access-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(41, 43, 43, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.access-panel {
    background: rgba(78, 205, 196, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    color: var(--dark);
    width: 100%;
    max-width: 280px;
}

.panel-header {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tech-green);
    animation: pulse-tech 2s ease-in-out infinite;
}

.panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.panel-stat {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.panel-stat span:first-child {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 2px;
}

.panel-stat span:last-child {
    font-size: 1.1rem;
    font-weight: 700;
}

.infrastructure-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.infra-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 15px;
    border-left: 4px solid var(--tech-blue);
    transition: var(--transition-smooth);
}

.infra-feature:hover {
    transform: translateX(10px);
    background: rgba(78, 205, 196, 0.05);
    border-left-color: var(--gold);
}

.infra-feature i {
    color: var(--tech-blue);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.infra-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px;
}

.infra-feature p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   DATA ANALYTICS SECTION
========================================== */

.data-analytics {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 120px 0;
}

.analytics-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dashboard-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1c1c 100%);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.card-status {
    background: rgba(78, 205, 196, 0.2);
    color: var(--tech-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metrics-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--tech-blue);
}

.metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
}

.metric-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey);
    margin-left: 15px;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.up {
    color: var(--tech-green);
}

.metric-trend.down {
    color: var(--tech-orange);
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(41, 43, 43, 0.06);
    border-left: 4px solid var(--tech-blue);
    transition: var(--transition-smooth);
}

.analytics-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.1);
    border-left-color: var(--gold);
}

.analytics-item i {
    color: var(--tech-blue);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.analytics-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.analytics-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   TECHNOLOGY CTA SECTION
========================================== */

.tech-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1c1c 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(208, 185, 109, 0.08) 2px, transparent 2px);
    background-size: 200px 200px, 300px 300px;
    animation: float 30s ease-in-out infinite;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.9;
    margin: 0 0 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(208, 185, 109, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.tech-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.tech-stat {
    text-align: center;
}

.tech-stat .stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}

.tech-stat .stat-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVE DESIGN
========================================== */

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-layout {
        grid-template-columns: 1fr 380px;
        gap: 60px;
        padding: 0 40px;
    }
    
    .systems-content,
    .infrastructure-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .analytics-dashboard {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .command-grid,
    .vehicle-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .tech-hero {
        min-height: calc(100vh - 70px);
        padding: 40px 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .command-centre,
    .surveillance-systems,
    .vehicle-technology,
    .security-infrastructure,
    .data-analytics {
        padding: 80px 0;
    }
    
    .command-grid,
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .tech-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .tech-hero {
        min-height: calc(100vh - 60px);
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .command-feature,
    .vehicle-card,
    .analytics-item {
        padding: 25px 20px;
    }
    
    .tech-stat .stat-number {
        font-size: 2rem;
    }
    
    .hero-image,
    .systems-image,
    .infrastructure-image {
        height: 250px;
    }
}