/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --laser-cyan: #00f0ff;
    --laser-orange: #ff6600;
    --card-bg: #141414;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Utilities */
.text-cyan { color: var(--laser-cyan); }
.text-orange { color: var(--laser-orange); }

/* ==========================================================================
   2. BUTTONS
   ========================================================================== */
.btn-cyan, .btn-orange {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cyan {
    background: transparent;
    color: var(--laser-cyan);
    border: 2px solid var(--laser-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-cyan:hover {
    background: var(--laser-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.btn-orange {
    background: transparent;
    color: var(--laser-orange);
    border: 2px solid var(--laser-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.btn-orange:hover {
    background: var(--laser-orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

/* ==========================================================================
   3. HEADER / NAVIGATION
   ========================================================================== */
header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--laser-orange);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--laser-cyan);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 150px 0 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.08), transparent 40%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons * {
    margin-right: 15px;
    margin-bottom: 15px;
}

/* ==========================================================================
   5. PACKAGES SECTION (GRID)
   ========================================================================== */
.packages-section {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.border-cyan { border: 1px solid #222; border-top: 4px solid var(--laser-cyan); }
.border-orange { border: 1px solid #222; border-top: 4px solid var(--laser-orange); }

.border-cyan:hover { box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15); }
.border-orange:hover { box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15); }

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card ul {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.card ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card ul li::before {
    content: "⚡ ";
    color: var(--laser-cyan);
}

.card.featured ul li::before {
    content: "⚡ ";
    color: var(--laser-orange);
}

.card .btn-cyan, .card .btn-orange {
    width: 100%;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--laser-orange);
    color: #000;
    padding: 4px 15px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* ==========================================================================
   6. CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.msg-box {
    max-width: 650px;
    text-align: center;
}

.msg-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.msg-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--laser-cyan);
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
footer {
    padding: 40px 0;
    border-top: 1px solid #111;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .contact-form {
        padding: 25px;
    }
}