/* COLORS FROM COLOR SCHEME:
   #06141B - Darkest (Main BG)
   #11212D - Dark Blue (Cards)
   #253745 - Mid Blue (Accents)
   #4A5C6A - Slate (Highlight)
   #9BA8AB - Muted (Text)
   #CCD0CF - Light (Active Text)
*/

:root {
    --bg-dark: #06141B;
    --bg-card: #11212D;
    --accent: #253745;
    --highlight: #4A5C6A;
    --text-muted: #9BA8AB;
    --text-light: #CCD0CF;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(6, 20, 27, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.btn-nav {
    background: var(--highlight);
    padding: 8px 18px;
    border-radius: 4px;
    color: white !important;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('Background 2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(6, 20, 27, 1) 0%, rgba(6, 20, 27, 0.4) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('background.png');
    background-size: 500px;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
}

.text-highlight {
    color: var(--text-muted);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-main,
.btn-outline {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-main {
    background: var(--white);
    color: var(--bg-dark);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

/* STATS */
.stats-bar {
    display: flex;
    background: var(--bg-card);
    width: 80%;
    margin: -60px auto 0;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    justify-content: space-around;
}

.stat-item h2 {
    font-size: 2.8rem;
    color: var(--white);
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-card);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* PRICING CARDS */
.pricing-card {
    background: var(--bg-dark);
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--highlight);
    transform: scale(1.05);
}

.price-header i {
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 20px;
}

.price-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: #2ecc71;
    font-size: 0.8rem;
}

.btn-price {
    display: block;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-price.highlighted {
    background: var(--highlight);
}

/* PRODUCT CARD */
.product-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.product-img {
    background: var(--accent);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-info {
    padding: 20px;
}

/* CONTACT FORM */
.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    color: white;
    border-radius: 5px;
    outline: none;
}

.form-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.btn-submit {
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-submit.whatsapp {
    background: #25D366;
}

.btn-submit.email {
    background: var(--highlight);
}

.btn-submit:hover {
    opacity: 0.8;
}

/* FOOTER */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--white);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--accent);
    padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        margin-top: -30px;
        width: 90%;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-btns {
        grid-template-columns: 1fr;
    }
}