/* Modern Reset & Variables */
:root {
    --color-bg: #0f1115;
    --color-surface: #1a1d23;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;

    /* Brand Colors extracted from logo */
    --color-brand-orange: #ed4e1e;
    --color-brand-blue: #00ADEF;
    --color-brand-green: #8CC63F;
    --color-brand-dark: #414042;

    --color-primary: var(--color-brand-blue);
    --color-primary-hover: #0095ce;
    /* Slightly darker blue */
    --color-accent: var(--color-brand-green);

    --font-main: 'Outfit', sans-serif;

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography & Utilities */
.text-center {
    text-align: center;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.accent {
    background: linear-gradient(to right, var(--color-brand-orange), var(--color-brand-blue), var(--color-brand-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: rgba(154, 231, 82, 0.818);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-text {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
}

.block-btn {
    width: 100%;
    text-align: center;
    border-radius: var(--border-radius);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: white;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-links a:hover {
    color: white;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
}

/* Hero */
/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--spacing-xl);
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.6)), url('./assets/cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.hero-lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    max-width: 650px;
    line-height: 1.7;
}

.hero-extra {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    border-left: 3px solid var(--color-brand-blue);
    padding-left: 1rem;
}

.highlight-text {
    color: var(--color-brand-green);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Feature Grid (New Style for Wat je krijgt) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Cycle Brand Colors for Features */
.feature-card:nth-child(3n+1)::before {
    background: var(--color-brand-orange);
}

.feature-card:nth-child(3n+2)::before {
    background: var(--color-brand-blue);
}

.feature-card:nth-child(3n+3)::before {
    background: var(--color-brand-green);
}

.feature-card:nth-child(3n+1):hover {
    border-color: rgba(237, 78, 30, 0.3);
}

.feature-card:nth-child(3n+2):hover {
    border-color: rgba(0, 173, 239, 0.3);
}

.feature-card:nth-child(3n+3):hover {
    border-color: rgba(140, 198, 63, 0.3);
}


/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-darker {
    background-color: var(--color-surface);
}

.bg-light {
    background-color: #15181e;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card p {
    font-style: italic;
    margin: 0;
    color: var(--color-primary);
    font-weight: 500;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values / Philosophy */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Brand Colors for Value Items */
.value-item:nth-child(1) .value-icon {
    color: var(--color-brand-orange);
}

.value-item:nth-child(2) .value-icon {
    color: var(--color-brand-blue);
}

.value-item:nth-child(3) .value-icon {
    color: var(--color-brand-green);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* Ensure no underline on the whole card */
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
    background: linear-gradient(145deg, var(--color-surface), #20242b);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .text-link {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .text-link {
    color: var(--color-primary-hover);
    transform: translateX(5px);
}

.badge {
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.service-list {
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
}

.service-list li i {
    color: var(--color-accent);
}

/* Brand Colors for Service Cards on Hover */
.service-card:nth-child(1):hover {
    border-color: var(--color-brand-blue);
}

.service-card:nth-child(2):hover {
    border-color: var(--color-brand-orange);
}

.service-card:nth-child(3):hover {
    border-color: var(--color-brand-green);
}

.service-card:nth-child(1) .badge {
    background-color: var(--color-brand-blue);
}

.service-card:nth-child(2) .badge {
    background-color: var(--color-brand-orange);
}

.service-card:nth-child(3) .badge {
    background-color: var(--color-brand-green);
}

/* Social Grid (Premium Style) */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 1rem;
    overflow-x: auto;
    width: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding-bottom: 5px;
    /* Tiny padding to avoid occasional clip */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

/* Remove track styles if any remain */
.carousel-track {
    display: contents;
}

.instagram-frame-wrapper {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0;
    min-height: 450px;
    /* Items fill their grid column */
    scroll-snap-align: center;

    /* Collapsible logic */
    max-height: 700px;
    position: relative;
    transition: max-height 0.5s ease-in-out;
}

.instagram-frame-wrapper.expanded {
    max-height: 2500px;
    /* Allow enough space for long posts */
}

.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--color-surface) 20%, rgba(26, 29, 35, 0.8) 60%, transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1.5rem;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.instagram-frame-wrapper.expanded .read-more-overlay {
    opacity: 0;
    pointer-events: none;
}

.read-more-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.carousel-nav {
    background: var(--color-surface);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.05);
}

/* Tablet: 2 items */
@media (min-width: 768px) {
    .carousel-container {
        grid-auto-columns: calc((100% - 1.5rem) / 2);
        /* (100% - 1 gap) / 2 */
        gap: 1.5rem;
    }
}

/* Desktop: 3 items */
@media (min-width: 1024px) {
    .carousel-container {
        grid-auto-columns: calc((100% - 3rem) / 3);
        /* (100% - 2 gaps) / 3 */
    }
}

/* Optional: remove or comment out unused social-card styles if you want, but keeping them for safety is fine */


/* Contact */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-bg);
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(59, 130, 246, 0.05);
}

/* Footer */
/* Contact Page Specifics */
.contact-hero-title {
    /* Ensure long words break on small screens */
    word-break: break-word;
    overflow-wrap: break-word;
    /* Standard property */
    hyphens: auto;
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2.5rem;
        /* Slightly smaller on very small screens if needed */
    }
}

/* Structured Checklist for "Wat bespreken we" */
.checklist-grid-ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin-top: 2rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.checklist-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    /* Align with first line of text */
}

.checklist-content {
    display: flex;
    flex-direction: column;
}

.checklist-title {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.checklist-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    background-color: #0d0f12;
    /* Slightly darker than main bg */
}

.footer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-column strong {
    color: #e0e0e0;
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1.5rem;
    display: block;
    border-radius: 8px;
    /* Optional, makes it cleaner if square */
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    /* Hide carousel buttons on mobile, rely on swipe */
    .carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        /* Ensure long words fit on very small screens */
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.mail {
    background-color: var(--color-primary);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- New Page Specific Styles --- */

/* Small Hero for Subpages */
.small-hero {
    min-height: 50vh;
    padding-top: var(--spacing-xl);
    padding-bottom: 4rem;
    align-items: center;
}

.seizoensopbouw-hero {
    background-image: linear-gradient(to right, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.6)), url('./assets/seizoensopbouw.jpeg');
    background-position: center top;
    /* Adjusted for portrait photo if needed */
}

/* Checklist Styles */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--color-text);
}

.checklist li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-accent);
    margin-top: 4px;
}

.checklist-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.15rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* Testimonials Carousel */
.testimonials-section-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-padding: 0;
}

.testimonials-scroll-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card-scroll {
    /* Mobile: Show 1 full card */
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    transform: none;
    max-width: none;
}

@media (min-width: 768px) {
    .testimonials-scroll-container {
        padding: 1rem 3.5rem 3rem;
        /* Add side padding for buttons */
    }

    .testimonial-card-scroll {
        /* Tablet: Show 2 cards fully */
        flex: 0 0 calc((100% - 1.5rem) / 2);
        scroll-snap-align: start;
    }
}

@media (min-width: 1024px) {
    .testimonial-card-scroll {
        /* Desktop: Show 3 cards fully */
        flex: 0 0 calc((100% - 3rem) / 3);
        scroll-snap-align: start;
    }
}


.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.form-hint {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
        /* Hide buttons on mobile, swipe is better */
    }
}

/* Navigation Active State */
.nav-link.active {
    color: var(--color-primary);
    font-weight: 700;
}

/* Helper Classes */
.inline-block {
    display: inline-block;
    text-align: left;
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-xl);
}

/* Contact Page Specific */
.contact-section {
    background: var(--color-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section Spacing Fix */
.cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cta-buttons {
    margin-top: 3rem;
}