/* ========== Eagle King Motors - Styles ========== */
/* Industrial garage palette: Dark Charcoal, Red, White, Steel Grey */

:root {
    --dark: #0d0d0d;
    --dark-light: #1a1a1a;
    --dark-card: #141414;
    --red: #dc2626;
    --red-glow: rgba(220,38,38,0.4);
    --white: #ffffff;
    --grey: #a1a1aa;
    --grey-dark: #52525b;
    --steel: #27272a;
    --font-heading: 'Orbitron', 'Arial Black', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: #e4e4e7;
    background: var(--dark);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Top Bar ========== */
.top-bar {
    background: var(--dark-light);
    border-bottom: 1px solid var(--steel);
    padding: 10px 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-left {
    display: flex;
    gap: 24px;
    color: var(--grey);
}

.top-right a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-right a:hover {
    color: #ef4444;
}

/* ========== Navbar ========== */
.navbar {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--steel);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px var(--red-glow));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-bottom {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--red);
    letter-spacing: 5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.btn-nav:hover {
    background: #b91c1c !important;
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-nav::after { display: none !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.4) 60%, rgba(220,38,38,0.15) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%, rgba(220,38,38,0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 700px;
    padding: 120px 24px 80px;
}

.hero-tag {
    display: inline-block;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 .accent {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-content > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #b91c1c;
    box-shadow: 0 0 30px var(--red-glow);
    transform: translateY(-2px);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid var(--steel);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== Section Labels ========== */
.section-label {
    display: inline-block;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== About ========== */
.about {
    padding: 100px 0;
    background: var(--dark-light);
    border-top: 1px solid var(--steel);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.image-frame {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--red);
    border-radius: 8px;
    opacity: 0.3;
    pointer-events: none;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.af-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.af-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--red);
}

.af-body h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.af-body p {
    font-size: 0.9rem;
    color: var(--grey);
    margin: 0;
}

/* ========== Services ========== */
.services {
    padding: 100px 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--steel);
    padding: 32px 24px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px var(--red-glow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--grey-dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.5;
}

/* ========== Team / Reviews ========== */
.team {
    padding: 100px 0;
    background: var(--dark-light);
    border-top: 1px solid var(--steel);
}

.team-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team-text > p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 32px;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    background: var(--dark-card);
    border-left: 3px solid var(--red);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review p {
    font-size: 0.95rem;
    color: #d4d4d8;
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.review cite {
    font-size: 0.85rem;
    color: var(--grey);
    font-style: normal;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--steel);
}

/* ========== Contact ========== */
.contact {
    padding: 100px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--dark-card);
    border: 1px solid var(--steel);
    padding: 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--red);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--red);
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-card p, .info-card a {
    font-size: 0.95rem;
    color: var(--grey);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--red);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--steel);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--dark-light);
    border: 1px solid var(--steel);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: var(--grey-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ========== Map Section ========== */
.map-section {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--steel) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23dc2626" opacity="0.3"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.map-overlay {
    position: relative;
    z-index: 2;
}

.map-card {
    background: var(--dark-card);
    border: 1px solid var(--red);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.map-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.map-card p {
    color: var(--grey);
    margin-bottom: 24px;
    font-size: 1rem;
}

/* ========== Footer ========== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--steel);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fl-icon {
    font-size: 2rem;
}

.fl-top {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 3px;
}

.fl-bottom {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--red);
    letter-spacing: 4px;
}

.footer-brand p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--grey);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red);
}

.footer-contact p {
    color: var(--grey);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--grey);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--steel);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--grey-dark);
    font-size: 0.8rem;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar .container { justify-content: center; }
    .top-left { gap: 12px; }
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid var(--steel);
    }
    .nav-links.active { transform: translateY(0); }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content { padding-top: 80px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .section-header h2 { font-size: 1.6rem; }
    .about-text h2, .team-text h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.8rem; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.5rem; }
}
