/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0c10;
    color: #f5f5f5;
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 12, 16, 0.98);
    border-bottom: 1px solid #d4af37;
    z-index: 100;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 16px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.1em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #d4af37;
}

/* ===== TWITCH BADGE ===== */
.twitch-badge {
    position: fixed;
    top: 75px;
    right: 20px;
    background-color: #1f2833;
    border: 1px solid #d4af37;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    z-index: 50;
    cursor: pointer;
    transition: all 0.2s;
}

.twitch-badge:hover {
    background-color: #d4af37;
    color: #0b0c10;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-bottom: 60px;
}

.estimator-card {
    background-color: #1f2833;
    border: 1px solid #d4af37;
    border-top: 4px solid #c5a059;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.estimator-card h1 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.subtitle {
    color: #d4af37 !important;
    font-size: 15px;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.estimator-card h2 {
    color: #ffffff;
    font-size: 18px;
    margin: 25px 0 20px;
    text-align: left;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 8px;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0b0c10;
    border: 1px solid #d4af37;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c5a059;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* ===== PRICE BOX ===== */
.price-box {
    background-color: #0b0c10;
    border: 1px solid #d4af37;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    margin: 25px 0;
}

.price-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 8px;
}

#total-price {
    color: #ffffff;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

/* ===== BUTTONS ===== */
button {
    background-color: #c5a059;
    color: #0b0c10;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
    transition: background-color 0.2s;
}

button:hover {
    background-color: #dcb873;
}

button:active {
    transform: scale(0.99);
}

#form-message {
    margin-top: 15px;
    color: #d4af37;
    font-weight: 700;
    font-size: 13px;
}

/* ===== DIVIDER ===== */
.divider {
    border: 0;
    border-top: 1px solid #d4af37;
    margin: 25px 0;
    opacity: 0.3;
}

/* ===== SERVICES SECTION ===== */
.services {
    margin: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #1f2833;
    border: 1px solid #d4af37;
    border-top: 4px solid #c5a059;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.service-card h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 12px;
}

.service-card p {
    color: #f5f5f5;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-card .price {
    color: #d4af37 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 15px !important;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: #c5a059;
    font-size: 12px;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0b0c10;
    border-top: 2px solid #d4af37;
    padding: 50px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-section p {
    color: #f5f5f5;
    font-size: 13px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #c5a059;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    color: #c5a059;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 12px;
        font-size: 11px;
    }

    .twitch-badge {
        top: 70px;
        right: 10px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .estimator-card {
        padding: 25px;
    }

    .estimator-card h1 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 14px;
    }

    .nav-links {
        gap: 8px;
        font-size: 10px;
    }

    .main-content {
        padding: 15px;
    }

    .estimator-card {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    #total-price {
        font-size: 28px;
    }
}
