/**
 * Frontend CSS - lekkenvinden.be
 * Modern, conversion-focused design
 */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E62B34;
    --primary-teal: #24A58F;
    --light-teal: #8AD1C3;
    --dark-gray: #2C3E50;
    --medium-gray: #7f8c8d;
    --light-gray: #ecf0f1;
    --border-color: #dfe6e9;
    --white: #FFFFFF;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Open Sans', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-red);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-red);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #c91f28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 43, 52, 0.3);
}

.btn-secondary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1a7d6f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 165, 143, 0.3);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.btn-phone {
    background: var(--primary-red);
    color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
}

.header-cta {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1a7d6f 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--light-teal);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-red);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--white);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-teal), #1a7d6f);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.pricing-header h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-header p {
    opacity: 0.9;
    margin: 0;
}

.pricing-body {
    padding: 40px;
}

.price-main {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.price-label {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-left: 8px;
}

.price-includes {
    list-style: none;
    margin-bottom: 24px;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes svg {
    color: var(--success);
    flex-shrink: 0;
}

.price-note,
.price-extra {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.price-note {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
}

.price-extra {
    background: #d4edda;
    border-left: 4px solid var(--success);
}

.pricing-footer {
    padding: 0 40px 40px;
    text-align: center;
}

/* ===== INSURANCE SECTION ===== */
.insurance {
    background: var(--light-gray);
}

.insurance-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.step {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 15px;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-teal);
    font-weight: 700;
}

.insurance-cta {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail svg {
    color: var(--primary-teal);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 4px;
}

.contact-detail a {
    color: var(--dark-gray);
}

.contact-detail a:hover {
    color: var(--primary-teal);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--medium-gray);
}

.form-privacy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--medium-gray);
    text-align: center;
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.news-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
}

.news-content time {
    display: block;
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-content h3 a {
    color: var(--dark-gray);
}

.news-content h3 a:hover {
    color: var(--primary-teal);
}

.news-content p {
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-red);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--light-teal);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info svg {
    color: var(--light-teal);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;

}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}


/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1a7d6f 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
    margin-bottom: 50px;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 60px 0;
}

.intro-text {
    margin-bottom: 48px;
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text ul {
    list-style: none;
    padding-left: 0;
}

.intro-text ul li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
}

.intro-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== PRICING DETAIL ===== */
.price-box-large {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    margin-bottom: 32px;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-teal), #1a7d6f);
    color: var(--white);
    padding: 32px;
    text-align: center;
}

.price-header h2 {
    color: var(--white);
    margin: 0;
}

.price-amount-large {
    text-align: center;
    padding: 40px 32px;
    border-bottom: 1px solid var(--border-color);
}

.price-amount-large .amount {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    display: block;
}

.price-amount-large .vat {
    font-size: 1.25rem;
    color: var(--medium-gray);
    display: block;
    margin-top: 8px;
}

.price-includes-large {
    padding: 32px;
}

.price-includes-large h3 {
    margin-bottom: 20px;
}

.price-includes-large ul {
    list-style: none;
    padding: 0;
}

.price-includes-large ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-includes-large ul li:last-child {
    border-bottom: none;
}

.price-info,
.repair-option {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.price-info h2,
.repair-option h2 {
    margin-bottom: 16px;
}

.price-info ul,
.repair-option ul {
    list-style: none;
    padding-left: 0;
}

.price-info ul li,
.repair-option ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.price-info ul li::before,
.repair-option ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.cta-box {
    background: var(--white);
    border: 3px solid var(--primary-teal);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 12px;
    color:white !important;
}

.cta-box p {
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INSURANCE CONTENT ===== */
.process-steps {
    margin: 48px 0;
}

.process-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

.step-detail {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: 12px;
}

.step-detail .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-detail .step-content {
    flex: 1;
}

.step-detail h3 {
    margin-bottom: 12px;
}

.step-detail ul {
    margin-top: 12px;
}

.insurance-faq {
    margin: 48px 0;
}

.insurance-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.insurance-faq .faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.insurance-faq .faq-item h3 {
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.insurance-faq .faq-item p {
    margin: 0;
}

/* ===== FAQ PAGE ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.category-title {
    color: var(--primary-teal);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-teal);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-teal);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-question.active {
    color: var(--primary-teal);
    background: var(--light-gray);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    padding: 48px;
    background: var(--light-gray);
    border-radius: 12px;
}

.faq-cta h2 {
    margin-bottom: 12px;
}

.faq-cta p {
    color: var(--medium-gray);
    margin-bottom: 24px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--medium-gray);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .price-amount-large .amount {
        font-size: 3.5rem;
    }
    
    .step-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .step-detail .step-number {
        margin: 0 auto 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}


/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: 80px 0;
    min-height: 70vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--success), #1ea85c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.thank-you-content h1 {
    color: var(--success);
    margin-bottom: 16px;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.step-box {
    background: var(--light-gray);
    padding: 32px 24px;
    border-radius: 12px;
}

.step-box .step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-box h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.urgent-contact {
    padding: 24px;
    background: #fff3cd;
    border-radius: 12px;
    border-left: 4px solid var(--warning);
}

.urgent-contact p {
    margin: 0;
    font-size: 1.125rem;
}

.urgent-contact a {
    color: var(--primary-red);
    font-weight: 700;
}


/* ============================================
   DROPDOWN MENU
   ============================================ */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
}

.nav-dropdown > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    border-bottom: none !important;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    border-left-color: var(--primary-teal);
    color: var(--primary-teal);
    padding-left: 25px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 5px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
        font-size: 14px;
    }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn svg {
    width: 30px;
    height: 30px;
}

/* WhatsApp Button */
.floating-whatsapp {
    background: #25D366;
    color: white;
}

.floating-whatsapp:hover {
    background: #20BA5A;
    color:white;
}

/* Contact Button */
.floating-contact {
    background: var(--primary-red);
    color: white;
}

.floating-contact:hover {
    background: #c91f28;
}

/* Tooltip */
.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
   
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-btn::before {
        display: none;
    }
}

/* ============================================
   QUICK CONTACT MODAL
   ============================================ */
.quick-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-contact-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quick-contact-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.quick-contact-header h3 {
    margin: 0;
    color: var(--primary-red);
    font-size: 24px;
}

.quick-contact-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.quick-contact-close:hover {
    background: #f5f5f5;
    color: var(--primary-red);
}

.quick-contact-body {
    padding: 25px;
}

.quick-contact-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.quick-contact-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step-indicator {
    width: 40px;
    border-radius: 50%;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}




.quick-contact-step {
    display: none;
}

.quick-contact-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quick-contact-step h4 {
    margin: 0 0 20px 0;
    color: var(--dark-gray);
    font-size: 18px;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.option-btn {
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-btn:hover {
    border-color: var(--primary-teal);
    background: var(--light-gray);
}

.option-btn.selected {
    border-color: var(--primary-teal);
    background: var(--light-gray);
}

.option-btn svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    stroke: var(--primary-teal);
}

.option-btn span {
    display: block;
    font-weight: 500;
    color: var(--dark-gray);
}

.quick-contact-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 15px;
}

.quick-contact-nav .btn {
    flex: 1;
}

.quick-contact-nav .btn-secondary {
    background: #f5f5f5;
    color: var(--dark-gray);
}

.quick-contact-nav .btn-secondary:hover {
    background: #e0e0e0;
}

@media (max-width: 480px) {
    .quick-contact-options {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-nav {
        flex-direction: column-reverse;
    }
}


/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--dark-gray);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-more {
    padding: 12px 24px;
    border: 2px solid var(--primary-teal);
    background: white;
    color: var(--primary-teal);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cookie-more:hover {
    background: var(--light-gray);
}

.btn-cookie-accept {
    padding: 12px 24px;
    border: none;
    background: var(--primary-teal);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #1a7d6f;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-more,
    .btn-cookie-accept {
        width: 100%;
    }
}


/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail {
    max-width: 900px;
    margin: 0 auto;
}
.container.why-us {
    max-width: 900px;
    margin: 0 auto;
}
.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

.service-detail h2 {
    color: var(--primary-red);
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-detail h3 {
    color: var(--primary-teal);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail h4 {
    color: var(--dark-gray);
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail ul li strong {
    color: var(--primary-teal);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-red), #c91f28);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 24px rgba(230, 43, 52, 0.3);
}

.cta-box h3 {
    color: white;
    margin: 0 0 15px 0;
}

.cta-box p {
    color: white;
    opacity: 0.95;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-red);
}

.cta-buttons .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: var(--primary-teal);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: #1a7d6f;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}


/* ============================================
   FLOATING BUTTONS - UPDATED
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: auto;
    min-width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
}

.floating-btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.floating-btn-text {
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-btn:hover .floating-btn-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 5px;
    z-index: 1;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #20BA5A;
}

.floating-contact {
    background: linear-gradient(135deg, var(--primary-red), #c91f28);
}

.floating-contact:hover {
    background: linear-gradient(135deg, #c91f28, var(--primary-red));
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        min-width: 60px;
    }
    
    .floating-btn-text {
        display: none;
    }
}

/* ============================================
   QUICK CONTACT MODAL - UPDATED
   ============================================ */
.quick-contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.quick-contact-modal.active {
    display: flex;
}

.quick-contact-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quick-contact-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    border-radius: 20px 20px 0 0;
}

.quick-contact-header h3 {
    margin: 0;
    color: white;
    font-size: 24px;
}

.quick-contact-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-contact-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.quick-contact-body {
    padding: 30px;
}

.quick-contact-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    color: var(--dark-gray);
    font-weight: 500;
}

.step-indicator.active .step-number {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.1);
}

.step-indicator.completed .step-number {
    background: var(--primary-red);
    color: white;
}

.step-indicator.completed .step-number::after {
    content: '✓';
}

.step-line {
    width: 50px;
    height: 2px;
    background: var(--light-gray);
    margin: 0 5px;
    z-index:1;
}

.quick-contact-step {
    display: none;
}

.quick-contact-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quick-contact-step h4 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 20px;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.option-btn {
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option-btn:hover {
    border-color: var(--primary-teal);
    background: rgba(36, 165, 143, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(36, 165, 143, 0.2);
}

.option-btn.selected {
    border-color: var(--primary-teal);
    background: var(--primary-teal);
    color: white;
}

.option-btn i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-teal);
}

.option-btn.selected i {
    color: white;
}

.option-btn span {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(36, 165, 143, 0.1);
}

.file-input {
    display: none;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
        border-color: var(--primary-teal);

}

.file-input-label:hover {
    border-color: var(--primary-teal);
    background: rgba(36, 165, 143, 0.05);
}

.file-input-label i {
    font-size: 48px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.file-input-label span {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.file-input-label small {
    color: var(--medium-gray);
    font-size: 12px;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-remove:hover {
    background: #c91f28;
    transform: scale(1.1);
}

.quick-contact-nav {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.quick-contact-nav .btn {
    flex: 1;
}

/* ============================================
   COOKIE CONSENT MODAL - EU COMPLIANT
   ============================================ */
.cookie-consent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.cookie-consent-modal.active {
    display: flex;
}

.cookie-consent-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

.cookie-consent-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.cookie-consent-header i {
    font-size: 32px;
    color: var(--primary-teal);
}

.cookie-consent-header h3 {
    margin: 0;
    flex: 1;
    color: var(--dark-gray);
    font-size: 22px;
}

.cookie-close {
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

.cookie-consent-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.cookie-consent-body > p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-category {
    margin-bottom: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(36, 165, 143, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-category-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex: 1;
}

.cookie-category-info i {
    font-size: 24px;
    color: var(--primary-teal);
    margin-top: 5px;
}

.cookie-category-info h4 {
    margin: 0 0 5px 0;
    color: var(--dark-gray);
    font-size: 16px;
}

.cookie-category-info p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.4;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-teal);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background-color: var(--medium-gray);
    cursor: not-allowed;
}

.cookie-consent-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--light-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent-footer .btn {
    flex: 1 1 auto;
    min-width: 140px;
    white-space: nowrap;
}

.cookie-consent-links {
    padding: 15px 30px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cookie-consent-links a {
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-links a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* ============================================
   COOKIE BANNER - INITIAL
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-banner-content > i {
    font-size: 48px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0 0 5px 0;
    color: var(--dark-gray);
    line-height: 1.5;
}

.cookie-banner-text p:last-child {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
    }
}

/* ============================================
   FOOTER FIXES
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: none !important;
}

.footer-contact li i {
    color: var(--primary-teal);
    margin-right: 10px;
    width: 20px;
}

/* ============================================
   HERO SECTION WITH BACKGROUND
   ============================================ */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ============================================
   MOBILE MENU FIX
   ============================================ */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: auto;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }
    
    .main-nav .dropdown {
        position: static;
    }
    
    .main-nav .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background: var(--light-gray);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .main-nav .dropdown:hover .dropdown-menu,
    .main-nav .dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}


/* ============================================
   DROPDOWN MENU - EXTENDED FOR 20 ITEMS
   ============================================ */
.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-teal) var(--light-gray);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #1a7d6f;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
}

.dropdown-menu a i {
    color: var(--primary-teal);
    width: 20px;
    text-align: center;
}

.dropdown-menu a:hover i {
    color: var(--primary-red);
}

/* Footer grid aanpassing voor 4 kolommen */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   V9 FIXES - Cookie Banner, Step Indicator, Floating Button
   ============================================ */

/* 1. Cookie Banner - Volledig verbergen op mobile */
.cookie-banner {
    bottom: -500px !important; /* Veel verder naar beneden */
    transform: translateY(100%);
}

.cookie-banner.active {
    bottom: 0 !important;
    transform: translateY(0);
}

/* 2. Step Indicator - Verbeterde styling */
.quick-contact-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    gap: 0;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 120px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
}

.step-indicator.active .step-number {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(36, 165, 143, 0.4);
}

.step-indicator.completed .step-number {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

.step-label {
    font-size: 12px;
    color: #999;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-indicator.active .step-label {
    color: var(--primary-teal);
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: var(--primary-teal);
}

/* Step line between indicators */
.step-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin-top: 18px;
    max-width: 60px;
    transition: all 0.3s ease;
}

.step-line.completed {
    background: var(--primary-teal);
}

/* 3. Floating Button - Tekst altijd zichtbaar op desktop */
.floating-btn {
    width: auto !important;
    min-width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.floating-btn i {
    font-size: 24px;
    flex-shrink: 0;
}

.floating-btn-text {
    white-space: nowrap;
    display: inline-block;
    opacity: 1;
    max-width: 200px;
}

.floating-contact {
    background: linear-gradient(135deg, var(--primary-red), #c91f28);
}

.floating-whatsapp {
    background: #25D366;
}

/* Mobile: alleen icoon tonen */
@media (max-width: 768px) {
    .floating-btn {
        width: 55px !important;
        height: 55px;
        padding: 0;
        border-radius: 50%;
        min-width: 55px;
    }
    
    .floating-btn-text {
        display: none !important;
    }
    
    .floating-btn i {
        font-size: 22px;
    }
    
    /* Cookie banner - nog verder naar beneden op mobile */
    .cookie-banner {
        bottom: -600px !important;
    }
    
    .cookie-banner.active {
        bottom: 0 !important;
    }
}

/* Extra fix voor step indicators in modal */
.quick-contact-body .quick-contact-steps {
    padding: 0 10px;
}

.quick-contact-body .step-indicator {
    text-align: center;
}

.quick-contact-body .step-number {
    margin: 0 auto;
}

.quick-contact-body .step-label {
    margin-top: 5px;
    line-height: 1.2;
}


/* ============================================
   V10 FIXES - Step Indicator Shadow + Mobile Menu
   ============================================ */

/* 1. Step Indicator - GEEN shadow */
.step-number {
    box-shadow: none !important;
}

.step-indicator.active .step-number {
    box-shadow: none !important;
}

.step-indicator.completed .step-number {
    box-shadow: none !important;
}

/* 2. Mobile Menu Toggle - Font Awesome icoon */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle i {
    font-size: 24px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover i {
    color: var(--primary-teal);
}

.mobile-menu-toggle.active i {
    color: var(--primary-red);
}

/* Mobile menu visible on mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        padding: 15px 10px;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        display: block;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 0;
        padding: 0;
        display: none;
        max-height: none;
        overflow: visible;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}



/* Dienst pagina: extra SEO tekst in hero */
.hero-seo-text{
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}
.hero-seo-text p{ margin: 0; }

/* ===== DIENSTEN TEMPLATE (uniform) =====
.dienst-hero {
    background-size: cover;
    background-position: center;
    position: relative;
}
/* .dienst-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.35);
} */
.dienst-hero .container{
    position:relative;
    z-index:1;
}
.symptom-list{
    list-style:none;
    margin-top:20px;
}
.symptom-list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:10px 0;
    border-bottom:1px solid var(--border-color);
}
.symptom-list i{
    color: var(--primary-teal);
    margin-top:4px;
}
.benefits-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:18px;
    margin-top:24px;
}
.benefit-item{
    background: var(--white);
    border:1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.benefit-item i{
    color: var(--primary-red);
    margin-bottom:10px;
    font-size:18px;
}
.methods-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap:18px;
    margin-top:24px;
}
.method-card{
    background: var(--white);
    border:1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
}
.method-card i{
    color: var(--primary-teal);
    font-size:18px;
    margin-bottom:10px;
}
.content-section-alt{
    background: #f7fbfa;
}

/* =======================
   Nieuws paginatie
   ======================= */
.pagination{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin-top:28px;
}
.pagination .page-numbers{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
}
.pagination a{
  text-decoration:none;
}
.pagination .page-numbers a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
}
.pagination .page-numbers a.active{
  border-color:rgba(255,255,255,0.35);
  font-weight:700;
}
.pagination .dots{
  padding:0 6px;
  opacity:0.8;
}
.pagination [aria-disabled="true"]{
  opacity:0.5;
  pointer-events:none;
}


/* ============================================
   COOKIE CONSENT MODAL - MOBILE RESPONSIVE
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    .cookie-consent-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .cookie-consent-header {
        padding: 20px;
        gap: 12px;
    }
    
    .cookie-consent-header i {
        font-size: 28px;
    }
    
    .cookie-consent-header h3 {
        font-size: 18px;
    }
    
    .cookie-close {
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
    
    .cookie-consent-body {
        padding: 20px;
    }
    
    .cookie-consent-body > p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cookie-category {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-category-info {
        gap: 12px;
    }
    
    .cookie-category-info i {
        font-size: 20px;
    }
    
    .cookie-category-info h4 {
        font-size: 15px;
    }
    
    .cookie-category-info p {
        font-size: 13px;
    }
    
    .cookie-toggle {
        align-self: flex-start;
    }
    
    .cookie-consent-footer {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .cookie-consent-footer .btn {
        flex: 1 1 100%;
        min-width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .cookie-consent-links {
        padding: 12px 20px;
        gap: 12px;
        flex-direction: column;
    }
    
    .cookie-consent-links a {
        font-size: 13px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .cookie-consent-content {
        width: 98%;
        max-width: 98%;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .cookie-consent-header {
        padding: 16px;
        gap: 10px;
    }
    
    .cookie-consent-header i {
        font-size: 24px;
    }
    
    .cookie-consent-header h3 {
        font-size: 16px;
    }
    
    .cookie-close {
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
    
    .cookie-consent-body {
        padding: 16px;
    }
    
    .cookie-consent-body > p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .cookie-category {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .cookie-category-info i {
        font-size: 18px;
    }
    
    .cookie-category-info h4 {
        font-size: 14px;
    }
    
    .cookie-category-info p {
        font-size: 12px;
    }
    
    .cookie-toggle {
        width: 50px;
        height: 26px;
    }
    
    .cookie-slider:before {
        height: 18px;
        width: 18px;
    }
    
    .cookie-toggle input:checked + .cookie-slider:before {
        transform: translateX(24px);
    }
    
    .cookie-consent-footer {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .cookie-consent-footer .btn {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .cookie-consent-links {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .cookie-consent-links a {
        font-size: 12px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .cookie-consent-header h3 {
        font-size: 14px;
    }
    
    .cookie-category-info h4 {
        font-size: 13px;
    }
    
    .cookie-consent-footer .btn {
        font-size: 12px;
        padding: 9px 12px;
    }
}
.trust-bar {
    min-height: 44px;
}

.news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}