.banner {
    position: relative;
    width: 100%;
    height: calc(50vh - 72px);
    margin-top: 72px;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: -0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

#background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.banner .content h1 {
    font-size: 64px;
    text-align: center;
    margin: 0;
}

.banner .content p {
    font-size: 1.1rem;
    max-width: 450px;
    margin: 10px auto 0;
    color: #ddd;
    line-height: 1.5;
}

/* General Section Styling */
section {
    padding: 40px 20px;
    text-align: center;
}

/* Section Background Colors */
.season-pass { background-color: #1e1e1e; }
.service-logs { background-color: #252525; }
.contact { background-color: #1e1e1e; }

/* Inner Wrappers */
.choose-us-reasons,
.services-list,
.certifications-list,
.testimonials-list,
.service-logs .table-wrapper,
.contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact {
    flex-direction: column;
}

/* Box Styling */
.reason,
.service,
.certification,
.testimonial {
    max-width: 300px;
    background-color: #2c2c2c;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

/* Headings & Text */
h2 { 
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 0.7;
}
.contact h2 {
    margin: 0;
    padding: 0;
}

.service {
    position: relative;
    overflow: hidden;
    transition: transform 0.9s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 170, 255, 0.4);
}

/* Shine overlay */
.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

/* Trigger shine only on hover */
.service:hover::before {
    animation: shine 0.75s forwards;
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.service h3 {
    font-size: 1.5rem;
    text-align: left;
    color: #00aaff;
}

.service p,
.contact p {
    font-size: 1rem;
    color: #bbb;
}

.service ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.service ul:first-of-type {
    margin-bottom: 20px;
}

.service li {
    color: #fff;
    text-align: left;
    margin: 8px 0;
    position: relative;
    padding-left: 1.2em; /* space for custom bullet */
}

.service li::before {
    content: "•"; /* or use your own symbol */
    color: #fff; /* match your accent */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    line-height: 1;
}

.driveway-options {
    margin-top: 30px;
    text-align: center;
}

.driveway-options h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.option-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.purchase-button,
.driveway-button {
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
}

.purchase-button {
    margin-top: 10px;
}

/* Adjust the table wrapper for responsiveness */
.service-logs {
    overflow-x: hidden;
    background-color: #252525; /* dark background already set */
    padding: 40px 20px;
}

.table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Table styling */
.service-logs table {
    width: 100%;
    border-collapse: collapse;
    min-width: 300px;
    background-color: #1e1e1e;
    color: #eee;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

/* Header row */
.service-logs th {
    background-color: #2c2c2c;
    color: #00aaff;
    text-align: left;
    padding: 0.75em 1em;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px solid #00aaff;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* Data rows */
.service-logs td {
    padding: 0.75em 1em;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
    text-align: left;
}

/* Optional: striped rows for better readability */
.service-logs tbody tr:nth-child(odd) {
    background-color: #222;
}

.service-logs tbody tr:hover {
    background-color: #2a2a2a;
}

/* contact */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00aaff; /* Ice blue */
    border: 2px solid #00aaff;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #00aaff;
    color: #1e1e1e; /* Dark background */
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.5);
    transform: scaleX(1.03);
}

@media (max-width: 480px) {
    .option-buttons {
        gap: 8px;
    }

    .driveway-button {
        font-size: 0.95rem;
        padding: 6px 14px;
    }
}