:root {
    --primary: #007BFF;
    /* Bright Professional Blue */
    --primary-dark: #0056b3;
    --dark: #121212;
    --dark-light: #1E1E1E;
    --text-light: #E0E0E0;
    --text-grey: #B0B0B0;
    --white: #FFFFFF;
    --accent: #00C9FF;
    /* Electric Blue Highlights */

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s ease;
    --container: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-light {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-light:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark-light);
    color: var(--white);
    border: 1px solid #333;
}

.btn-dark:hover {
    border-color: var(--primary);
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.accent-text {
    color: var(--primary);
}



.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 4px;
    color: white !important;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/hero.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.7) 60%, rgba(18, 18, 18, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

/* Intro Bar */
.intro-bar {
    background: var(--primary);
    padding: 30px 0;
}

.intro-flex {
    display: flex;
    justify-content: space-between;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.intro-item i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.intro-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.intro-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* About */
.about-section {
    padding: 100px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.check-list i {
    color: var(--accent);
}

.about-stats {
    display: grid;
    gap: 30px;
}

.stat-card {
    background: var(--dark-light);
    padding: 30px;
    border-left: 3px solid var(--primary);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Services */
.services-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: var(--dark-light);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    background: #252525;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary);
}

/* Locations */
.locations-section {
    padding: 120px 0;
    position: relative;
    background: url('../images/hero.png') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-list {
    margin: 40px auto 60px;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-list span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
}

.drop-off-box {
    background: var(--white);
    color: var(--dark);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 4px;
}

.drop-off-box h3 {
    color: var(--dark);
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    text-align: left;
}

.address-item strong {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.appointment-note {
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 0;
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
}

.cta-section h2 {
    margin-bottom: 10px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Premium Footer */
footer {
    padding: 80px 0 40px;
    background: #080808;
    border-top: 5px solid var(--primary);
    color: #E2E8F0;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.location-pill {
    background: rgba(255, 102, 0, 0.15);
    color: #FF6600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 102, 0, 0.3);
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-about {
    color: #A0AEC0;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
    color: #E2E8F0;
    line-height: 1.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0AEC0;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #A0AEC0;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}

.footer-hours-item:last-child {
    border-bottom: none;
}

.footer-hours-item span:last-child {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    color: #718096;
    font-size: 0.85rem;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: #718096;
    margin: 0 10px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 3rem;
    }

    .intro-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .intro-item {
        flex-direction: column;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}