/* ===== CSS Variables ===== */
:root {
    --gray-header: #b8b8b8;
    --black: #000000;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --gray-text: #999999;
    --gray-light: #cccccc;
    --gray-card: rgba(128, 128, 128, 0.75);
    --gray-form: #c0c0c0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}
a:hover { opacity: 0.8; }

img { max-width: 100%; display: block; }

/* ===== Header ===== */
.site-header {
    background: var(--gray-header);
    text-align: center;
    padding: 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    padding: 15px 0 10px;
}

.ums-logo {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 6px;
    line-height: 1;
    text-shadow:
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        -3px 0 0 var(--white),
        3px 0 0 var(--white),
        0 -3px 0 var(--white),
        0 3px 0 var(--white);
}

.site-nav {
    background: var(--gray-header);
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--black);
    opacity: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 30px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
}

/* ===== Hero ===== */
.hero {
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: center;
}

/* ===== Transform Section ===== */
.transform-section {
    background: var(--black);
    text-align: center;
    padding: 60px 20px 50px;
}

.transform-heading {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.transform-welcome {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.transform-welcome strong {
    color: var(--white);
    font-weight: 700;
}

.transform-subtitle {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.transform-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.scroll-arrow {
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== Service Cards ===== */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.service-card:hover .card-bg {
    filter: grayscale(60%);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.card-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-content {
    position: relative;
    z-index: 2;
    background: var(--gray-card);
    padding: 25px 20px;
    text-align: center;
    max-width: 320px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--white);
}

.card-content p {
    font-size: 0.88rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gray-header);
    text-align: center;
    padding: 50px 20px;
}

.ums-logo-large {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow:
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        -3px 0 0 var(--white),
        3px 0 0 var(--white),
        0 -3px 0 var(--white),
        0 3px 0 var(--white);
}

.btn-service-list {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 14px 40px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service-list:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    background: var(--black);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-form-wrapper {
    background: var(--gray-header);
    padding: 50px 60px;
    max-width: 700px;
    width: 100%;
}

.contact-form-wrapper h2,
.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #666;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 12px 35px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== Map Section ===== */
.map-section {
    width: 100%;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e5e3df;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

.map-overlay-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 15px 25px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 10;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark-bg);
    text-align: center;
    padding: 40px 20px;
}

.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    color: var(--white);
    display: inline-block;
    margin: 0 8px;
}

.footer-info {
    margin-bottom: 8px;
}

.footer-info a {
    color: var(--gray-light);
    font-size: 0.9rem;
    text-decoration: underline;
}

.footer-info a:hover {
    color: var(--white);
}

/* =================================================================
   SERVICE PAGES (Detailing, Coating, Tint)
   ================================================================= */

/* Page Banner */
.page-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.6);
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 3px;
}

/* Service List */
.service-list-section {
    background: var(--black);
    padding: 50px 20px 30px;
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.service-item {
    border: 1px solid #444;
    margin-bottom: 20px;
    padding: 25px 30px;
    background: rgba(30, 30, 30, 0.9);
}

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    flex: 1;
    min-width: 200px;
}

.service-prices {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.price-col {
    text-align: center;
    min-width: 100px;
}

.price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-text);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.service-item .service-desc {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.service-item .service-note {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 4px;
}

/* Tint page dual-column headers */
.tint-header-row {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 0 30px;
    margin-bottom: 0;
}

.tint-col-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    min-width: 100px;
}

.tint-col-header small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-text);
}

/* Price disclaimer notes */
.price-notes {
    max-width: 900px;
    margin: 20px auto 0;
    padding: 0 30px 40px;
}

.price-notes p {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 4px;
}

/* ===== Contact Page ===== */
.contact-page-section {
    padding: 60px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .ums-logo {
        font-size: 4rem;
    }

    .transform-heading {
        font-size: 2.8rem;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 400px;
    }

    .ums-logo-large {
        font-size: 4rem;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 50vh;
    }

    .nav-list {
        gap: 0;
    }

    .service-item-header {
        flex-direction: column;
    }

    .service-prices {
        width: 100%;
        justify-content: space-between;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ums-logo {
        font-size: 3rem;
    }

    .transform-heading {
        font-size: 2rem;
    }

    .card-content {
        max-width: 90%;
    }
}
