/* ====================================================
   FAINTSKY MOBIL – MONOCHROME SOPHISTICATED DESIGN CSS
   ==================================================== */

/* 1. NORMALIZE + RESET (for robust cross-browser base) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
footer p {
    color: white;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    min-height: 100vh;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background: #fff;
    color: #181a1d;
    line-height: 1.666;
    letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
img, picture {
    max-width: 100%;
    display: block;
    height: auto;
}
a {
    color: #181a1d;
    text-decoration: none;
    transition: color 0.2s;
    outline: none;
}
a:focus {
    outline: 2px solid #204060;
    outline-offset: 2px;
}

/* Hide scrollbars for touch menu overlays on mobile */
.mobile-menu, .cookie-modal {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* 2. BRAND & MONOCHROME SOPHISTICATED BASE COLORS */
:root {
    --primary: #181a1d; /* deepest black/grey for drama */
    --primary-light: #232428;
    --secondary: #ededed;
    --accent: #F5BA3A;
    --mid-gray: #909090;
    --light-gray: #f7f7f8;
    --border-light: #e3e6ea;
    --border-dark: #40444d;
    --white: #fff;
    --shadow-s: 0 2px 8px rgba(24,26,29,0.07);
    --shadow-m: 0 8px 32px rgba(24,26,29,0.14);
}

body,
.section {
    background: var(--white);
    color: var(--primary);
}

/* 3. TYPOGRAPHY HIERARCHY - ELEGANT, SCALED, CONTRASTY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    line-height: 1.1;
}
h1 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}
h2 {
    font-size: 2.0rem;
    margin-bottom: 24px;
    letter-spacing: -0.25px;
}
h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}
h4 {
    font-size: 1.125rem;
}
p,
ul, ol, li, blockquote {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-bottom: 1.2em;
    color: var(--primary);
}
.subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-light);
    margin-bottom: 32px;
}
strong {
    font-weight: 700;
}
blockquote {
    border-left: 4px solid var(--mid-gray);
    padding-left: 20px;
    color: var(--primary-light);
    font-size: 1.2rem;
    font-style: italic;
    margin: 18px 0 24px 0;
}
cite {
    display: block;
    margin-top: 10px;
    color: var(--mid-gray);
    font-size: 0.95em;
}

/* 4. FLEXBOX LAYOUTS & SPACING PATTERNS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-s);
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-container,
.card-grid,
.service-grid,
.service-cards-detailed,
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.card,
.service-card,
.service-tile {
    background: var(--light-gray);
    border-radius: 18px;
    box-shadow: var(--shadow-s);
    margin-bottom: 20px;
    padding: 28px 20px 24px 20px;
    position: relative;
    flex: 1 1 min(320px, 100%);
    min-width: 260px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,
.service-card:hover,
.service-tile:hover {
    box-shadow: var(--shadow-m);
    transform: translateY(-4px) scale(1.01);
    z-index: 2;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.bullet-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 14px;
}
.bullet-list img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%);
    opacity: 0.68;
}

/* Testimonials & Reviews */
.testimonial-slider, .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-s);
    min-width: 240px;
    max-width: 100%;
    border: 1px solid var(--border-light);
    color: var(--primary);
    margin-bottom: 20px;
    transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card p {
    color: var(--primary);
    font-size: 1.07rem;
    font-style: italic;
    margin-bottom: 8px;
}
.testimonial-card strong {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1em;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-m);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.ratings-summary, .star-rating-summary {
    margin-top: 24px;
    font-size: 1.10rem;
    color: var(--primary-light);
    background: var(--light-gray);
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-s);
}

/******** HERO SECTION ********/
.hero {
    background: linear-gradient(100deg, #fff 65%, #f4f5f8 100%);
    color: var(--primary);
    margin-bottom: 60px;
    padding: 60px 0 48px 0;
    border-radius: 0 0 32px 32px;
    box-shadow: none;
}
.hero .container {
    flex-direction: column;
    align-items: flex-start;
}

/******** MAIN NAVIGATION ********/
header {
    background: var(--white);
    box-shadow: 0 6px 36px rgba(24,26,29,0.04);
    z-index: 90;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 20px;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.main-nav > a img {
    height: 40px;
    width: auto;
    display: block;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.main-nav ul li a {
    color: var(--primary);
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    padding: 3px 7px;
    border-radius: 5px;
    transition: background 0.19s, color 0.19s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: var(--primary);
    color: var(--white);
}

/******** CTA BUTTONS ********/
.cta-btn, .submit-testimonial-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white) !important;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 36px;
    border: none;
    padding: 14px 38px;
    box-shadow: 0 2px 12px rgba(24,26,29,0.07);
    margin-top: 12px;
    transition: background 0.22s, transform 0.13s, box-shadow 0.13s;
    outline: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.04em;
    gap: 7px;
    z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-m);
}
.cta-btn:active {
    background: var(--primary-light);
    color: var(--white) !important;
    box-shadow: var(--shadow-s);
    transform: none;
}

/******** SERVICE GRIDS ********/
.service-grid, .service-cards-detailed {
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.service-tile, .service-card {
    flex: 1 1 300px;
    min-width: 260px;
    max-width: calc(50% - 16px);
}

/* Price, Tables, Pricing modules */
.price {
    color: var(--primary);
    background: #ededed;
    border-radius: 8px;
    padding: 6px 16px;
    font-family: 'Montserrat',sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-top: 10px;
}
.price-table, .pricing-table, .pricing-overview {
    margin-bottom: 32px;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: var(--shadow-s);
    border: 1px solid var(--border-light);
}
.price-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    margin-top: 10px;
}
.price-table th, .price-table td {
    border-bottom: 1px solid #e3e6ea;
    padding: 10px 8px;
    text-align: left;
}
.price-table th {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}
.price-table tr:last-child td {
    border-bottom: none;
}

/******** FOOTER ********/
footer {
    background: var(--primary);
    color: var(--white);
    padding: 44px 0 16px 0;
    border-radius: 32px 32px 0 0;
    margin-top: 60px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 18px;
}
.footer-nav a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.18s, text-decoration 0.2s;
    padding: 4px 10px;
    border-radius: 6px;
}
.footer-nav a:hover {
    background: var(--white);
    color: var(--primary);
    opacity: 1;
    text-decoration: underline;
}
.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.98rem;
    opacity: 0.73;
}

/********** MOBILE NAVIGATION **********/
.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--primary);
    font-size: 2rem;
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 101;
    border-radius: 50%;
    transition: background 0.20s;
    height: 48px;
    width: 48px;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:focus {
    background: #ededed;
    outline: none;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.7,.15,.23,.98);
    box-shadow: -8px 0 36px rgba(24,26,29,0.14);
    overflow-y: auto;
    padding: 0 0 40px 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    position: absolute;
    top: 22px;
    right: 18px;
    cursor: pointer;
    z-index: 1201;
    margin: 0;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.19s;
}
.mobile-menu-close:focus {
    background: #ededed;
    outline: none;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 70px;
    align-items: flex-start;
}
.mobile-nav a {
    padding: 20px 36px 18px 32px;
    color: var(--primary);
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: 100%;
    transition: background 0.16s, color 0.16s;
    border: none;
    border-left: 6px solid transparent;
    border-radius: 0 32px 32px 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--primary);
    color: var(--white);
    border-left: 6px solid var(--accent);
}

/********* RESPONSIVE - MOBILE ADAPTATIONS ********/
@media (max-width: 1060px) {
    .main-nav {
        gap: 10px;
    }
    .main-nav ul {
        gap: 15px;
    }
}
@media (max-width: 900px) {
    .main-nav ul { display: none; }
    .cta-btn { display: none !important; }
    .mobile-menu-toggle {
        display: flex;
    }
    .main-nav {
        height: 64px;
        padding: 0 7px;
    }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .container {
        padding: 0 7px;
    }
    .main-nav {
        height: 54px;
    }
    .section {
        margin-bottom: 36px;
        padding: 24px 6px;
    }
    .content-wrapper,
    .card-container,
    .card-grid,
    .service-grid,
    .service-cards-detailed,
    .reviews-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .text-image-section {
        flex-direction: column !important;
        gap: 18px !important;
    }
    .card,
    .service-card,
    .service-tile {
        max-width: 100%;
        min-width: 0;
        padding: 20px 8px 16px 8px;
    }
    .bullet-list li,
    .feature-item {
        gap: 10px;
    }
}
@media (max-width:500px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }
}

/********* EVENT, VALUE, LIST MODULES *********/
.value-props {
    background: var(--primary);
    color: var(--white);
    border-radius: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.07rem;
    padding: 17px 24px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 10px;
}
.event-services {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

/********* TABLE-LIKE and FACT SHEETS *********/
.vehicle-types-list {
    margin-bottom: 22px;
    padding: 18px 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-s);
}
.vehicle-types-list ul {
    list-style: disc;
    margin-left: 16px;
    color: var(--primary-light);
}
.vehicle-types-list li {
    font-size: 1rem;
    margin-bottom: 7px;
}

/********* SUBMIT TESTIMONIAL CALL TO ACTION *********/
.submit-testimonial-cta {
    margin-top: 36px;
    padding: 16px 24px 24px 24px;
    background: var(--light-gray);
    border-radius: 14px;
    box-shadow: var(--shadow-s);
    color: var(--primary);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.submit-testimonial-cta strong {
    padding-bottom: 6px;
}

/********* GENERIC LIST SPACING *********/
ul, ol {
    margin-bottom: 18px;
    margin-left: 24px;
}
li {
    margin-bottom: 8px;
}

/*********** FORMS & INPUTS ***********/
input[type="text"], input[type="email"], textarea, select {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    padding: 10px 15px;
    background: var(--white);
    color: var(--primary);
    margin-bottom: 16px;
    width: 100%;
    resize: vertical;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    border-color: var(--primary);
}
button, input[type="submit"] {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    border: 0;
    border-radius: 33px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-s);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.12s;
}
button:hover,
input[type="submit"]:hover,
button:focus {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.04);
}

/********* COOKIE CONSENT BANNER & MODAL *********/
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: var(--primary-light);
    color: var(--white);
    padding: 18px 24px 18px 24px;
    box-shadow: 0 -6px 38px rgba(24,26,29,0.08);
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    font-size: 1.06rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: transform 0.23s;
}
.cookie-banner__text {
    flex: 1 1 0px;
    color: var(--white);
}
.cookie-banner__actions {
    display: flex;
    gap: 18px;
}
.cookie-btn {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 22px;
    padding: 10px 22px;
    box-shadow: var(--shadow-s);
    cursor: pointer;
    transition: background 0.14s, color 0.14s, box-shadow 0.07s;
    margin-left: 0;
    margin-right: 0;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
    background: var(--primary);
    color: var(--white);
}
.cookie-btn.reject {
    background: var(--primary);
    color: var(--white);
    border: 1.5px solid var(--accent);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
    background: var(--white);
    color: var(--primary);
}
.cookie-btn.settings {
    background: var(--secondary);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
    background: var(--accent);
    color: var(--primary);
    border: 1.5px solid var(--accent);
}

@media (max-width: 650px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 12px;
        font-size: 0.96rem;
    }
    .cookie-banner__actions {
        gap: 10px;
        align-self: flex-end;
    }
}

/* Cookie Preferences Modal */
.cookie-modal-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    background: rgba(24,26,29,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.19s;
}
.cookie-modal {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 4px 48px rgba(24,26,29,0.21);
    padding: 40px 36px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 320px;
    max-width: 98vw;
    min-height: 180px;
    animation: cookie-modal-in 0.26s cubic-bezier(.7,.15,.23,.98);
}
@keyframes cookie-modal-in {
    from { transform: scale(.965) translateY(18px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.cookie-modal label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.06rem;
    padding: 9px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie-modal .cookie-switch {
    margin-right: 10px;
}
.cookie-modal .cookie-actions {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}
.cookie-modal .cookie-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: var(--mid-gray);
    cursor: pointer;
    transition: color 0.14s;
}
.cookie-modal .cookie-close:hover {
    color: var(--primary);
}

/**** SWITCH TOGGLE FOR COOKIES ****/
.cookie-switch {
    appearance: none;
    width: 38px;
    height: 22px;
    border-radius: 16px;
    background: var(--border-light);
    position: relative;
    outline: none;
    transition: background 0.15s;
    margin: 0 6px 0 0;
    cursor: pointer;
}
.cookie-switch:checked {
    background: var(--primary);
}
.cookie-switch:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.16s;
}
.cookie-switch:checked:before {
    transform: translateX(16px);
    background: var(--accent);
}

/****** SHADOWS & HOVER EFFECTS *******/
.card, .testimonial-card, .service-card, .service-tile, .submit-testimonial-cta,
.price-table, .pricing-table, .pricing-overview, .value-props {
    transition: box-shadow 0.18s, transform 0.12s;
}

/******* VISUAL HIERARCHY ******/
.card h3, .service-card h2, .service-tile h3 {
    font-size: 1.14rem;
    color: var(--primary);
    font-family: 'Montserrat',sans-serif;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

/******* Z-INDEXS for SAFE STACKING ******/
.mobile-menu,
.cookie-banner,
.cookie-modal-container {
    z-index: 1200;
}

/******* DISABLE GRID/COLUMNS PROPERTIES (DEFENSIVE) ******/
[class*="grid"],
[class*="columns"] {
    /* Anti-grid guard */
    display: flex !important;
    flex-wrap: wrap !important;
}

/********** MISC UTILITIES ***********/
.text-center { text-align: center; }
.text-right { text-align: right; }
.overflow-hidden { overflow: hidden !important; }
.hidden { display: none !important; }

/**** ACCENT HIGHLIGHTS ****/
.accent {
    color: var(--accent);
}
hr {
    border: none;
    border-bottom: 1.5px solid var(--border-dark);
    margin: 36px 0 32px 0;
}

/* ===============================
   END: FAINTSKY MONOCHROME CSS
   =============================== */
