@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --neon-orange: #ff8c42;
    --dark-bg: #0a0e1a;
    --dark-secondary: #151b2e;
    --dark-tertiary: #1f2937;
    --light-text: #e5e7eb;
    --accent-blue: #3b82f6;
    --carbon-gray: #2d3748;
    --metal-silver: #9ca3af;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 0.8rem; font-size: 0.9rem; }

a {
    color: var(--neon-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 8px var(--neon-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--neon-orange));
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
}

.btn-outline:hover {
    background: var(--neon-orange);
    color: var(--dark-bg);
}

header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    letter-spacing: 1px;
    z-index: 1001;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--neon-orange);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--neon-orange);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
    color: var(--neon-orange);
    background: rgba(255, 107, 53, 0.1);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-orange);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, var(--primary-orange) 48%, var(--primary-orange) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--accent-blue) 48%, var(--accent-blue) 52%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--neon-orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--metal-silver);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--dark-tertiary);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-orange);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
    background: var(--dark-secondary);
    border: 1px solid var(--carbon-gray);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    color: var(--neon-orange);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.card p {
    color: var(--metal-silver);
    font-size: 0.85rem;
}

.card i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-orange);
    margin: 1rem 0;
    font-family: 'Orbitron', sans-serif;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.85rem;
}

.features-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    font-weight: bold;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--carbon-gray);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--neon-orange);
    font-size: 0.85rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    background: var(--dark-bg);
    border: 1px solid var(--carbon-gray);
    border-radius: 4px;
    color: var(--light-text);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--metal-silver);
    cursor: pointer;
}

.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--carbon-gray);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.contact-info {
    background: var(--dark-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--neon-orange);
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-info i {
    color: var(--primary-orange);
    font-size: 1rem;
}

footer {
    background: var(--dark-secondary);
    border-top: 2px solid var(--primary-orange);
    padding: 1.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--metal-silver);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-orange);
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--carbon-gray);
    color: var(--metal-silver);
    font-size: 0.75rem;
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--dark-secondary);
    border-top: 3px solid var(--neon-orange);
    padding: 1.2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.privacy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--neon-orange);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.privacy-close:hover {
    color: var(--primary-orange);
    transform: scale(1.2);
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-content p {
    margin: 0;
    font-size: 0.8rem;
    flex: 1;
    min-width: 250px;
}

.privacy-buttons {
    display: flex;
    gap: 0.8rem;
}

.privacy-buttons .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.error-container,
.thankyou-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    min-height: 100vh;
}

.error-container h1,
.thankyou-container h1 {
    font-size: 4rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.error-container p,
.thankyou-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.policy-content {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--neon-orange);
}

.policy-content h2 {
    color: var(--neon-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.policy-content h3 {
    color: var(--light-text);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--metal-silver);
}

.policy-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--metal-silver);
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.testimonial {
    background: var(--dark-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--neon-orange);
    margin-bottom: 1.5rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.testimonial-info h4 {
    color: var(--neon-orange);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--metal-silver);
    margin: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: auto;
        max-height: 0;
        background: rgba(10, 14, 26, 0.98);
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--primary-orange);
        overflow: hidden;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--carbon-gray);
    }

    nav li:last-child a {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .section {
        padding: 2rem 0;
    }

    .contact-form,
    .policy-content {
        padding: 1.2rem;
    }

    .error-container h1,
    .thankyou-container h1 {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    nav {
        width: 220px;
    }
}
