/* ========================================
   VOLTUX - MAIN STYLES (NO NAVBAR)
   Colors: Blue #0090e3 | Green #2DFF9A | White #ffffff
   ======================================== */

:root {
    --blue: #0090e3;
    --blue-dark: #0077be;
    --blue-light: #33a8ea;
    --green: #2DFF9A;
    --green-dark: #1ee885;
    --dark: #0a0a1a;
    --light: #f5f7ff;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 144, 227, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 144, 227, 0.15);
    --shadow-green: 0 8px 30px rgba(45, 255, 154, 0.3);
    --shadow-green-lg: 0 12px 40px rgba(45, 255, 154, 0.4);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 70px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   BUTTONS (Main Site Only)
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 144, 227, 0.3);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 144, 227, 0.4);
}

/* 🟢 GRATIS OFFERTE BUTTON - Green with pulse */
.btn-offerte {
    background: var(--green);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
    animation: pulse-green 2s ease-in-out infinite;
}

.btn-offerte::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-offerte:hover::before { left: 100%; }

.btn-offerte:hover {
    background: var(--green-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-green-lg);
    animation: none;
}

.btn-offerte:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes pulse-green {
    0%, 100% { box-shadow: var(--shadow-green); }
    50% { box-shadow: 0 8px 30px rgba(45, 255, 154, 0.5), 0 0 20px rgba(45, 255, 154, 0.3); }
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-secondary {
    background: var(--blue-light);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 144, 227, 0.3);
}

.btn-secondary:hover { background: var(--blue); transform: translateY(-2px); }

.btn-large { padding: 16px 36px; font-size: 18px; }

.btn-small { padding: 8px 16px; font-size: 14px; }

/* ========================================
   HERO SECTION - WHITE BACKGROUND
   ======================================== */

.hero {
    background: var(--white);
    color: var(--dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--blue);
    opacity: 0.06;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 144, 227, 0.1);
    color: var(--blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.1; }

.hero h1 span { color: var(--blue); }

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 144, 227, 0.1);
}

.stat-item h3 { font-size: 32px; color: var(--blue); }

.stat-item p { font-size: 14px; color: var(--gray); margin: 0; }

.hero-image { position: relative; }

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 144, 227, 0.2);
    font-size: 80px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    color: var(--dark);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid rgba(0, 144, 227, 0.1);
}

.floating-card.card-1 {
    top: 20px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 40px;
    right: -10px;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 { font-size: 36px; margin-bottom: 15px; }

.section-header p { color: var(--gray); font-size: 18px; }

/* ========================================
   SERVICES
   ======================================== */

.services { padding: 80px 0; background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(0, 144, 227, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 22px; margin-bottom: 12px; }

.service-card p { color: var(--gray); margin-bottom: 20px; }

.service-link {
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover { gap: 10px; }

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works { padding: 80px 0; background: var(--light); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 144, 227, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 { margin-bottom: 10px; }

.step-card p { color: var(--gray); font-size: 15px; }

/* ========================================
   LOCATIONS
   ======================================== */

.locations { padding: 80px 0; background: var(--white); }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location-card {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.location-card h4 { color: var(--blue); margin-bottom: 5px; }

.location-card p { font-size: 14px; color: var(--gray); }

/* ========================================
   QUOTE SECTION
   ======================================== */

.quote-section {
    background: var(--blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.quote-section h2 { font-size: 36px; margin-bottom: 15px; }

.quote-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    color: var(--dark);
    text-align: left;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 144, 227, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rate-limit-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.rate-limit-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust { padding: 60px 0; background: var(--light); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-item { display: flex; align-items: flex-start; gap: 15px; }

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-item h4 { margin-bottom: 5px; }

.trust-item p { color: var(--gray); font-size: 14px; }

/* ========================================
   FAQ
   ======================================== */

.faq { padding: 80px 0; background: var(--white); }

.faq-list { max-width: 800px; margin: 40px auto 0; }

.faq-item { border-bottom: 1px solid #e2e8f0; padding: 25px 0; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-question:hover { color: var(--blue); }

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--blue);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 15px; color: var(--green); }

.footer-brand p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; }

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-links a:hover { background: var(--green); color: var(--dark); }

.footer-column h4 { margin-bottom: 20px; color: var(--green); }

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 10px; }

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-column a:hover { color: var(--green); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }

    .hero h1 { font-size: 32px; }

    .hero-stats { justify-content: center; }

    .hero-image { display: none; }

    .btn-offerte { padding: 16px 32px; font-size: 18px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }

    .social-links { justify-content: center; }

    body { padding-top: 60px; }
}

/* ========================================
   HOME PAGE ENHANCEMENTS
   ======================================== */

/* Service card price tag */
.service-price {
    margin: 15px 0;
}

.price-tag {
    display: inline-block;
    background: var(--green);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-plan:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    gap: 10px;
}

/* ========================================
   DIENSTEN PAGE ENHANCEMENTS
   ======================================== */

.page-header {
    background: var(--blue);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.diensten-page .services-grid {
    margin-top: 40px;
}

.diensten-page .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-meta {
    margin: 10px 0;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gray);
    background: var(--light);
    padding: 4px 10px;
    border-radius: 6px;
}

.service-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 15px 0 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 144, 227, 0.1);
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
}

.price-label {
    font-size: 14px;
    color: var(--gray);
}

.price-on-request {
    font-size: 18px;
    color: var(--gray);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Info Banner */
.info-banner {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
}

.info-banner-content {
    max-width: 600px;
    margin: 0 auto;
}

.info-banner h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-banner p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .page-header h1 { font-size: 28px; }
    .page-header { padding: 100px 0 40px; }
    .price-amount { font-size: 22px; }
}