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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f6ba1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-item.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item.clickable:hover {
    color: #25D366;
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(248, 249, 250, 0.8) 0%, rgba(248, 249, 250, 0.5) 50%, rgba(248, 249, 250, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1cm; /* Move title 1cm lower */
}

.hero-title-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.hero-title-text {
    flex: 1;
}

.hero-title-video {
    flex: 1;
    max-width: 400px;
    margin-top: 100px;
}

.hero-text {
    text-align: left;
}

.hero-title {
    margin-top: 100px;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #3498db;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-title-video {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-title-video iframe,
.hero-title-video video {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-title-video .video-placeholder {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    border: 2px dashed #3498db;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
}

.hero-title-video .video-placeholder i {
    font-size: 3rem;
    color: #3498db;
    opacity: 0.8;
}

.hero-title-video .video-placeholder p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Problems Section */
.problems {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #666;
    font-size: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: white;
}

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

.solution-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
}

.solution-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button {
    background: #3498db;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.video-title {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-title h5 {
    margin: 0;
    color: #3498db;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
}

.testimonial-stats span {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
}

.service-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #fff 0%, #f7fbff 100%);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.feature i {
    color: #27ae60;
}

.service-pricing {
    margin: 1.5rem 0;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-option.recommended {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

/* Custom individual package styling */
.service-card.custom-package {
    border-color: #9b59b6;
    background: linear-gradient(135deg, #fff 0%, #fcf4ff 100%);
}

.service-card.custom-package:hover {
    border-color: #8e44ad;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.15);
}

.service-card.custom-package .service-badge {
    background: #9b59b6;
}

.service-card.custom-package .service-icon {
    color: #9b59b6;
}

.service-pricing.individual {
    text-align: center;
    margin: 1.5rem 0;
}

.service-pricing.individual .price-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9b59b6;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.recommended .period {
    color: rgba(255, 255, 255, 0.8);
}

.savings {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

/* Merchandise Section */
.merchandise {
    padding: 5rem 0;
    background: #f8f9fa;
}

.merchandise-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    border-color: #3498db;
    background: #3498db;
    color: white;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn,
.add-to-cart-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover,
.add-to-cart-btn:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: white;
}

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

.booking-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.benefit i {
    color: #27ae60;
    font-size: 1.2rem;
}

.calendly-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
}

.calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.calendly-placeholder i {
    font-size: 3rem;
    color: #3498db;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-items {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: #3498db;
    width: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background: white;
    padding: 0 0.25rem;
    color: #3498db;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: #3498db;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.product-images img {
    width: 100%;
    border-radius: 8px;
}

.product-options {
    margin: 1rem 0;
}

.product-options label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-options select {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch:hover {
    border-color: #3498db;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-top: 0.5cm; /* Reduce top margin on mobile */
    }
    
    .hero-title-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-video {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-background {
        width: 100%;
        opacity: 0.4;
    }
    
    .hero-background::after {
        background: linear-gradient(180deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.8) 50%, rgba(248, 249, 250, 0.7) 100%);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .problems-grid,
    .solutions-grid,
    .testimonials-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .merchandise-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .problem-card,
    .solution-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Custom Video Controls */
.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Enable video controls for testimonials */
.video-container video::-webkit-media-controls {
    display: block !important;
}

.video-container video::-webkit-media-controls-enclosure {
    display: block !important;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

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

/* ============================================
   TRUST SECTIONS (test.html only)
   ============================================ */

/* ================================================
   TRUST STRIP — Zwischen Hero und Problems
   ================================================ */
.trust-strip {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(52,152,219,0.3);
}
.trust-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-strip-item {
    text-align: center;
    color: white;
    padding: 0.5rem 3rem;
    position: relative;
}
.trust-strip-item + .trust-strip-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.trust-strip-stars {
    color: #f1c40f;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.25rem;
}
.trust-strip-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #3498db;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.trust-strip-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}
@media (max-width: 640px) {
    .trust-strip-item { padding: 0.75rem 1.5rem; }
    .trust-strip-item + .trust-strip-item::before { display: none; }
    .trust-strip-number { font-size: 1.8rem; }
}

/* Lizenzen & Sprachnachrichten im dunklen Banner */
.strip-block-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 3rem 0 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.strip-block-title i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(52,152,219,0.35);
}
.licenses-grid-dark .license-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
}
.licenses-grid-dark .license-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(52,152,219,0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.licenses-grid-dark .license-text {
    color: rgba(255,255,255,0.9);
}
.strip-voices .voice-message-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

/* ================================================
   WHATSAPP TRUST SECTION — Zwischen Problem & Lösung
   ================================================ */
.whatsapp-trust {
    background: linear-gradient(180deg, #f8fafc 0%, #e8f4f8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.whatsapp-trust::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.whatsapp-trust .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.whatsapp-trust .section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}
.whatsapp-trust .section-header .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}
.whatsapp-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .whatsapp-container { grid-template-columns: 1fr; gap: 2.5rem; }
}
.whatsapp-phone {
    background: #ece5dd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.18),
        0 8px 20px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.5);
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.08);
}
.wa-header {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    color: white;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.wa-back-arrow { font-size: 0.85rem; opacity: 0.75; cursor: pointer; }
.wa-avatar-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}
.wa-contact-info { flex: 1; line-height: 1.2; }
.wa-contact-name { font-weight: 600; font-size: 0.9rem; }
.wa-contact-status { font-size: 0.7rem; opacity: 0.75; color: #a8e6c0; }
.wa-icons { display: flex; gap: 1.1rem; opacity: 0.75; font-size: 1rem; }
.wa-messages {
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #ece5dd;
    min-height: 280px;
}
.wa-message.wa-received {
    display: flex;
    justify-content: flex-start;
}
.wa-bubble {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 0.55rem 0.8rem 0.4rem;
    max-width: 88%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    position: relative;
}
.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    border: 6px solid transparent;
    border-top-color: #fff;
    border-left: none;
}
.wa-bubble p {
    margin: 0;
    font-size: 0.82rem;
    color: #2c2c2c;
    line-height: 1.55;
}
.wa-time {
    display: block;
    font-size: 0.67rem;
    color: #999;
    text-align: right;
    margin-top: 0.25rem;
}
.whatsapp-cta {
    text-align: center;
    padding: 1rem 0;
}
.wa-cta-icon {
    font-size: 4.5rem;
    color: #25d366;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(37,211,102,0.25));
}
.whatsapp-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}
.whatsapp-cta > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* ================================================
   GROSSE TRUST AREA — Nach Testimonials
   ================================================ */
.trust-area {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
}
.trust-area > .container > .section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.trust-area > .container > .section-header h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}
.trust-area > .container > .section-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Trust Block (Shared Wrapper) */
.trust-block {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.trust-block:last-child { margin-bottom: 0; }
.trust-block-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f0f4f8;
}
.trust-block-title i {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.trust-block-subtitle {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    margin-top: 0.25rem;
}
.trust-placeholder-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b7770d;
    font-size: 0.82rem;
    margin-top: 1.5rem;
    background: #fffbeb;
    padding: 0.6rem 1rem;
    border-left: 3px solid #f59e0b;
    border-radius: 0 6px 6px 0;
}

/* ---- Block 1: Video Interviews ---- */
.video-interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .video-interviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .video-interviews-grid { grid-template-columns: 1fr; } }
.video-interview-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    background: #1a1a2e;
}
.video-interview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.youtube-placeholder {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 0.6rem;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.youtube-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.yt-play-icon {
    font-size: 3.5rem;
    color: #ff4444;
    filter: drop-shadow(0 2px 8px rgba(255,0,0,0.4));
    z-index: 1;
}
.yt-label {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    z-index: 1;
    line-height: 1.5;
}
.yt-label small { font-size: 0.72rem; color: rgba(255,255,255,0.45); display: block; }
.video-caption {
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.07);
    margin: 0;
    letter-spacing: 0.2px;
}

/* ---- Block 2: Google Reviews ---- */
.google-rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid #e8eaf0;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.google-overall {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.google-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.google-stars-row {
    font-size: 1.3rem;
    color: #fbbc04;
    letter-spacing: 2px;
    display: block;
}
.google-count {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 0.2rem;
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.1rem;
}
.google-review-card {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.google-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.gr-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.gr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.gr-meta { flex: 1; }
.gr-name { font-weight: 700; font-size: 0.9rem; color: #1a1a2e; }
.gr-stars { color: #fbbc04; font-size: 0.82rem; letter-spacing: 1px; margin-top: 1px; }
.gr-google-icon { color: #4285f4; font-size: 1rem; opacity: 0.8; }
.gr-text {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* ---- Block 3: Before / After ---- */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.ba-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: #1a1a2e;
    transition: transform 0.25s;
}
.ba-card:hover { transform: translateY(-4px); }
.ba-images {
    display: flex;
    align-items: stretch;
    background: #131929;
    position: relative;
    min-height: 170px;
}
.ba-side {
    flex: 1;
    text-align: center;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ba-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}
.ba-before .ba-label { color: #e74c3c; }
.ba-after .ba-label { color: #27ae60; }
.ba-placeholder {
    width: 90px;
    height: 110px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: rgba(255,255,255,0.15);
    border: 2px dashed rgba(255,255,255,0.12);
}
.ba-placeholder.after {
    background: rgba(39,174,96,0.1);
    border-color: rgba(39,174,96,0.3);
    color: rgba(39,174,96,0.3);
}
.ba-arrow {
    display: flex;
    align-items: center;
    color: #3498db;
    font-size: 1.1rem;
    padding: 0 0.25rem;
    flex-shrink: 0;
}
.ba-result {
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #2ecc71;
    padding: 0.85rem 1rem 0.2rem;
    letter-spacing: -0.3px;
}
.ba-name {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    padding: 0 1rem 0.85rem;
    margin: 0;
}

/* ---- Block 4: Licenses ---- */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.85rem;
}
.license-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.license-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.1);
    border-color: #bcd6f0;
}
.license-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3498db, #1f6bab);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(52,152,219,0.3);
}
.license-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

/* ---- Block 5: Voice Messages ---- */
.voice-messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.1rem;
}
.voice-message-card {
    background: linear-gradient(135deg, #1a1a2e, #212140);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.vm-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}
.vm-info { flex: 1; min-width: 0; }
.vm-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}
.vm-equalizer {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 28px;
    margin-bottom: 0.75rem;
}
.vm-equalizer span {
    flex: 1;
    background: #25d366;
    border-radius: 2px;
    transform-origin: bottom;
    animation: equalizer 1.2s ease-in-out infinite alternate;
}
.vm-equalizer span:nth-child(1)  { height: 35%; animation-delay: 0.0s; }
.vm-equalizer span:nth-child(2)  { height: 75%; animation-delay: 0.1s; }
.vm-equalizer span:nth-child(3)  { height: 55%; animation-delay: 0.2s; }
.vm-equalizer span:nth-child(4)  { height: 95%; animation-delay: 0.3s; }
.vm-equalizer span:nth-child(5)  { height: 45%; animation-delay: 0.4s; }
.vm-equalizer span:nth-child(6)  { height: 80%; animation-delay: 0.5s; }
.vm-equalizer span:nth-child(7)  { height: 65%; animation-delay: 0.6s; }
.vm-equalizer span:nth-child(8)  { height: 40%; animation-delay: 0.7s; }
.vm-equalizer span:nth-child(9)  { height: 90%; animation-delay: 0.8s; }
.vm-equalizer span:nth-child(10) { height: 30%; animation-delay: 0.9s; }
@keyframes equalizer {
    from { transform: scaleY(0.25); opacity: 0.6; }
    to   { transform: scaleY(1);    opacity: 1; }
}
.vm-audio {
    width: 100%;
    height: 28px;
    accent-color: #25d366;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .trust-block { padding: 2rem 1.25rem; }
    .trust-block-title { font-size: 1.25rem; }
    .video-interviews-grid { grid-template-columns: 1fr; }
    .whatsapp-phone { max-width: 100%; }
}
