/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
}

.section {
    padding: 60px 20px;
}

/* PARALLAX */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: url('assets/K2.jpg') center/cover no-repeat fixed;
    border-bottom: 4px solid red;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.hero * {
    position: relative;
    z-index: 1;
}

.logo {
    width: 220px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 10px 0;
    letter-spacing: 1px;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.9);
}

.tagline {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.9);
}

/* NAV */
nav {
    background: #222;
    padding: 12px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 800;
    transition: color .2s;
}

nav a:hover {
    color: red;
}

/* BUTTONS */
.call-btn {
    display: inline-block;
    background: red;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
    margin-top: 10px;
    transition: background .2s, transform .15s;
}

.call-btn:hover {
    background: #cc0000;
    transform: scale(1.03);
}

.call-btn.wide {
    display: block;
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

/* SERVICES */
.services-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-card {
    background: #222;
    padding: 20px;
    border-left: 4px solid red;
    text-align: center;
    font-weight: 900;
    opacity: 0;
    animation: fadeSoft 0.8s forwards;
}

/* PRICING (Updated for single trailer model) */
.pricing-grid.single {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.price-card {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    animation: fadeSoft 0.8s forwards;
    max-width: 350px;
}

.price-card.featured {
    border: 3px solid red;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: red;
    margin: 10px 0;
}

.pricing-notes {
    margin-top: 30px;
    background: #111;
    border: 2px solid red;
    border-radius: 8px;
    padding: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-notes strong {
    color: red;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid red;
    transition: transform .25s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* CONTACT */
.contact-box {
    background: #222;
    padding: 20px;
    border-radius: 6px;
    width: 300px;
    margin: 20px auto;
    text-align: center;
    opacity: 0;
    animation: fadeSoft 0.8s forwards;
}

/* MAP */
.map-box {
    margin: 30px auto;
    max-width: 600px;
    border: 3px solid red;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.map-caption {
    text-align: center;
    padding: 10px;
    font-weight: 800;
    background: #111;
    border-top: 3px solid red;
}

/* FOOTER */
footer {
    background: #000;
    padding: 40px 20px;
    border-top: 4px solid red;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: auto;
}

.footer-year {
    font-size: 1rem;
    font-weight: 800;
    opacity: .9;
}

.footer-social a {
    color: red;
    text-decoration: none;
    font-weight: 900;
    margin: 10px;
}

.footer-built {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 900;
}

.footer-built a {
    color: red;
    text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeSoft {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-soft {
    animation: fadeSoft 1s forwards;
}
