﻿/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    /*Navigation 2*/

/* NAVBAR */
.main-header {
    background: #0a1a2a;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

/* NAV MENU */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}


.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}


        .nav-menu a:hover {
            color: #d4af37;
        }

/* GOLD BUTTON IN NAV */
.nav-menu .btn-gold {
    background-color: #d4af37;
    color: #000;
    padding: 0.45rem 0.9rem;
    border-radius: 4px;
    font-weight: 600;
}

    .nav-menu .btn-gold:hover {
        background-color: #b9972f;
    }



/* HAMBURGER (MOBILE) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}


    .hamburger span {
        width: 24px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }


/* MOBILE BEHAVIOR */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 56px;
        right: 0;
        width: 100%;
        background: #0a1a2a;
        display: none;
    }

        .nav-menu ul {
            flex-direction: column;
            padding: 10px 0 15px 0;
            gap: 10px;
        }

        .nav-menu.active {
            display: block;
        }


    .hamburger {
        display: flex;
    }
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
}

    .hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

/* Buttons */
.btn-primary {
    background: #1abc9c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background: #16a085;
    }

.btn-gold {
    background: #f1c40f;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
}

    .btn-gold:hover {
        background: #d4ac0d;
    }

.btn-secondary {
    background: #444;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-secondary:hover {
        background: #222;
    }

/* Sections */
.section {
    padding: 4rem 2rem;
}

.hero-logo,
.about-logo {
    max-width: 220px;
    margin: 1rem auto;
    display: block;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.alt-bg {
    background: #f9f9f9;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    border-left: 4px solid #1abc9c;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #111;
    color: #f1c40f;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

    .pricing-card h3 {
        margin-bottom: 1rem;
    }

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
}

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
    }

    .contact-form button {
        align-self: flex-start;
    }

/* Footers */
.business-header {
    background: #0d1b2a;
    color: #fff;
}

.business-footer {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.army-header {
    background: #000;
    color: #f1c40f;
    /*font-family: 'Orbitron', sans-serif;*/
}

.army-footer {
    background: #000;
    color: #f1c40f;
    text-align: center;
    padding: 1rem;
}

.btn-gold {
    background: #f1c40f;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.pricing-card p {
    margin-bottom: 1rem; /* gives space below each paragraph */
}

.pricing-card a {
    display: inline-block;
    margin-top: 1rem; /* adds space above the button */
}

.pricing-card a {
    margin-top: 1.5rem;
}

.eula-page .eula-text {
    background: #111;
    color: #f1c40f;
    padding: 2rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
}

.eula-page .eula-text {
    background: #f9f9f9;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.privacy-page .privacy-text {
    background: #f9f9f9;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.refund-page .refund-text,
.privacy-page .privacy-text,
.eula-page .eula-text {
    background: #f9f9f9;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
}

    .trust-item img {
        max-width: 100px;
        margin-bottom: 0.5rem;
    }

.guarantee {
    margin-top: 1rem;
    text-align: center;
}

    .guarantee img {
        max-width: 100px;
        display: block;
        margin: 0 auto 0.5rem auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .guarantee img:hover {
            transform: scale(1.05); /* slight zoom */
            box-shadow: 0 0 12px rgba(255, 215, 0, 0.6); /* soft golden glow */
        }

    .guarantee p {
        font-size: 0.9rem;
        color: #555;
        margin: 0;
    }

.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .testimonial.active {
        display: block;
    }

    .testimonial p {
        font-style: italic;
        color: #333;
        margin-bottom: 1rem;
    }

    .testimonial h4 {
        color: #555;
        font-weight: 600;
    }

.hero-logo {
    max-width: 240px;
    margin: 1rem auto;
    display: block;
}

.tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

    .features-list li {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
        position: relative;
    }

        .features-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #d4af37; /* gold accent */
            font-weight: bold;
        }

.register-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
    }

.btn-gold {
    background-color: #d4af37;
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-gold:hover {
        background-color: #b9972f;
    }

.footer-subscribe {
    text-align: center;
    margin-bottom: 2rem;
}

    .footer-subscribe h3 {
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .footer-subscribe p {
        color: #ccc;
        margin-bottom: 1rem;
    }

.footer-subscribe-input {
    width: 260px;
    max-width: 90%;
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.footer-subscribe-btn {
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
}

.footer-copy {
    color: #aaa;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-link-plain {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

@media (max-width: 600px) {
    .footer-subscribe-input {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

.elb-footer {
    background: #0a1a2a; /* deep navy */
    padding: 3rem 1rem;
    text-align: center;
    border-top: 3px solid #d4af37; /* gold accent */
}

.elb-footer-subscribe h3 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elb-footer-subscribe p {
    color: #ccc;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.elb-subscribe-input {
    width: 280px;
    max-width: 90%;
    padding: 0.75rem;
    border: 1px solid #d4af37;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.elb-subscribe-btn {
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    border-radius: 6px;
}

.elb-footer-copy {
    color: #888;
    margin-top: 2rem;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .elb-subscribe-input {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* ============================================
   REGISTER PAGE STYLES
   ============================================ */

/* Container for the register form */
.register-form {
    max-width: 420px; /* Clean, readable width */
    margin: 0 auto; /* Centers the form */
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Even spacing between fields */
}

    /* Each form row */
    .register-form .form-group {
        width: 100%;
    }

    /* Input styling */
    .register-form input[type="text"],
    .register-form input[type="email"],
    .register-form input[type="password"],
    .register-form .form-control {
        width: 100%;
        padding: 0.6rem 0.75rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
        font-size: 1rem;
    }

/* reCAPTCHA alignment */
.recaptcha-row {
    display: flex;
    justify-content: center; /* Centers the widget */
    width: 100%;
    margin-top: 1rem;
}

/* Ensures the Google iframe behaves inside flex layouts */
.g-recaptcha {
    transform-origin: center;
}

/*---------------------------------
    Cookie Consent Banner
----------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c5280;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    max-width: 500px;
    width: 90%;
    font-size: 0.95rem;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cookie-btn {
    background: #ffcc00;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .cookie-btn:hover {
        background: #e6b800;
    }

/*------------------------------------
    FAQ SECTION
 -------------------------------------*/

/* FAQ Page Styles */
.faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1c5280;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #f7f9fc;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}

    .faq-question:hover {
        background: #e9eef5;
    }

    .faq-question.active {
        background: #1c5280;
        color: white;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.3s ease;
}

    .faq-answer p {
        padding: 1rem 0;
        margin: 0;
        color: #333;
    }

.back-link {
    margin: 1rem 0 2rem 0;
}

    .back-link a {
        color: #1c5280;
        font-weight: 600;
        text-decoration: none;
        font-size: 1rem;
    }

        .back-link a:hover {
            color: #ff6600;
        }

/*------------------------------------
    Support Page Styles
-------------------------------------*/
/* Support Page Styles */
.support-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.support-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1c5280;
    margin-bottom: 0.5rem;
}

.support-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .support-card h2 {
        margin-top: 0;
        color: #1c5280;
        font-size: 1.3rem;
    }

    .support-card ul {
        margin-left: 1.2rem;
    }

    .support-card li {
        margin-bottom: 0.5rem;
    }

.back-link {
    margin: 1rem 0 2rem 0;
}

    .back-link a {
        color: #1c5280;
        font-weight: 600;
        text-decoration: none;
        font-size: 1rem;
    }

        .back-link a:hover {
            color: #ff6600;
        }

.support-cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .support-cta a {
        text-decoration: none;
    }

/*------------------------------------
      Loging Page Styles
  -------------------------------------*/
.account-section {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.account-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1c5280;
}

.account-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.account-form .form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.btn-primary {
    background: #1c5280;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}

    .btn-primary:hover {
        background: #174567;
    }

.redownload-link {
    margin-top: 1.5rem;
    text-align: center;
}

    .redownload-link a {
        color: #1c5280;
        font-weight: 600;
    }

.welcome-banner {
    background: #1c5280;
    color: white;
    padding: 8px 15px;
    text-align: right;
    font-weight: 600;
}

.logout-link {
    color: #ffcc00;
    margin-left: 10px;
    text-decoration: none;
}

.welcome-banner {
    background: #1c5280;
    color: white;
    padding: 8px 15px;
    text-align: right;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.logout-link {
    color: #ffcc00;
    margin-left: 10px;
    text-decoration: none;
}

    .logout-link:hover {
        color: #ffd633;
    }

.back-link {
    margin: 1rem 0 2rem 0;
}

    .back-link a {
        color: #1c5280;
        font-weight: 600;
        text-decoration: none;
    }

        .back-link a:hover {
            color: #ff6600;
        }

.error-message {
    background: #ffdddd;
    color: #a30000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #ffb3b3;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 1rem;
    font-weight: 600;
}