/* static/css/home/home.css */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #e84e7e;
    --secondary-color: #6c63ff;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --transition: all 0.3s ease;
}

/* ========== Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ========== Navigatiebalk ========== */
.navbar-custom {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-custom .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
    color: var(--primary-color);
}

.navbar-custom .navbar-toggler {
    border: none;
    outline: none;
    padding: 4px 8px;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-custom .btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
    text-decoration: none;
}

.navbar-custom .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 78, 126, 0.4);
    background: #d41f6b;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, var(--primary-color) 50%, #f093fb 75%, #4facfe 100%);
    position: relative;
    padding: 120px 20px 60px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: white;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.4s both;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary-color);
    color: white !important;
    border: 2px solid white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
    z-index: 2;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-hero:hover::before {
    animation-duration: 1s;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

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

.hero-video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.section-header h2.primary-color {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ========== Services Section ========== */
.services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.service-item-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-item-row:nth-child(1) { animation-delay: 0.1s; }
.service-item-row:nth-child(2) { animation-delay: 0.2s; }
.service-item-row:nth-child(3) { animation-delay: 0.3s; }
.service-item-row:nth-child(4) { animation-delay: 0.4s; }

.service-item-row:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1.2;
    min-width: 0;
}

.service-text h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.875rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-text h3 a {
    text-decoration: none;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-text h3 a:hover {
    gap: 1rem;
}

.service-text h3 a i {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.service-text h3 a:hover i {
    transform: translateX(5px);
}

.service-text > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

.service-image-container {
    flex: 0.85;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.service-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.service-image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    background: #e9ecef;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== Service Feature Box ========== */
.service-feature-box {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--primary-color);
}

.service-feature-box .feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.625rem;
}

.service-feature-box .feature-label i {
    font-size: 1rem;
}

.service-feature-box p {
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
}

.service-feature-box p:last-of-type:not(.feature-disclaimer):not(.feature-info) {
    margin-bottom: 0;
}

.service-feature-box em {
    color: var(--text-dark);
    font-style: italic;
}

.service-feature-box .feature-disclaimer,
.service-feature-box .feature-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 0 6px 6px 0;
    padding: 10px 12px;
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.service-feature-box .feature-disclaimer {
    background: rgba(255, 193, 7, 0.12);
    border-left: 3px solid #f0ad4e;
    color: #856404;
}

.service-feature-box .feature-info {
    background: rgba(108, 99, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
    color: #4a4a8a;
}

.service-feature-box .feature-disclaimer i,
.service-feature-box .feature-info i {
    margin-top: 2px;
    flex-shrink: 0;
}

.service-feature-box .feature-disclaimer a {
    color: #856404;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.service-feature-box .feature-disclaimer a:hover {
    color: var(--primary-color);
}

/* ========== About Section ========== */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out;
}

.about-content .highlight-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
    animation: fadeInLeft 1s ease-out;
}

.about .btn-hero {
    border-color: var(--primary-color);
}

.about .btn-hero:hover {
    background: white;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .btn-hero:hover::before {
    animation-duration: 2.5s;
}

.about-features {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    animation: fadeInRight 1s ease-out;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-feature-item:last-child {
    margin-bottom: 0;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.about-feature-text h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-feature-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== Pricing Section ========== */
.pricing {
    padding: 5rem 0;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-card .price-range {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-card p:not(.price-range) {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-card ul li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.btn-pricing {
    background: linear-gradient(135deg, var(--primary-color), #d41f6b);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pricing:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #d41f6b, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,78,126,0.4);
}

/* ========== Contact Section ========== */
.contact {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-dark {
    background: var(--dark-color, #1a1a1a);
    color: rgba(255,255,255,0.7);
}

.contact-dark .section-header h2 {
    color: var(--primary-color, #e84e7e);
}

.contact-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.contact-option {
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-color: var(--primary-color, #e84e7e);
}

.contact-option .icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-color, #e84e7e);
    margin-bottom: 1.5rem;
    height: 50px;
}

.contact-option h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-option p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-contact-option {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-option.primary {
    background: var(--primary-color, #e84e7e);
    color: white;
    box-shadow: 0 5px 20px rgba(232, 78, 126, 0.3);
}

.btn-contact-option.primary:hover {
    background: #d41f6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 78, 126, 0.4);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #d41f6b);
    color: white !important;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d41f6b, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,78,126,0.4);
}

.alert-success {
    background: var(--primary-color);
    color: white;
    border-color: #d41f6b;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    animation: slideDown 0.5s ease-out;
}

/* ========== Footer ========== */
footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px) rotate(360deg);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-details-footer li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-details-footer i {
    color: var(--primary-color);
    min-width: 20px;
    transition: transform 0.3s ease;
}

.contact-details-footer li:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   RESPONSIVE - GECONSOLIDEERD (één blok per breakpoint)
   ========================================================================== */

/* ========== Tablet (max-width: 991px) ========== */
@media (max-width: 991px) {
    /* Navbar */
    .navbar-custom .nav-link {
        margin: 10px 0;
        padding: 8px 0;
        text-align: center;
    }
    .navbar-custom .nav-link::after {
        bottom: -2px;
    }
    .navbar-custom .btn-nav {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Services */
    .service-item-row,
    .service-item-row:nth-child(even) {
        flex-direction: column !important;
        padding: 2rem 1.5rem;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .service-text,
    .service-image-container {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .service-text {
        order: 1;
        align-self: stretch !important;
        margin-bottom: 0 !important;
    }

    .service-image-container {
        order: 2;
        margin-top: 1.25rem;
        margin-bottom: 0;
        align-self: stretch !important;
    }

    .service-image-container .service-promo {
        margin-top: 1.25rem;
    }

    /* About - DE FIX */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .about-content {
        order: 1;
    }

    .about-features {
        order: 2;
        margin-top: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ========== Mobile (max-width: 768px) ========== */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 100px 20px 40px;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* Sections */
    .services,
    .about,
    .pricing,
    .contact {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Services */
    .service-item-row {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-text h3 {
        font-size: 1.4rem;
    }

    /* About */
    .about-features {
        padding: 1.5rem;
    }

    .about-feature-item {
        padding: 1rem;
    }

    /* Pricing */
    .pricing-grid {
        gap: 1.5rem;
    }

    /* Contact */
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-option p {
        flex-grow: 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ========== Small Mobile (max-width: 576px) ========== */
@media (max-width: 576px) {
    /* Hero */
    .hero {
        padding: 90px 15px 30px;
        min-height: 100vh;
    }

    /* Buttons */
    .btn-hero,
    .btn-pricing,
    .btn-submit {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    /* Services */
    .service-item-row {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .service-text h3 {
        font-size: 1.25rem;
    }

    .service-image-container img {
        border-radius: 8px;
    }

    .video-wrapper,
    .video-wrapper iframe {
        border-radius: 8px;
    }

    .service-feature-box {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .service-feature-box .feature-label {
        font-size: 0.95rem;
    }

    .service-feature-box p {
        font-size: 0.85rem;
    }

    .service-feature-box .feature-disclaimer,
    .service-feature-box .feature-info {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    /* About */
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-feature-icon {
        margin-bottom: 1rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    /* Contact */
    .contact-form-container {
        padding: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 3rem 0 1.5rem;
    }

    /* Touch targets */
    .navbar-custom .nav-link,
    .btn-nav,
    .btn-hero,
    .btn-pricing,
    .btn-submit,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}