/* Variables */
:root {
    --primary-color: #0d8cf5; /* Vibrant Blue */
    --accent-color: #ff6a00; /* Vibrant Orange */
    --text-main: #ffffff;
    --text-muted: #b3c5d7;
    --bg-dark: #07101f;
    --bg-card: #112036;
    --gradient-blue: linear-gradient(135deg, #0d8cf5 0%, #004ba0 100%);
    --gradient-orange: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(11, 26, 48, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 140, 245, 0.4);
}

.btn-accent {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Pulsa Animation */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 140, 245, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(13, 140, 245, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 140, 245, 0); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 16, 31, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 16, 31, 0.9) 0%, rgba(7, 16, 31, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(13, 140, 245, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge i {
    color: var(--accent-color);
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services / Equipment */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.service-info {
    padding: 30px;
    position: relative;
    flex-grow: 1;
}

.icon-wrap {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(13, 140, 245, 0.4);
    border: 4px solid var(--bg-card);
}

.service-card:nth-child(2) .icon-wrap {
    background: var(--gradient-orange);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.4);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.service-info p {
    color: var(--text-muted);
}

/* Banner CTA */
.banner {
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(0,0,0,0.1)" points="0,100 100,0 100,100"/></svg>') no-repeat;
    background-size: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.banner .btn {
    background: white;
    color: #004ba0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.banner .btn:hover {
    background: var(--bg-dark);
    color: white;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(255, 106, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.contact-info strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.contact-info span {
    color: var(--text-muted);
}

/* Radar Map Animation */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.radar {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 140, 245, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(13, 140, 245, 0.3);
    animation: radar-pulse 3s infinite;
}

.radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(13, 140, 245, 0.5) 100%);
    border-radius: 50%;
    transform-origin: 0 0;
    animation: radar-sweep 2s linear infinite;
}

@keyframes radar-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes radar-sweep {
    to { transform: rotate(360deg) translate(-50%, -50%); }
}

.map-pin {
    font-size: 3rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.map-placeholder h3 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #040914;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    background: #02050a;
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 16, 31, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .hero-badges { flex-direction: column; gap: 10px; }
}
