:root {
    --primary: #B6D333;
    /* Logo Lime Green */
    --primary-hover: #9EBA2A;
    --secondary: #5C5C5C;
    /* Logo Grey */
    --accent: #333333;
    /* Dark Text */
    --background: #FFFFFF;
    --surface: #F8FAFC;
    --card-bg: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --white: #ffffff;
    --radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-bg: rgba(255, 255, 255, 0.92);
    --nav-border: rgba(0, 0, 0, 0.05);
    --border-color: #E2E8F0;
    --input-bg: #FFFFFF;
    --input-border: #CBD5E1;
    --hero-bg: radial-gradient(circle at top right, rgba(182, 211, 51, 0.12), transparent 40%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.05), transparent 40%);
    --logo-filter: none;
    --btn-sec-bg: transparent;
    --btn-sec-color: var(--secondary);
    --btn-sec-border: var(--secondary);
    --btn-sec-hover-bg: var(--secondary);
    --btn-sec-hover-color: var(--white);
    --footer-bg: #0F172A;
    --footer-text: #94A3B8;
}

[data-theme="dark"] {
    --primary: #B6D333;
    --primary-hover: #C5E338;
    --secondary: #F1F5F9;
    --accent: #E2E8F0;
    --background: #0F172A; /* Modern dark slate background */
    --surface: #1E293B;   /* Slate surface */
    --card-bg: #1E293B;   /* Slate card container */
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.5);
    --white: #1E293B;
    --nav-bg: rgba(15, 23, 42, 0.92);
    --nav-border: rgba(255, 255, 255, 0.1);
    --border-color: #334155;
    --input-bg: #1E293B;
    --input-border: #475569;
    --hero-bg: radial-gradient(circle at top right, rgba(182, 211, 51, 0.16), transparent 45%),
        radial-gradient(circle at bottom left, rgba(30, 41, 59, 0.5), transparent 45%);
    --logo-filter: none;
    --btn-sec-bg: rgba(255, 255, 255, 0.06);
    --btn-sec-color: #F8FAFC;
    --btn-sec-border: rgba(255, 255, 255, 0.25);
    --btn-sec-hover-bg: var(--primary);
    --btn-sec-hover-color: #0F172A;
    --footer-bg: #090D16;
    --footer-text: #94A3B8;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--surface);
    border: 1px solid var(--border-color);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-left: 0.75rem;
    outline: none;
}

.theme-toggle-btn:hover {
    transform: scale(1.08) rotate(15deg);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 14px rgba(182, 211, 51, 0.35);
}

[data-theme="dark"] .theme-toggle-btn i.fa-sun {
    color: #FBBF24;
}

.nav-logo, .footer-logo, .logo img {
    height: 135px;
    width: auto;
    object-fit: contain;
    filter: var(--logo-filter);
    transition: filter 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--nav-border);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary);
    position: relative;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--secondary);
}

.nav-links li a.nav-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    white-space: nowrap;
    border-radius: 20px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #0F172A; /* High contrast dark text on bright lime green */
    box-shadow: 0 4px 12px rgba(182, 211, 51, 0.28);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(182, 211, 51, 0.45);
    color: #000000;
}

.btn-secondary {
    background-color: var(--btn-sec-bg);
    color: var(--btn-sec-color);
    border: 2px solid var(--btn-sec-border);
}

.btn-secondary:hover {
    background-color: var(--btn-sec-hover-bg);
    color: var(--btn-sec-hover-color);
    border-color: var(--primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    /* Offset for fixed nav */
    padding: 4rem 0;
    background: var(--hero-bg);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 620px;
    width: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem auto;
    max-width: 600px;
    /* Limit width for readability */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections General */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

section {
    padding: 5rem 0;
}

/* Features */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Steps (Home & How it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.center-btn {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: #CBD5E1;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

/* Footer */
footer {
    background-color: #020617;
    /* Very dark slate */
    color: #94A3B8;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col p a {
    transition: var(--transition);
}

.footer-col p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.875rem;
}

/* Page Headers */
.page-header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12rem 0 6rem;
    /* Top padding facilitates fixed nav */
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
}

/* Services Page Spec */
.service-details {
    padding-top: 3rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-visual {
    flex: 1;
    height: 300px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    /* Emoji placeholder */
    box-shadow: var(--shadow-sm);
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Process Details */
.step-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number-large {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    background-color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(182, 211, 51, 0.4);
}

[data-theme="dark"] .step-number-large {
    color: #0F172A !important;
    background-color: var(--primary) !important;
    box-shadow: 0 0 25px rgba(182, 211, 51, 0.45) !important;
}

.step-content h2 {
    margin-bottom: 0.5rem;
}

.step-content strong {
    color: var(--primary);
}

/* Commission Page */
.banner {
    background: var(--primary);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 3rem;
}

.text-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.highlight-box {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.benefit h3 {
    color: var(--primary-hover);
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--surface);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
}

.toggle-icon {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease-out;
    background: var(--card-bg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Forms (Contact & Request) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .info-item {
    margin-bottom: 2rem;
}

.info-box {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper,
.form-card {
    background: var(--card-bg);
    padding: 3rem;
    /* More breathing room */
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    /* Subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover,
.form-card:hover {
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    /* For potential icons or tweaks */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    /* Slightly larger */
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    /* Comfortable padding */
    border: 1px solid var(--input-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background-color: var(--input-bg);
    transition: all 0.2s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary);
    background-color: var(--input-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--input-bg);
    box-shadow: 0 0 0 4px rgba(182, 211, 51, 0.25);
    /* Soft primary glow */
    /* Slight off-white background */
    transition: all 0.2s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #CBD5E1;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(182, 211, 51, 0.2);
    /* Soft primary glow */
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    /* Ensure responsiveness */
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
    /* Prevent being too squished */
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Radio button refinement (for Storing) */
.form-group input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    accent-color: var(--primary);
    transform: scale(1.1);
}

.form-group label>input[type="radio"] {
    display: inline-block;
}

/* Mobile Responsiveness */
/* Media Query Moved to End of File */

/* Promo Section */
.promo-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--surface);
}

.promo-image-wrapper {
    display: flex;
    justify-content: center;
}

.promo-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-height: 700px;
    object-fit: contain;
}

/* Models Section */
.models-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Location Gallery */
.locations-section {
    background-color: var(--surface);
    padding: 5rem 0;
}

.location-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    aspect-ratio: 4/3;
    /* Standardize landscape layout for location shots */
}

.location-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.location-img:hover img {
    transform: scale(1.05);
}

.stats-box {
    background-color: #E2E8F0;
    /* Grey background */
    padding: 1.5rem 3rem;
    border-radius: var(--radius);
    display: inline-block;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

/* Specs Box Spacing */
.specs-box {
    margin-top: 2.5rem;
    /* Increased from default */
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}




.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.model-image {
    padding: 2rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.model-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.model-info {
    padding: 2rem;
}

.model-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.model-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.specs-box,
.dimensions-box,
.plus-points {
    margin-bottom: 1.5rem;
    background: var(--surface);
    padding: 1rem;
    border-radius: var(--radius);
}

.specs-box h4,
.dimensions-box h4,
.plus-points h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.25rem;
}

.specs-list {
    font-size: 0.9rem;
    color: var(--text);
}

.specs-list li {
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: space-between;
}

.check-list-small {
    font-size: 0.9rem;
    color: var(--text);
}

.check-list-small li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.25rem;
}

.check-list-small li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
}

.model-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.model-info {
    padding: 2rem;
    text-align: center;
}

.model-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.model-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    height: 3rem;
    /* Align buttons */
}

/* Locations Section */
.locations-section {
    background-color: var(--surface);
    padding: 5rem 0;
    text-align: center;
}

.section-subtitle {
    margin-top: -2rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-item:hover img {
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--surface);
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    /* Increased gap for better mobile spacing */
}

.review-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.google-icon {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    color: #4285F4;
    /* Google Blue */
    font-size: 1.5rem;

    /* Simulate the Google G logo icon roughly */
    position: relative;
}

/* Optional: Make the G look more like an avatar placeholder if preferred, 
   but user asked for "Google like". We'll stick to a G or a colored initial.
   Let's just use the G textual icon for simplicity and clarity. */

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 700;
    color: #202124;
    /* Google text dark */
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: #70757a;
    /* Google text muted */
}

.review-stars {
    color: #F4B400;
    /* Google Star Yellow */
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4d5156;
    /* Google review text color */
}

/* New Services Grid */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.services-intro .highlight {
    color: var(--primary);
    font-weight: 700;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card-new h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-card-new p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-logo {
    height: 135px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    margin-bottom: 0.75rem;
    display: block;
}

/* Compact Features Grid */
.features-separator {
    text-align: center;
    margin: 4rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.features-separator h3 {
    font-size: 1.75rem;
    color: var(--secondary);
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-compact {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    /* Full border for "box" look */
    border-left: 5px solid var(--primary);
    /* Maintain accent */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    transition: var(--transition);
}

.feature-compact:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #d4d4d4;
    border-left-color: var(--primary);
}

.feature-compact h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Optional: Add icon before H4 if needed, but keeping it text-based as requested 'subtiel' */
.feature-compact h4::before {
    content: '';
    /* Or use an icon here if desired, e.g. content: '\f00c'; font-family: 'Font Awesome 5 Free'; */
}

.feature-compact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Social Media Icons in Footer */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    /* Start white/light */
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    /* Slightly dimmed */
}

.social-links a:hover {
    color: var(--primary);
    /* Lime green on hover */
    opacity: 1;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        background: var(--nav-bg);
        box-shadow: var(--shadow-sm);
        padding: 0.6rem 0;
    }

    .nav-logo,
    .logo img {
        height: 90px;
    }

    .theme-toggle-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: 0.6rem;
        box-shadow: none;
        border-width: 1px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background);
        flex-direction: column;
        padding: 2.25rem 1.75rem;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        border-top: 1px solid var(--border-color);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 0.5rem 0;
        font-size: 1.05rem;
        line-height: 1.5;
        display: block;
        width: 100%;
    }

    [data-theme="dark"] .navbar {
        background: var(--nav-bg);
    }

    [data-theme="dark"] .nav-links {
        background: var(--background);
        border-top: 1px solid var(--border-color);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
        /* Reduce size for long words like Storingsformulier */
        padding: 0 1rem;
        /* Ensure padding */
        word-wrap: break-word;
        /* Safety net */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-height: 350px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Fix Reviews Grid on Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        /* Force single column on mobile/tablet */
    }

    .models-grid,
    .features-grid,
    .steps-grid,
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack other grids too for consistency */
    }
}

/* New Stats Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(182, 211, 51, 0.2);
    /* Green shadow */
    border: 2px solid var(--primary);
    min-width: 200px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(182, 211, 51, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Utilities & Overrides */
.mt-4 {
    margin-top: 2rem !important;
}

.text-white {
    color: var(--white) !important;
}

.btn-white-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Banner Text Adjustment & Global Header Centering */
.hero:not(.hero-home) .hero-text h1 {
    padding-top: 0 !important;
}

/* Uniform Ultra-Compact & Fitting Subpage Headers Across ALL Subpages */
header.page-header,
.hero.page-header {
    margin-top: 0 !important;
    padding-top: 200px !important;
    padding-bottom: 1.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    min-height: auto !important;
    background: var(--secondary) !important;
    color: var(--white) !important;
    text-align: center !important;
}

header.page-header .hero-content,
.hero.page-header .hero-content {
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

header.page-header .hero-text,
.hero.page-header .hero-text {
    padding: 0 !important;
    margin: 0 auto !important;
}

header.page-header h1,
.hero.page-header h1 {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35rem !important;
    padding-top: 0 !important;
    color: var(--white) !important;
}

header.page-header h1 .highlight,
.hero.page-header h1 .highlight {
    color: var(--primary) !important;
}

header.page-header .hero-sub,
.hero.page-header .hero-sub,
header.page-header p.hero-sub,
header.page-header p {
    font-size: 0.92rem !important;
    color: #CBD5E1 !important;
    line-height: 1.45 !important;
    margin: 0 auto !important;
    max-width: 620px !important;
}

header.page-header .hero-buttons,
.hero.page-header .hero-buttons {
    margin-top: 0.75rem !important;
}

/* Premium Assortment Revised */
.premium-assortment {
    padding: 6rem 0;
    background-color: var(--white);
}

.premium-assortment .assortment-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 992px) {
    .premium-assortment .assortment-grid {
        flex-direction: column-reverse;
    }
}

.premium-assortment .assortment-visual {
    flex: 1;
}

.premium-image {
    width: 100%;
    max-width: 450px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

.loose-products-img {
    margin-top: 2rem;
    max-height: 400px;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.premium-assortment .assortment-content {
    flex: 1;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.assortment-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.assortment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.list-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.list-item h4 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.list-item p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.assortment-cta {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.assortment-cta h4 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.assortment-cta p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

/* Premium Action Box Unified */
.premium-cta-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(182, 211, 51, 0.1) 0%, rgba(182, 211, 51, 0.05) 100%);
    border: 1px solid rgba(182, 211, 51, 0.2);
    border-radius: var(--radius);
    text-align: left;
}

.cta-text-group h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cta-text-group p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-text-group:last-child p {
    margin-bottom: 1.5rem;
}

.cta-divider {
    height: 1px;
    background: rgba(182, 211, 51, 0.3);
    margin: 2rem 0;
}

.btn-premium-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(182, 211, 51, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-full-width {
    width: 100%;
    margin-top: 1.0rem;
}

.cta-center-action {
    text-align: center;
}

.cta-action-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-premium-action i {
    transition: transform 0.3s ease;
}

.btn-premium-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(182, 211, 51, 0.4);
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--secondary);
}

.btn-premium-action:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Trusted Partners Section (Vertrouwd door toonaangevende bedrijven)
   ========================================================================== */
.trusted-partners {
    background-color: var(--white); /* #FFFFFF */
    padding: 5.5rem 0;
    overflow: hidden;
    position: relative;
}

.trusted-partners .container {
    text-align: center;
}

.trusted-partners .section-title {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}

.trusted-partners .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.6;
    font-weight: 400;
}

.partners-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.25rem 0;
    /* Luxurious edge fade effect */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnersMarquee 32s linear infinite;
    will-change: transform;
}

.partners-slider-track:hover {
    animation-play-state: paused;
}

.partners-logo-group {
    display: flex;
    align-items: center;
    gap: 75px; /* 60–80 px whitespace between logos */
    padding-right: 75px; /* Space between repeated groups */
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px; /* Larger container for better logo visibility */
    flex-shrink: 0;
}

.partner-logo-item img {
    max-height: 72px; /* Significantly larger for clarity */
    min-height: 50px; /* Ensures smaller logos are scaled up to be clearly visible */
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: none; /* Keep original colors */
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
    box-shadow: none;
}

.partner-logo-item img.logo-sq {
    border-radius: 10px; /* Soft rounding for square icon logos like QLS & RWS */
}

.partner-logo-item:hover img {
    transform: scale(1.08);
}

@keyframes partnersMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive adjustments for Tablets & Mobile */
@media (max-width: 992px) {
    .trusted-partners {
        padding: 4.5rem 0;
    }
    .partners-logo-group {
        gap: 60px;
        padding-right: 60px;
    }
    .partner-logo-item img {
        max-height: 60px;
        min-height: 42px;
    }
}

@media (max-width: 576px) {
    .trusted-partners {
        padding: 3.5rem 0;
    }
    .trusted-partners .section-title {
        font-size: 1.65rem;
    }
    .trusted-partners .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2.25rem;
    }
    .partners-logo-group {
        gap: 45px;
        padding-right: 45px;
    }
    .partner-logo-item {
        height: 65px;
    }
    .partner-logo-item img {
        max-height: 50px;
        min-height: 36px;
        max-width: 180px;
    }
}

/* ==========================================================================
   Locaties Page & Producten Page Custom Styling
   ========================================================================== */

/* Badge Pill */
.badge-pill {
    background: rgba(182, 211, 51, 0.15);
    color: var(--secondary);
    font-weight: 700;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded-img {
    border-radius: 1.5rem;
}

.shadow-md {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.shadow-xl {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Locations Page Layout - Ultra-Compact 3-Column Grid */
.hero-locations {
    padding: 2.25rem 0 1.5rem 0 !important;
    margin-top: 85px;
}

.hero-locations h1 {
    font-size: 2.25rem !important;
    margin-bottom: 0.5rem;
}

.hero-locations .hero-sub {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 680px;
}

.locations-overview {
    padding: 2rem 0 3rem 0;
    background-color: var(--background);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.location-card {
    background: var(--card-bg);
    border-radius: 1.1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.location-card.highlight-card {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 18px rgba(182, 211, 51, 0.22);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #0F172A;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.card-img-wrapper {
    width: 100%;
    height: 145px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-hover);
    margin-bottom: 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.card-body h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 1rem;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.card-benefits li {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-benefits li i {
    color: var(--primary);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Producten Page Catalog Layout (Ultra-clean, Compact & Uniform 1 Format) */
.products-catalog {
    padding: 3rem 0;
    background-color: var(--white);
}

.category-block {
    margin-bottom: 3.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.category-block:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.category-header {
    margin-bottom: 1.25rem;
}

.category-info h2 {
    font-size: 1.55rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.category-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.category-grid-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.category-banner {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.category-banner img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
    align-items: stretch;
}

.product-item-card {
    background: var(--surface);
    padding: 0.85rem 0.6rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Uniform 1 format for all cards */
    min-height: 96px;
}

.product-item-card:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(182, 211, 51, 0.6);
}

.product-item-card.highlight-card {
    background: linear-gradient(135deg, rgba(182, 211, 51, 0.12) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(182, 211, 51, 0.4);
}

.product-icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.product-item-card h4 {
    font-size: 0.88rem;
    color: var(--secondary);
    margin-bottom: 0.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-item-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.25;
}

/* Custom Assortment Banner */
.custom-assortment-banner {
    padding: 2rem 0 6rem 0;
    background: var(--white);
}

.custom-assortment-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #2b2b2b 100%);
    color: var(--white);
    padding: 4.5rem 3rem;
    border-radius: 2rem;
}

.custom-assortment-box h2 {
    color: var(--white);
    font-size: 2.3rem;
    margin-bottom: 1.25rem;
}

.custom-assortment-box .custom-lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .location-row,
    .location-row.reverse {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 4.5rem;
    }

    .location-row.highlight-row {
        padding: 3rem 2rem;
    }

    .highlight-badge-top {
        left: 2rem;
    }

    .category-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-banner img {
        height: 240px;
    }

    .assortment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .assortment-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage Sections Styling (Why Choose & Assortment Highlight) */
.usps-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 1.25rem 0;
}

.usps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.usp-item i {
    color: var(--primary);
    font-size: 1.15rem;
}

.services-overview {
    padding: 5.5rem 0 4.5rem 0;
    background: var(--white);
    text-align: center;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: start;
}

.why-item {
    text-align: center;
    padding: 0 0.5rem;
}

.why-icon {
    font-size: 2.35rem;
    margin-bottom: 1.25rem;
    line-height: 1;
    display: inline-block;
}

.why-item h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.65rem;
    font-weight: 700;
    line-height: 1.35;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.highlight-underline::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4.5px;
    background: var(--primary);
    border-radius: 4px;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 3.5px;
    background: var(--primary);
    border-radius: 4px;
}

.service-card-icon,
.service-card .service-icon {
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Vending Assortment Section */
.vending-assortment {
    padding: 5rem 0;
    background: var(--white);
}

.assortment-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.assortment-image {
    width: 100%;
}

.assortment-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.assortment-text h2 {
    font-size: 2.1rem;
    color: var(--secondary);
    margin: 0.75rem 0 1rem 0;
    line-height: 1.25;
}

.assortment-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.assortment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--surface);
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.list-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.list-item h4 {
    font-size: 0.98rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.list-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.35;
}

.premium-cta-box {
    background: linear-gradient(135deg, rgba(182, 211, 51, 0.12) 0%, rgba(248, 249, 250, 1) 100%);
    border: 1.5px solid rgba(182, 211, 51, 0.4);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-text-group h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.cta-text-group p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.cta-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
}

.cta-action-wrapper {
    margin-top: 0.75rem;
}

.btn-premium-action {
    background: var(--secondary);
    color: var(--white);
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.assortment-cta-box {
    margin-top: 1.75rem;
    padding: 1.5rem 1.75rem;
    background: var(--surface);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.assortment-cta-box .custom-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .product-item-card {
        padding: 1.25rem 0.85rem;
    }

    .custom-assortment-box {
        padding: 3rem 1.5rem;
    }

    .custom-assortment-box h2 {
        font-size: 1.75rem;
    }
}

/* Contactless USP Icon Styling */
.contactless-usp-icon {
    height: 28px !important;
    width: auto !important;
    vertical-align: middle;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(182, 211, 51, 0.3));
    transition: transform 0.3s ease;
}

.usp-item:hover .contactless-usp-icon {
    transform: scale(1.12);
}

/* ==========================================================================
   Comprehensive Rock-Solid Dark Mode Theme Overrides
   ========================================================================== */
[data-theme="dark"] body {
    background-color: #0F172A !important;
    color: #F1F5F9 !important;
}

/* Page Backgrounds & Sections */
[data-theme="dark"] main,
[data-theme="dark"] section,
[data-theme="dark"] div.surface,
[data-theme="dark"] .services-overview,
[data-theme="dark"] .models-section,
[data-theme="dark"] .vending-assortment,
[data-theme="dark"] .reviews-section,
[data-theme="dark"] .locations-section,
[data-theme="dark"] .products-catalog,
[data-theme="dark"] .custom-assortment-banner,
[data-theme="dark"] .service-details,
[data-theme="dark"] .process-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .contact-section,
[data-theme="dark"] .request-section,
[data-theme="dark"] .commissie-section,
[data-theme="dark"] .storingsformulier-section {
    background-color: #0F172A !important;
    color: #F1F5F9 !important;
}

/* Subpage Header Padding & Seamless Background in Dark Mode */
[data-theme="dark"] header.page-header,
[data-theme="dark"] .hero.page-header {
    background: #0B0F19 !important;
    border-bottom: 1px solid #1E293B !important;
}

/* CTA Sections (Full Vending Service / Twijfel over automaat / Klaar om te beginnen) */
.cta-section,
[data-theme="dark"] .cta-section {
    padding: 4.5rem 1.5rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%) !important;
    color: #FFFFFF !important;
    border-top: 1px solid #334155 !important;
    border-bottom: 1px solid #334155 !important;
}

.cta-section h2,
[data-theme="dark"] .cta-section h2 {
    color: #FFFFFF !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
}

.cta-section p,
[data-theme="dark"] .cta-section p {
    color: #CBD5E1 !important;
    font-size: 1.1rem !important;
    margin-bottom: 1.75rem !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Google Reviews Cards in Dark Mode */
.reviews-section {
    padding: 5rem 0;
    background: var(--surface);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-icon {
    width: 40px;
    height: 40px;
    background: #4285F4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-author {
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

[data-theme="dark"] .reviews-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .review-card,
[data-theme="dark"] .testimonial-card {
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .review-author {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

[data-theme="dark"] .review-date {
    color: #94A3B8 !important;
}

[data-theme="dark"] .review-text {
    color: #E2E8F0 !important;
}

/* Cards & Grid Containers Across All Pages */
[data-theme="dark"] .location-card,
[data-theme="dark"] .model-card,
[data-theme="dark"] .product-item-card,
[data-theme="dark"] .feature-compact,
[data-theme="dark"] .form-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .step-card,
[data-theme="dark"] .commissie-card,
[data-theme="dark"] .info-card,
[data-theme="dark"] .list-item,
[data-theme="dark"] .assortment-cta-box,
[data-theme="dark"] .premium-cta-box {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    color: #F1F5F9 !important;
}

[data-theme="dark"] .why-item {
    background-color: #1E293B !important;
    background: #1E293B !important;
    border: 1px solid #334155 !important;
    border-radius: 16px !important;
    padding: 1.75rem 1.25rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

/* Headings in Dark Mode */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #FFFFFF !important;
}

/* Paragraphs & Text in Dark Mode */
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] label,
[data-theme="dark"] span {
    color: #CBD5E1;
}

[data-theme="dark"] .card-cat {
    color: var(--primary) !important;
}

[data-theme="dark"] .review-stars,
[data-theme="dark"] .stars {
    color: #F59E0B !important;
}

/* Form Inputs in Dark Mode */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="number"],
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: #1E293B !important;
    color: #FFFFFF !important;
    border-color: #475569 !important;
}

[data-theme="dark"] select option {
    background-color: #1E293B !important;
    color: #FFFFFF !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #64748B !important;
}

/* Hero Image Light & Dark Styling */
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

[data-theme="dark"] .hero-img {
    mix-blend-mode: normal !important;
    filter: brightness(1.02) contrast(1.05) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

/* Rock-Solid High-Specificity Dark Mode Text & Heading Overrides */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .category-info h2,
[data-theme="dark"] .category-header h2,
[data-theme="dark"] .services-overview h2,
[data-theme="dark"] .models-section h2,
[data-theme="dark"] .vending-assortment h2,
[data-theme="dark"] .locations-section h2,
[data-theme="dark"] .products-catalog h2,
[data-theme="dark"] .service-details h2,
[data-theme="dark"] .process-section h2,
[data-theme="dark"] .faq-section h2,
[data-theme="dark"] .contact-section h2,
[data-theme="dark"] .request-section h2,
[data-theme="dark"] .commissie-section h2,
[data-theme="dark"] .storingsformulier-section h2,
[data-theme="dark"] .page-header h1,
[data-theme="dark"] .page-header h2,
[data-theme="dark"] .hero.page-header h1,
[data-theme="dark"] .assortment-text h2,
[data-theme="dark"] .product-item-card h4,
[data-theme="dark"] .model-card h3,
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .location-card h3,
[data-theme="dark"] .why-item h3,
[data-theme="dark"] .step-card h3,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .faq-question h3,
[data-theme="dark"] .review-author {
    color: #FFFFFF !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .category-info p,
[data-theme="dark"] .category-header p,
[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .page-header p,
[data-theme="dark"] .product-item-card p,
[data-theme="dark"] .model-card p,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .why-item p,
[data-theme="dark"] .step-card p,
[data-theme="dark"] label,
[data-theme="dark"] li {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .highlight,
[data-theme="dark"] span.highlight,
[data-theme="dark"] h1 .highlight,
[data-theme="dark"] h2 .highlight,
[data-theme="dark"] h3 .highlight {
    color: #B6D333 !important;
}

/* Uniform Product Cards Across Light & Dark Mode */
.product-item-card,
.product-item-card.highlight-card {
    background: var(--surface) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="dark"] .product-item-card,
[data-theme="dark"] .product-item-card.highlight-card {
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    color: #F1F5F9 !important;
}

/* Hide Product Card Icons on Assortiment Page */
.product-icon {
    display: none !important;
}

/* FAQ & CTA Outline Buttons - Crisp White and Highly Visible */
.btn-white-outline,
.btn-outline {
    background-color: #FFFFFF !important;
    color: #0F172A !important;
    border: 2px solid #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 50px !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-white-outline:hover,
.btn-outline:hover {
    background-color: var(--primary) !important;
    color: #0F172A !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(182, 211, 51, 0.35) !important;
}

[data-theme="dark"] .btn-white-outline,
[data-theme="dark"] .btn-outline {
    background-color: #FFFFFF !important;
    color: #0F172A !important;
    border: 2px solid #FFFFFF !important;
}

/* TikTok Campaign Showcase Section */
.tiktok-campaign-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 1) 100%);
}

[data-theme="dark"] .tiktok-campaign-section {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

.tiktok-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.tiktok-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(79, 172, 254, 0.35);
    letter-spacing: 0.5px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.tiktok-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 2px solid transparent;
}

[data-theme="dark"] .tiktok-card {
    background: #1E293B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tiktok-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(182, 211, 51, 0.25);
    border-color: var(--primary);
}

.tiktok-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background-color: #000000;
}

.tiktok-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    filter: brightness(0.97) contrast(1.03);
}

/* Zoom effect on hover */
.tiktok-card:hover .tiktok-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.02) contrast(1.05);
}

.tiktok-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.tiktok-card:hover .tiktok-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.85) 100%);
}

.tiktok-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #FE2C55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.tiktok-card:hover .tiktok-play-btn {
    transform: scale(1.15);
    background: #FE2C55;
    color: #ffffff;
}

.tiktok-cta-label {
    position: absolute;
    bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.tiktok-card:hover .tiktok-cta-label {
    transform: translateY(-3px);
}

.tiktok-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.tiktok-tag.highlight-tag {
    background: var(--primary);
    color: #0F172A;
    border: none;
}

.tiktok-card-info {
    padding: 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tiktok-card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    line-height: 1.35;
}

.tiktok-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tiktok-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.25rem;
}

.hero-img,
.hero-image img {
    width: 100%;
    max-width: 640px;
    max-height: 680px;
    transform: scale(1.08);
    transform-origin: top center;
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

/* Subtle Hero Badge & Trust Elements */
.trial-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 211, 51, 0.12);
    border: 1px solid var(--primary);
    color: var(--text);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 2.5rem;
    box-shadow: 0 4px 12px rgba(182, 211, 51, 0.15);
}

.trial-hero-badge.under-machine-badge {
    margin-top: 2.75rem;
    margin-bottom: 0;
}

.trial-hero-badge i {
    color: var(--primary);
    font-size: 0.95rem;
}

.hero-trust-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Subtle Financing Badge Under Models Section */
.financing-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.75rem;
}

.financing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 211, 51, 0.12);
    border: 1px solid var(--primary);
    color: var(--text);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

[data-theme="dark"] .financing-badge {
    background: rgba(182, 211, 51, 0.15);
    color: #F8FAFC;
    border-color: var(--primary);
}

.financing-badge i {
    color: var(--primary);
    font-size: 1rem;
}

/* Service Intro Section under Page Header */
.service-intro-section {
    padding: 3.5rem 0 1.5rem;
    background-color: var(--surface);
}

.service-intro-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-sm);
}

.service-intro-card h2 {
    font-size: 1.85rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-intro-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.service-intro-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.service-intro-card p.service-intro-bold {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    font-size: 1.1rem;
}

[data-theme="dark"] .service-intro-card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .service-intro-card h2 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .service-intro-card p {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .service-intro-card p.service-intro-bold {
    color: #F8FAFC !important;
}

/* Trusted Partners Logo Marquee Ticker */
.trusted-partners {
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
    position: relative;
    background-color: var(--surface);
}

.partners-slider-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.partners-slider-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollMarquee 22s linear infinite;
    will-change: transform;
}

.partners-slider-track:hover {
    animation-play-state: paused;
}

.partners-logo-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    min-width: 140px;
    max-width: 180px;
    padding: 0 12px;
    background: transparent;
    box-shadow: none;
    border: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.partner-logo-item:hover {
    transform: scale(1.08);
}

.partner-logo-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

[data-theme="dark"] .partner-logo-item {
    background: transparent;
    border: none;
    box-shadow: none;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

/* === RESPONSIVE OVERRIDES ===*/
/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLES — Sunny Vending
   Breakpoints: 1024px | 768px | 480px | 375px
   ========================================================================== */

/* ============================================================
   1024px — Large Tablets / Small Laptops
   ============================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .assortment-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .assortment-image img {
        max-height: 380px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row,
    .service-row.reverse {
        gap: 2.5rem;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links li a {
        font-size: 0.88rem;
    }

    .hero-image img,
    .hero-img,
    .hero-image .hero-img {
        max-width: 520px;
    }
}

/* ============================================================
   768px — Tablets
   ============================================================ */
@media (max-width: 768px) {
    /* === Navbar === */
    [data-theme="dark"] .navbar {
        background: rgba(15, 23, 42, 0.98) !important;
    }

    [data-theme="dark"] .nav-links {
        background: #0F172A !important;
        border-top: 1px solid #1E293B !important;
    }

    /* === General === */
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4.5rem 0 4rem 0;
    }

    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .section-title::after {
        margin: 0.75rem auto 0;
    }

    /* === Hero === */
    .hero {
        margin-top: 75px;
        padding: 3.5rem 0 3rem 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
        word-break: break-word;
    }

    .hero h1 .highlight {
        white-space: normal;
        display: inline-block;
    }

    .hero-sub {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        margin-top: 0.5rem;
        width: 100%;
    }

    .hero-image img,
    .hero-img,
    .hero-image .hero-img {
        max-width: 100%;
        max-height: 400px;
        transform: scale(1);
    }

    .hero-trust-note {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 1.5rem;
    }

    /* === Page Header === */
    header.page-header,
    .hero.page-header {
        padding-top: 115px !important;
        padding-bottom: 3rem !important;
    }

    header.page-header h1,
    .hero.page-header h1 {
        font-size: 1.65rem !important;
        line-height: 1.35 !important;
        margin-bottom: 1rem !important;
    }

    /* === USPs Bar === */
    .usps-bar {
        padding: 1rem 0;
    }

    .usps-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .usp-item {
        font-size: 0.88rem;
    }

    /* === Services Grid 4-col → 2-col === */
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* === Assortment === */
    .assortment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .assortment-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .premium-assortment .assortment-grid {
        flex-direction: column;
        gap: 2rem;
    }

    /* === Models === */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* === Service Row === */
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    /* === Process Steps === */
    .step-detail {
        flex-direction: row;
        gap: 1.25rem;
        align-items: flex-start;
    }

    /* === Locations === */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .location-card .card-img-wrapper {
        height: 120px;
    }

    /* === Reviews === */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* === Contact === */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        min-width: 100%;
    }

    /* === FAQ === */
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }

    /* === Footer === */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* === Stats === */
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

    /* === Commissie / Benefits === */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* === TikTok === */
    .tiktok-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    /* === Steps Grid === */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* === Features grid === */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* === Services Compact === */
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* === CTA Section === */
    .cta-section h2,
    [data-theme="dark"] .cta-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1.25rem !important;
    }

    .cta-section p,
    [data-theme="dark"] .cta-section p {
        font-size: 1rem !important;
        line-height: 1.75 !important;
        margin-bottom: 2rem !important;
    }

    /* === Services new === */
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* === Services intro === */
    .services-intro h2 {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    /* === Service intro card === */
    .service-intro-card {
        padding: 2rem 1.5rem;
    }

    /* === Feature Cards General Mobile Spacing === */
    .feature-card,
    .service-card-new,
    .model-card,
    .step,
    .review-card,
    .faq-item {
        padding: 1.85rem 1.35rem;
    }

    .feature-card h3,
    .service-card-new h3,
    .model-info h3,
    .step h3 {
        margin-bottom: 0.85rem;
        line-height: 1.35;
    }

    .feature-card p,
    .service-card-new p,
    .model-desc,
    .step p {
        line-height: 1.65;
    }
}

/* ============================================================
   480px — Large Phones
   ============================================================ */
@media (max-width: 480px) {
    /* === General === */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0 3.5rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    /* === Navbar === */
    .nav-logo,
    .footer-logo,
    .logo img {
        height: 85px;
    }

    .theme-toggle-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }

    /* === Hero === */
    .hero {
        margin-top: 70px;
        padding: 2.75rem 0 2.25rem 0;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-image img,
    .hero-img,
    .hero-image .hero-img {
        max-height: 320px;
    }

    /* === Page Header === */
    header.page-header,
    .hero.page-header {
        padding-top: 105px !important;
    }

    header.page-header h1,
    .hero.page-header h1 {
        font-size: 1.4rem !important;
        word-break: break-word;
    }

    /* === USPs bar stacking === */
    .usps-grid {
        flex-direction: column;
        gap: 0.65rem;
    }

    /* === Services 4col → 1col === */
    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* === Locations 2col → 1col === */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* === Footer stacking === */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* === Forms === */
    .contact-form-wrapper,
    .form-card {
        padding: 1.5rem 1rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.25rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.85rem 1.5rem;
    }

    /* === Process Steps === */
    .step-detail {
        gap: 1rem;
    }

    .step-number-large {
        width: 55px;
        height: 55px;
        font-size: 2.25rem;
    }

    .step-content h2 {
        font-size: 1.25rem;
    }

    /* === CTA Section === */
    .cta-section,
    [data-theme="dark"] .cta-section {
        padding: 3rem 1rem !important;
    }

    .cta-section h2,
    [data-theme="dark"] .cta-section h2 {
        font-size: 1.5rem !important;
    }

    /* === Assortment list 2col → 1col on smallest === */
    .assortment-list {
        grid-template-columns: 1fr;
    }

    /* === commissie banner === */
    .custom-assortment-box {
        padding: 2.5rem 1.25rem;
        border-radius: 1.25rem;
    }

    .custom-assortment-box h2 {
        font-size: 1.65rem;
    }

    /* === Service intro card === */
    .service-intro-card {
        padding: 1.5rem 1rem;
    }

    .service-intro-card h2 {
        font-size: 1.5rem;
    }

    /* === Features Compact === */
    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    /* === TikTok grid === */
    .tiktok-grid {
        max-width: 100%;
    }

    /* === Hero buttons full-width === */
    .hero-buttons .btn {
        max-width: 100%;
    }

    /* === Banner === */
    .banner {
        padding: 1.5rem 1rem;
    }

    /* === Stats === */
    .stat-number {
        font-size: 2.5rem;
    }

    /* === Trusted partners === */
    .trusted-partners .section-title {
        font-size: 1.5rem;
    }

    .trusted-partners .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
}

/* ============================================================
   375px — Small Phones (iPhone SE / older Android)
   ============================================================ */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-image img,
    .hero-img,
    .hero-image .hero-img {
        max-height: 270px;
    }

    header.page-header h1,
    .hero.page-header h1 {
        font-size: 1.3rem !important;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .nav-logo,
    .footer-logo,
    .logo img {
        height: 80px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
    }

    .step-number-large {
        width: 48px;
        height: 48px;
        font-size: 1.85rem;
    }

    .step-detail {
        gap: 0.85rem;
    }

    .step-content h2 {
        font-size: 1.1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .cta-section h2,
    [data-theme="dark"] .cta-section h2 {
        font-size: 1.35rem !important;
    }

    .contact-form-wrapper,
    .form-card {
        padding: 1.25rem 0.875rem;
    }

    .services-intro h2 {
        font-size: 1.65rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================================
   Reduced Motion — Disable heavy animations on mobile
   ============================================================ */
@media (prefers-reduced-motion: reduce),
(max-width: 768px) {
    .partners-slider-track {
        animation-duration: 40s;
    }

    .feature-card:hover,
    .model-card:hover,
    .location-card:hover,
    .service-card-new:hover,
    .why-item:hover,
    .tiktok-card:hover {
        transform: none;
    }
}

/* ============================================================
   Overflow safety — prevent horizontal scroll on all sizes
   ============================================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}



/* === DARK/LIGHT MODE MOBILE COMPLETE FIX ===*/

/* ==========================================================================
   DARK MODE + LIGHT MODE — MOBILE COMPLETE FIX
   Ensures dark/light themes work correctly on all screen sizes
   ========================================================================== */

/* === Hamburger icon color ===  */
[data-theme="dark"] .hamburger span {
    background-color: #F1F5F9 !important;
}

/* === Mobile nav menu — dark mode === */
@media (max-width: 768px) {
    [data-theme="dark"] .nav-links {
        background: #0B1120 !important;
        border-top: 1px solid #1E293B !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    }
}

[data-theme="dark"] .nav-links li a {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .nav-links li a:hover {
    color: var(--primary) !important;
}

/* === Mobile nav menu — light mode (explicit) === */
@media (max-width: 768px) {
    [data-theme="light"] .nav-links {
        background: #ffffff;
        border-top: 1px solid #E2E8F0;
    }
}

/* === Navbar background — both modes === */
[data-theme="dark"] .navbar {
    background: rgba(11, 17, 32, 0.96) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #1E293B !important;
}

/* === Feature compact cards dark mode === */
[data-theme="dark"] .feature-compact {
    background: #1E293B !important;
    border-color: #334155 !important;
    border-left-color: var(--primary) !important;
}

[data-theme="dark"] .feature-compact h4 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .feature-compact p {
    color: #94A3B8 !important;
}

/* === Stats boxes dark mode === */
[data-theme="dark"] .stat-box {
    background: #1E293B !important;
    border-color: var(--primary) !important;
}

[data-theme="dark"] .stat-label {
    color: #F1F5F9 !important;
}

/* === Banner dark mode === */
[data-theme="dark"] .banner {
    background: var(--primary) !important;
    color: #0F172A !important;
}

[data-theme="dark"] .banner h2,
[data-theme="dark"] .banner p {
    color: #0F172A !important;
}

/* === Info box dark mode === */
[data-theme="dark"] .info-box {
    background: #1E293B !important;
    border-left-color: var(--primary) !important;
}

/* === Benefit cards dark mode === */
[data-theme="dark"] .benefit {
    background: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .benefit h3 {
    color: var(--primary) !important;
}

/* === Steps (Home "Hoe werkt het") dark mode === */
[data-theme="dark"] .step-number {
    background-color: var(--primary) !important;
    color: #0F172A !important;
}

[data-theme="dark"] .step h3 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .step p {
    color: #94A3B8 !important;
}

/* === Hero trust note dark mode === */
[data-theme="dark"] .hero-trust-note {
    color: #94A3B8 !important;
}

/* === Trial badge dark mode === */
[data-theme="dark"] .trial-hero-badge {
    background: rgba(182, 211, 51, 0.12) !important;
    border-color: var(--primary) !important;
    color: #F1F5F9 !important;
}

/* === FAQ dark mode === */
[data-theme="dark"] .faq-item {
    background: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .faq-question {
    background: #1E293B !important;
    color: #FFFFFF !important;
}

[data-theme="dark"] .faq-question:hover {
    background: #263446 !important;
}

[data-theme="dark"] .faq-answer {
    background: #1E293B !important;
    color: #CBD5E1 !important;
}

[data-theme="dark"] .toggle-icon {
    color: var(--primary) !important;
}

/* === USPs bar dark mode (always dark background) === */
.usps-bar {
    background: var(--secondary) !important;
}

[data-theme="dark"] .usps-bar {
    background: #090D16 !important;
}

[data-theme="dark"] .usp-item {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .usp-item span {
    color: #F1F5F9 !important;
}

/* === Process Steps page dark mode === */
[data-theme="dark"] .process-steps {
    background-color: #0F172A !important;
}

[data-theme="dark"] .step-detail {
    border: none !important;
}

[data-theme="dark"] .step-content h2 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .step-content p {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .step-content strong {
    color: var(--primary) !important;
}

/* === Services page compact features dark mode === */
[data-theme="dark"] .features-separator {
    border-top-color: #334155 !important;
}

[data-theme="dark"] .features-separator h3 {
    color: #FFFFFF !important;
}

/* === Service intro card dark mode === */
[data-theme="dark"] .service-intro-section {
    background-color: #0F172A !important;
}

/* === Trusted partners dark mode === */
[data-theme="dark"] .trusted-partners {
    background-color: #090D16 !important;
}

[data-theme="dark"] .partner-logo-item img {
    filter: brightness(1.1) !important;
    opacity: 0.9 !important;
}

/* === Contact info dark mode === */
[data-theme="dark"] .contact-info h2,
[data-theme="dark"] .contact-info h3 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .contact-info p,
[data-theme="dark"] .contact-info p a {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .info-item h3 {
    color: #FFFFFF !important;
}

/* === Footer — always same dark in both modes === */
footer {
    background-color: #020617 !important;
}

[data-theme="dark"] footer {
    background-color: #020617 !important;
}

[data-theme="dark"] .copyright {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* === Model cards dark mode === */
[data-theme="dark"] .model-card {
    background: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .model-image {
    background: #263446 !important;
}

[data-theme="dark"] .model-info h3 {
    color: #FFFFFF !important;
}

[data-theme="dark"] .model-desc {
    color: #94A3B8 !important;
}

[data-theme="dark"] .specs-box,
[data-theme="dark"] .dimensions-box,
[data-theme="dark"] .plus-points {
    background: #263446 !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .specs-box h4,
[data-theme="dark"] .dimensions-box h4,
[data-theme="dark"] .plus-points h4 {
    color: #94A3B8 !important;
    border-bottom-color: #334155 !important;
}

/* === Commissie page dark mode === */
[data-theme="dark"] .commissie-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .highlight-box {
    background: #1E293B !important;
    border-color: var(--primary) !important;
}

/* === Text block dark mode === */
[data-theme="dark"] .text-block h2,
[data-theme="dark"] .text-block p {
    color: #CBD5E1 !important;
}

/* === Mobile-specific dark mode fixes ===  */
@media (max-width: 768px) {
    [data-theme="dark"] .navbar {
        background: rgba(11, 17, 32, 0.98) !important;
    }

    [data-theme="dark"] .nav-links {
        background: #0B1120 !important;
        border-top: 1px solid #1E293B !important;
    }

    [data-theme="dark"] .nav-links li a {
        color: #F1F5F9 !important;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }

    [data-theme="dark"] .hamburger span {
        background-color: #F1F5F9 !important;
    }

    /* Feature cards single column dark mode mobile */
    [data-theme="dark"] .feature-card,
    [data-theme="dark"] .service-card-new {
        background: #1E293B !important;
        border-color: #334155 !important;
    }

    [data-theme="dark"] .feature-card h3,
    [data-theme="dark"] .service-card-new h3 {
        color: #FFFFFF !important;
    }

    [data-theme="dark"] .feature-card p,
    [data-theme="dark"] .service-card-new p {
        color: #94A3B8 !important;
    }

    /* Review cards mobile dark */
    [data-theme="dark"] .review-card {
        background-color: #1E293B !important;
        border-color: #334155 !important;
    }

    /* Contact form dark mobile */
    [data-theme="dark"] .contact-form-wrapper,
    [data-theme="dark"] .form-card {
        background: #1E293B !important;
        border-color: #334155 !important;
    }

    [data-theme="dark"] .form-group label {
        color: #F1F5F9 !important;
    }

    /* Sections background dark mobile */
    [data-theme="dark"] .features,
    [data-theme="dark"] .premium-assortment,
    [data-theme="dark"] .vending-assortment {
        background-color: #0F172A !important;
    }

    /* Hero dark mobile */
    [data-theme="dark"] .hero {
        background: var(--hero-bg) !important;
    }

    /* Steps section dark mobile */
    [data-theme="dark"] .steps-section,
    [data-theme="dark"] .how-it-works {
        background-color: #0F172A !important;
    }
}

/* === Light mode explicit overrides for elements with hardcoded colors === */
@media (max-width: 768px) {
    [data-theme="light"] .nav-links {
        background: #ffffff !important;
        border-top: 1px solid #E2E8F0 !important;
    }
}

[data-theme="light"] .faq-item,
:root:not([data-theme="dark"]) .faq-item {
    background: var(--card-bg) !important;
}

[data-theme="light"] .feature-compact,
:root:not([data-theme="dark"]) .feature-compact {
    background: #ffffff !important;
    border-color: #E5E5E5 !important;
    border-left-color: var(--primary) !important;
}

