* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 200, 255, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { width: 4px; height: 4px; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 8px; height: 8px; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { width: 5px; height: 5px; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 4px; height: 4px; left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { width: 6px; height: 6px; left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { width: 5px; height: 5px; left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-10vh) rotate(180deg);
    }
}

/* Header */
.wls-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.wls-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.wls-logo {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #8B5CF6 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.wls-logo img {
    height: 50px !important;
    width: auto !important;
    transition: all 0.3s ease !important;
}

.wls-logo:hover {
    transform: scale(1.05) !important;
}

.wls-header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.wls-header-nav a {
    color: #333 !important;
    text-decoration: none !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    position: relative !important;
    overflow: hidden !important;
}

.wls-header-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    transition: left 0.3s ease;
    z-index: -1;
}

.wls-header-nav a:hover::before,
.wls-header-nav a.active::before {
    left: 0;
}

.wls-header-nav a:hover,
.wls-header-nav a.active {
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3) !important;
}

/* Main Content */
.wls-main {
    margin-top: 80px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 30px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 20px !important;
    padding: 40px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    min-height: calc(100vh - 120px) !important;
}

.wls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wls-section {
    display: none;
    padding: 40px 0;
    animation: fadeInUp 0.6s ease forwards;
}

.wls-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.wls-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(109, 40, 217, 0.95)) !important;
    color: white;
    text-align: center;
    padding: 100px 40px;
    margin: 0 -20px 40px -20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3) !important;
}

.wls-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,') no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

.wls-hero-content {
    position: relative;
    z-index: 2;
}

.wls-hero h1 {
    font-size: 4rem !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2) !important;
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
}

.wls-hero p {
    font-size: 1.3rem !important;
    margin-bottom: 2.5rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: white !important;
    line-height: 1.7 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
    opacity: 0;
    animation: slideUp 1s ease 0.8s forwards;
}

.wls-btn {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 18px 40px !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
    opacity: 0;
    animation: slideUp 1s ease 1.1s forwards;
}

.wls-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    color: white !important;
    text-decoration: none !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Layout */
.wls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wls-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    padding: 40px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    backdrop-filter: blur(15px) !important;
    position: relative !important;
    overflow: hidden !important;
}

.wls-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    transition: left 0.4s ease;
    z-index: -1;
}

.wls-card:hover::before {
    left: 0;
}

.wls-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2) !important;
    border-color: #8B5CF6 !important;
}

.wls-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.wls-card h3 {
    margin-bottom: 15px !important;
    color: #1a1a1a !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
}

.wls-card p {
    color: #555 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-size: 1.05rem !important;
}

/* Services */
.wls-service {
    background: rgba(249, 250, 251, 0.95) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    border-left: 5px solid #8B5CF6 !important;
    margin-bottom: 25px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.wls-service:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15) !important;
}

.wls-service h3 {
    color: #8B5CF6 !important;
    margin-bottom: 20px !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
}

.wls-service p {
    color: #444 !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
    font-size: 1.05rem !important;
}

.wls-service ul {
    color: #444 !important;
    line-height: 1.7 !important;
    margin: 20px 0 !important;
    padding-left: 25px !important;
}

.wls-service li {
    margin-bottom: 8px !important;
}

/* Form Styles */
.wls-form {
    max-width: 700px;
    margin: 40px auto;
    background: rgba(249, 250, 251, 0.95) !important;
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.wls-form-group {
    margin-bottom: 25px;
}

.wls-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
}

.wls-form-group input,
.wls-form-group textarea,
.wls-form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
}

.wls-form-group input:focus,
.wls-form-group textarea:focus,
.wls-form-group select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.wls-form-group textarea {
    height: 140px;
    resize: vertical;
}

.wls-submit {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA) !important;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.wls-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* Team Member */
.wls-member {
    text-align: center;
    background: rgba(249, 250, 251, 0.95) !important;
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}

.wls-member:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15) !important;
}

.wls-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

/* Legal Pages */
.wls-legal {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 25px !important;
    padding: 50px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.wls-legal h1 {
    color: #1a1a1a !important;
    font-size: 2.8rem !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    font-weight: 800 !important;
}

.wls-legal h2 {
    color: #8B5CF6 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    font-size: 1.9rem !important;
    font-weight: 700 !important;
}

.wls-legal h3 {
    color: #1a1a1a !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
}

.wls-legal p {
    color: #444 !important;
    margin-bottom: 18px !important;
    font-size: 1.05rem !important;
}

.wls-legal ul {
    color: #444 !important;
    line-height: 1.7 !important;
    margin: 20px 0 !important;
    padding-left: 25px !important;
}

/* Section Titles */
.wls-main h2 {
    font-size: 3rem !important;
    margin-bottom: 25px !important;
    color: #1a1a1a !important;
    text-align: center !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #1a1a1a, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wls-main > .wls-container > p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    color: #555 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Sub Navigation */
.wls-sub-nav {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(248, 250, 252, 0.8);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.wls-sub-nav button {
    background: rgba(102, 102, 102, 0.1);
    color: #666;
    border: 2px solid rgba(102, 102, 102, 0.2);
    padding: 12px 25px;
    margin: 8px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.wls-sub-nav button.active,
.wls-sub-nav button:hover {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.wls-sub-section {
    display: none;
}

.wls-sub-section.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wls-header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 15px 20px;
    }
    
    .wls-logo {
        font-size: 1.3rem !important;
    }
    
    .wls-logo img {
        height: 40px !important;
    }
    
    .wls-header-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wls-header-nav a {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
    
    .wls-main {
        margin-top: 140px !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 20px !important;
    }
    
    .wls-hero {
        padding: 60px 20px !important;
        margin: 0 -10px 30px -10px !important;
    }
    
    .wls-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .wls-hero p {
        font-size: 1.1rem !important;
    }
    
    .wls-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wls-main h2 {
        font-size: 2.2rem !important;
    }
    
    .wls-sub-nav button {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
    
    .wls-form {
        padding: 30px 20px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* MEGA LOGO SECTION */
.wls-mega-logo-section {
    margin-top: 80px;
    padding: 0;
    position: relative;
}

.wls-mega-logo-container {
    margin: 0 -40px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.wls-mega-logo-backdrop {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(167, 139, 250, 0.90), rgba(109, 40, 217, 0.95));
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.4);
}

.wls-mega-logo-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: logoBackgroundShift 8s ease-in-out infinite;
}

@keyframes logoBackgroundShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
        opacity: 1; 
    }
}

.wls-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.wls-float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.wls-float-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.wls-float-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.wls-float-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: floatMove1 12s ease-in-out infinite;
}

.wls-float-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation: floatMove2 15s ease-in-out infinite;
}

.wls-float-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation: floatMove3 10s ease-in-out infinite;
}

.wls-float-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    animation: floatMove4 18s ease-in-out infinite;
}

.wls-float-5 {
    top: 70%;
    right: 10%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.12);
    animation: floatMove5 14s ease-in-out infinite;
}

@keyframes floatMove1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, -40px) rotate(180deg); }
    75% { transform: translate(-30px, 20px) rotate(270deg); }
}

@keyframes floatMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 30px) scale(1.2); }
    66% { transform: translate(35px, -25px) scale(0.8); }
}

@keyframes floatMove3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(20px, -30px) rotate(180deg) scale(1.3); }
}

@keyframes floatMove4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(15px, -25px) rotate(72deg); }
    40% { transform: translate(-20px, -15px) rotate(144deg); }
    60% { transform: translate(-25px, 20px) rotate(216deg); }
    80% { transform: translate(10px, 25px) rotate(288deg); }
}

@keyframes floatMove5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-15px, 20px) rotate(120deg); }
    66% { transform: translate(20px, -15px) rotate(240deg); }
}

.wls-mega-logo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.wls-mega-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.wls-mega-logo-img {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 3;
    filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
    }
}

.wls-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.wls-logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoPulse 3s ease-out infinite;
    z-index: 0;
}

@keyframes logoPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.wls-mega-logo-text h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.wls-mega-logo-text p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    letter-spacing: 1px;
}

.wls-logo-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    margin: 20px auto;
    border-radius: 2px;
    animation: separatorGlow 2s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.wls-logo-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive für Mega Logo */
@media (max-width: 768px) {
    .wls-mega-logo-backdrop {
        padding: 60px 20px;
        margin: 0 -10px;
    }
    
    .wls-mega-logo-img {
        width: 150px;
    }
    
    .wls-mega-logo-text h3 {
        font-size: 2.2rem;
    }
    
    .wls-mega-logo-text p {
        font-size: 1.1rem;
    }
    
    .wls-logo-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .wls-float-1, .wls-float-2, .wls-float-3, .wls-float-4 {
        display: none;
    }
    
    .wls-float-5 {
        border-left-width: 20px;
        border-right-width: 20px;
        border-bottom-width: 35px;
    }
}
/* LOGO ALS HINTERGRUNDBILD */
.wls-mega-logo-backdrop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background-image: url('https://whitelabelsolutions.de/wp-content/uploads/2025/09/WhiteLabelLogo-scaled-e1758005797613.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: logoBackgroundFloat 8s ease-in-out infinite;
    filter: brightness(1.2);
}

@keyframes logoBackgroundFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.15;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
        opacity: 0.25;
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .wls-mega-logo-backdrop::after {
        width: 250px;
        height: 250px;
        opacity: 0.12;
    }
}
/* ERWEITERTE RESPONSIVE VERBESSERUNGEN */

/* Tablet Landscape (1024px und kleiner) */
@media (max-width: 1024px) {
    .wls-main {
        margin-left: 15px !important;
        margin-right: 15px !important;
        padding: 30px !important;
    }
    
    .wls-hero {
        padding: 80px 30px !important;
    }
    
    .wls-hero h1 {
        font-size: 3.5rem !important;
    }
}

/* Tablet Portrait (768px und kleiner) */
@media (max-width: 768px) {
    .wls-header {
        padding: 10px 0 !important;
    }
    
    .wls-header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 15px 20px;
    }
    
    .wls-logo {
        font-size: 1.3rem !important;
    }
    
    .wls-logo img {
        height: 40px !important;
    }
    
    .wls-header-nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wls-header-nav a {
        padding: 8px 15px !important;
        font-size: 14px !important;
    }
    
    .wls-main {
        margin-top: 140px !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 20px !important;
    }
    
    .wls-hero {
        padding: 60px 20px !important;
        margin: 0 -10px 30px -10px !important;
    }
    
    .wls-hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .wls-hero p {
        font-size: 1.1rem !important;
    }
    
    .wls-btn {
        padding: 15px 25px !important;
        font-size: 1rem !important;
    }
    
    .wls-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wls-card {
        padding: 30px 20px !important;
    }
    
    .wls-main h2 {
        font-size: 2.2rem !important;
    }
    
    .wls-service {
        padding: 30px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .wls-form {
        padding: 30px 20px;
        margin: 30px 10px;
    }
    
    .wls-sub-nav {
        padding: 20px 15px;
    }
    
    .wls-sub-nav button {
        display: block;
        width: 100%;
        margin: 8px 0;
        padding: 12px;
    }
    
    .wls-legal {
        padding: 30px 20px !important;
    }
}

/* Mobile Landscape (576px und kleiner) */
@media (max-width: 576px) {
    .wls-hero h1 {
        font-size: 2rem !important;
    }
    
    .wls-hero p {
        font-size: 1rem !important;
    }
    
    .wls-main h2 {
        font-size: 1.8rem !important;
    }
    
    .wls-card h3 {
        font-size: 1.4rem !important;
    }
    
    .wls-icon {
        font-size: 3rem !important;
    }
    
    .wls-form-group input,
    .wls-form-group textarea,
    .wls-form-group select {
        padding: 15px;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

/* Sehr kleine Handys (480px und kleiner) */
@media (max-width: 480px) {
    .wls-header-nav a {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    
    .wls-hero {
        padding: 40px 15px !important;
    }
    
    .wls-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .wls-main {
        padding: 15px !important;
    }
    
    .wls-card {
        padding: 25px 15px !important;
    }
    
    .wls-form {
        padding: 20px 15px;
    }
    
    .wls-mega-logo-backdrop {
        padding: 40px 15px !important;
    }
    
    .wls-mega-logo-text h3 {
        font-size: 1.8rem !important;
    }
    
    .wls-mega-logo-text p {
        font-size: 1rem !important;
    }
}

/* Landscape Mode auf Handys */
@media (max-height: 500px) and (orientation: landscape) {
    .wls-hero {
        padding: 40px 20px !important;
    }
    
    .wls-hero h1 {
        font-size: 2rem !important;
    }
    
    .wls-main {
        margin-top: 100px !important;
    }
}

/* Sehr große Bildschirme (1440px und größer) */
@media (min-width: 1440px) {
    .wls-container {
        max-width: 1400px;
    }
    
    .wls-hero h1 {
        font-size: 4.5rem !important;
    }
    
    .wls-hero p {
        font-size: 1.4rem !important;
    }
}

/* Touch-optimierte Buttons */
@media (hover: none) and (pointer: coarse) {
    .wls-header-nav a,
    .wls-btn,
    .wls-sub-nav button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* HAUPTTEXTE ZENTRIEREN */
p,
h1, h2, h3, h4, h5, h6,
.wls-service p,
.wls-legal p,
.wls-card p {
    text-align: center !important;
}

/* LISTEN TROTZDEM LINKS LASSEN */
ul, ol {
    text-align: left !important;
    display: inline-block !important;
}
/* ALLES KOMPLETT ZENTRIEREN */
* {
    text-align: center !important;
}

/* Nur Eingabefelder links lassen */
input, textarea, select {
    text-align: left !important;
}
/* LOGO SICHTBARKEIT VERBESSERN - NUR DIESE REGEL HINZUFÜGEN/ÄNDERN */

.wls-mega-logo-backdrop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background-image: url('https://whitelabelsolutions.de/wp-content/uploads/2025/09/WhiteLabelLogo-scaled-e1758005797613.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9 !important; /* ERHÖHT VON 0.15 AUF 0.6 */
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: logoBackgroundFloat 8s ease-in-out infinite;
    filter: brightness(1.5) contrast(1.3) !important; /* VERSTÄRKT */
}

@keyframes logoBackgroundFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6 !important; /* AUCH HIER ERHÖHT */
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
        opacity: 0.8 !important; /* UND HIER */
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .wls-mega-logo-backdrop::after {
        width: 250px;
        height: 250px;
        opacity: 0.5 !important; /* AUCH MOBILE VERBESSERT */
    }
}
/* LILA CONTAINER HÖHE STARK REDUZIEREN */

.wls-mega-logo-backdrop {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(167, 139, 250, 0.90), rgba(109, 40, 217, 0.95));
    padding: 40px 60px !important; /* STARK REDUZIERT VON 100px AUF 40px */
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.4);
}

/* Mobile Version auch anpassen */
@media (max-width: 768px) {
    .wls-mega-logo-backdrop {
        padding: 25px 20px !important; /* STARK REDUZIERT VON 60px AUF 25px */
        margin: 0 -10px;
    }
}

/* Tablet Version */
@media (max-width: 1024px) {
    .wls-mega-logo-backdrop {
        padding: 30px 30px !important; /* STARK REDUZIERT VON 80px AUF 30px */
    }
}
/* MOBILE TEXT-ÜBERLAUF FIX FÜR LANGE WÖRTER */

/* Allgemeine Regel für alle Überschriften */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
}

/* Spezifisch für Legal-Seiten Titel */
.wls-legal h1 {
    color: #1a1a1a !important;
    font-size: 2.8rem !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    font-weight: 800 !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    line-height: 1.2 !important;
}

/* Mobile spezifische Anpassungen */
@media (max-width: 768px) {
    .wls-legal h1 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Auch für andere Überschriften auf Legal-Seiten */
    .wls-legal h2 {
        font-size: 1.6rem !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    .wls-legal h3 {
        font-size: 1.3rem !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .wls-legal h1 {
        font-size: 1.8rem !important;
        padding: 0 5px !important;
    }
    
    .wls-legal h2 {
        font-size: 1.4rem !important;
    }
    
    .wls-legal h3 {
        font-size: 1.2rem !important;
    }
}
/* LOGO SICHTBARKEIT VERBESSERN - NUR DIESE REGEL HINZUFÜGEN/ÄNDERN */

.wls-mega-logo-backdrop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background-image: url('https://whitelabelsolutions.de/wp-content/uploads/2025/09/WhiteLabelLogo-scaled-e1758005797613.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9 !important; /* ERHÖHT VON 0.15 AUF 0.6 */
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: logoBackgroundFloat 8s ease-in-out infinite;
    filter: brightness(1.5) contrast(1.3) !important; /* VERSTÄRKT */
}

@keyframes logoBackgroundFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.9 !important; /* AUCH HIER ERHÖHT */
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
        opacity: 0.9 !important; /* UND HIER */
    }
}

@keyframes logoBackgroundFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.9 !important; /* ERHÖHT FÜR ANIMATION */
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
        opacity: 1 !important; /* MAXIMAL SICHTBAR */
    }
}

/* Tablet Version */
@media (max-width: 1024px) {
    .wls-mega-logo-backdrop::after {
        width: 350px;
        height: 350px;
        opacity: 0.9 !important;
        filter: brightness(1.4) contrast(1.2) !important;
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .wls-mega-logo-backdrop::after {
        width: 280px;
        height: 280px;
        opacity: 0.9 !important; /* STARK VERBESSERT VON 0.12 */
        filter: brightness(1.3) contrast(1.2) !important;
    }
}

/* Sehr kleine Handys */
@media (max-width: 480px) {
    .wls-mega-logo-backdrop::after {
        width: 220px;
        height: 220px;
        opacity: 0.9 !important;
        filter: brightness(1.2) contrast(1.1) !important;
    }
}
/* CONTACT FORM 7 STYLING - AN DEIN DESIGN ANPASSEN */

/* Contact Form 7 Container */
.wpcf7 {
    max-width: 700px;
    margin: 40px auto;
    background: rgba(249, 250, 251, 0.95) !important;
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

/* Form Labels */
.wpcf7 label {
    display: block;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Input Fields, Textareas, Selects */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    padding: 18px !important;
    border: 2px solid rgba(229, 231, 235, 0.8) !important;
    border-radius: 15px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    background: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* Placeholder Text zentrieren */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    text-align: center !important;
}

/* Text beim Tippen wieder links ausrichten (nur für Text-Eingabe) */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    text-align: left !important;
}

/* Focus State */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none !important;
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-2px) !important;
}

/* Textarea spezielle Höhe */
.wpcf7 textarea {
    height: 140px !important;
    resize: vertical !important;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA) !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 15px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3) !important;
    width: auto !important;
    margin: 10px auto 0 auto !important;
    display: block !important;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4) !important;
}

/* Success Message */
.wpcf7-mail-sent-ok {
    border: 2px solid #10B981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
    color: #065F46 !important;
    padding: 15px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

/* Error Messages */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border: 2px solid #EF4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
    color: #991B1B !important;
    padding: 15px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

/* Field Validation Errors */
.wpcf7-not-valid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

/* Spinner (Loading) */
.wpcf7 .ajax-loader {
    margin-left: 10px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 30px 20px !important;
        margin: 30px 10px !important;
    }
    
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 select,
    .wpcf7 textarea {
        padding: 15px !important;
        font-size: 16px !important; /* Verhindert Zoom auf iOS */
    }
    
    .wpcf7 input[type="submit"] {
        width: 100% !important;
        padding: 16px !important;
    }
}

/* Sehr kleine Handys */
@media (max-width: 480px) {
    .wpcf7 {
        padding: 20px 15px !important;
    }
}
/* Weitere Performance-Verbesserungen */
@media (max-width: 768px) {
    /* GPU-Beschleunigung reduzieren */
    .wls-card,
    .wls-service {
        transform: translateZ(0) !important;
    }
    
    /* Komplexe Selektoren vereinfachen */
    .wls-main * {
        transition: none !important;
    }
}