:root {
    --primary: #c9a764;
    /* Gold/Brass from logo style */
    --primary-hover: #b08d4b;
    --dark-bg: #1a1a24;
    /* Dark Slate Blue/Grey */
    --card-bg: #252530;
    --text-white: #ffffff;
    --text-gray: #b0b0bb;
    --accent-red: #d63031;
    /* Subtle red accent from Chevy truck */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(rgba(26, 26, 36, 0.8), rgba(26, 26, 36, 0.9)), url('navbar_bg.png');
    background-size: cover;
    background-position: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(201, 167, 100, 0.3);
    /* Gold accent */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--dark-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
}

.btn-nav:hover {
    background: var(--primary-hover);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Subtle background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(201, 167, 100, 0.2));
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 100%;
    margin-top: 1.5rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

/* Services */
.services {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('packages_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.price-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    width: 350px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.price-card.popular {
    background: linear-gradient(145deg, #2a2a36, #20202b);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(201, 167, 100, 0.1);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Features Grid */
.features-grid {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--dark-bg);
    text-align: center;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-gray);
}

/* Contact */
.contact {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(to top, #101015, #1a1a24);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    background: var(--card-bg);
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

.neighbor-discount {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: #0d0d10;
    color: #4a4a55;
    font-size: 0.8rem;
}

/* Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--card-bg);
        width: 100%;
        flex-direction: column;
        padding: 2rem;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .price-card.popular {
        transform: none;
        box-shadow: none;
        margin-top: 1rem;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }
}