:root {
    --bg-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-blue: #00f3ff;
    --accent-green: #00ff00;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 2rem;
}

p,
li {
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

/* Header / Hero */
header {
    text-align: center;
    padding: 3rem 1rem;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--accent-blue);
}

/* Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Glass edge */
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.btn:active {
    transform: scale(0.95);
}

/* Primary Button (Call) - Neon Lime to Emerald Green */
.btn-primary {
    background: linear-gradient(135deg, #00ff00, #008000);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
}

/* Secondary Button (Map) - Cyber Cyan to Electric Blue */
.btn-secondary {
    background: linear-gradient(135deg, #00f3ff, #0066ff);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    color: #fff;
    animation-delay: 0.5s;
}

.btn-secondary:hover {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
    background-color: transparent;
}

/* WhatsApp Button - Bright WhatsApp Green to Deep Teal */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #075E54);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    animation-delay: 1s;
}

.btn-whatsapp:hover {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.8);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.trust-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon-container {
    width: 100%;
    height: 150px;
    background: radial-gradient(circle at center, #2a2a2a 0%, #1a1a1a 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
}

.service-svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent-blue);
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
    transition: all 0.3s ease;
}

.service-card:hover .service-svg {
    transform: scale(1.1);
    stroke: var(--accent-green);
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.6));
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    color: var(--accent-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #000;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-address {
    margin-bottom: 1.5rem;
    font-style: normal;
    color: var(--text-secondary);
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .cta-container {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}