/* CSS Variables */
:root {
    --accent: #BB2649;
    --accent-hover: #a02240;
    --accent-light: #d44d6b;
    --bg-color: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --spacing-md: 2rem;
    --transition: all 0.3s ease;
}

/* Top Line */
#top {
    background: #BB2649 url(/files/images/background_main.png);
    width: 100%;
    height: 4px;
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
    -moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 5px;
    -webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 5px;
    margin-bottom: 40px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

body {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    background: transparent url(/files/images/background_main.png);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Particle Background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(187, 38, 73, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }
.particle:nth-child(6) { top: 70%; left: 10%; animation-delay: 10s; }
.particle:nth-child(7) { top: 10%; left: 60%; animation-delay: 12s; }
.particle:nth-child(8) { top: 90%; left: 30%; animation-delay: 14s; }
.particle:nth-child(9) { top: 40%; left: 80%; animation-delay: 16s; }
.particle:nth-child(10) { top: 50%; left: 50%; animation-delay: 18s; }

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent url(/files/images/background_main.png);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left_float {
    float: left;
}

.right_float {
    float: right;
}

/* Logo */
#logo .logotype h1 {
    font-family: 'Colaborate Thin', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: var(--accent);
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

#logo .logotype h1::before,
#logo .logotype h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent);
    clip: rect(0, 900px, 0, 0);
    animation: none;
}

#logo .logotype h1::before {
    left: 1px;
    text-shadow: -1px 0 #ff00c1;
}

#logo .logotype h1::after {
    left: -1px;
    text-shadow: -1px 0 #00fff9, 1px 0 #ff00c1;
}

#logo .logotype h1:hover::before {
    animation: v5-glitch 2s infinite linear alternate-reverse;
}

#logo .logotype h1:hover::after {
    animation: v5-glitch 2.5s infinite linear alternate-reverse;
}

/* Navigation */
#nav {
    margin-top: 5px;
    position: relative;
}

#nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav ul li {
    margin: 0;
}

#nav ul li a {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

#nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00fff9;
    transition: width 0.3s ease;
}

#nav ul li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu - Hidden by default */
.nav-menu {
    display: none;
}

/* Welcome Section */
.welcome-integrated {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 232px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 6rem;
    z-index: 1;
    background: transparent;
}

.welcome-background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.welcome-liquid-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, rgba(187, 38, 73, 0.03), rgba(187, 38, 73, 0.01));
    border-radius: 50%;
    animation: v5-morph 8s ease-in-out infinite;
    filter: blur(40px);
}

.welcome-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.welcome-floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(187, 38, 73, 0.1);
    border-radius: 50%;
    animation: welcome-float 6s ease-in-out infinite;
}

.welcome-floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.welcome-floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.welcome-floating-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes welcome-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes v5-morph {
    0%, 100% { 
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    25% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    75% { 
        border-radius: 40% 30% 60% 70% / 40% 70% 60% 30%;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.welcome-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.welcome-main-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.welcome-company-name {
    font-family: 'Colaborate Thin', Helvetica, Arial, sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: normal;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}

.welcome-company-name::before,
.welcome-company-name::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 900px, 0, 0);
    animation: v5-glitch 3s infinite linear alternate-reverse;
}

.welcome-company-name::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: v5-glitch 2s infinite linear alternate-reverse;
}

.welcome-company-name::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 0 #ff00c1;
    animation: v5-glitch 2.5s infinite linear alternate-reverse;
}

.welcome-text {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: normal;
    color: #666666;
    margin-bottom: 2rem;
    opacity: 0;
    animation: welcome-fadeInUp 1.2s ease-out 0.8s forwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 0px #ffffff;
}

.welcome-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.welcome-cta-button::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 100px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(30px);
    top: -20px;
    left: -100px;
    transform: rotate(45deg);
    transition: all 0.7s ease;
}

.welcome-cta-button:hover::after {
    left: 120%;
}

.welcome-cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.welcome-cta-button:hover span {
    color: #00fff9;
}

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

/* Page Sections */
.page-section {
    padding: 6rem var(--spacing-md);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.page-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* Section Background Colors */
#collective {
    background: var(--accent);
    color: white;
}

#collective .section-title {
    color: white;
}

#collective .section-title::before,
#collective .section-title::after {
    color: white;
}

#services {
    background: white url(/files/images/background_main.png);
    color: #333333;
}

#services .section-title {
    color: var(--accent);
}

#services .section-title::before,
#services .section-title::after {
    color: var(--accent);
}

#contact {
    background: var(--bg-color);
    color: var(--text-primary);
}

.section-title {
    font-family: 'Colaborate Thin', Helvetica, Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: normal;
    color: var(--accent);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}

.section-title::before,
.section-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 9999px, 0, 0);
    animation: v5-glitch 3s infinite linear alternate-reverse;
}

.section-title::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: v5-glitch 2s infinite linear alternate-reverse;
}

.section-title::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 0 #ff00c1;
    animation: v5-glitch 2.5s infinite linear alternate-reverse;
}

/* Collective Section */
.collective-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.collective-intro {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: white;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.collective-intro h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
padding: 2.5rem;
text-align: center;
transition: var(--transition);
position: relative;
overflow: hidden;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(187, 38, 73, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-light);
}

.benefit-card:hover::before {
    opacity: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
        height: 80px;
        background: transparent;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 2rem;
        border: 2px solid var(--accent);
}

.service-icon {
    width: 100px;
        height: 100px;
        background: transparent;
        border-radius: 50%;
        margin: 0 auto 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 2.5rem;
        border: 2px solid var(--accent);
}

.benefit-card h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro p {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(187, 38, 73, 0.05);
    border: 1px solid rgba(187, 38, 73, 0.2);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;

}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--card-hover) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-light);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 100px;
        height: 100px;
        background: transparent;
        border-radius: 50%;
        margin: 0 auto 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 2.5rem;
        border: 2px solid var(--accent);
}

.service-card h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.service-card p {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

.services-cta {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem;
    text-align: center;
    position: relative;
}

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

.cta-content h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    color: #BB2649;
    margin-bottom: 1.5rem;
}

.cta-content p {
    ffont-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 100px;
    background: rgba(187, 38, 73, 0.1);
    filter: blur(30px);
    top: -20px;
    left: -100px;
    transform: rotate(45deg);
    transition: all 0.7s ease;
}

.cta-button:hover::after {
    left: 120%;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.cta-button:hover span {
    color: #00fff9;
}

/* Contact Section */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-message h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-message p {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--card-hover) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-light);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: #00fff9;
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.form-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.form-container h3 {
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-group {
    position: relative;
    margin-bottom: 0;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    background: rgba(15, 15, 15, 0.9);
    color: #ffffff;
    transition: var(--transition);
    box-sizing: border-box;
    display: block;
    margin: 0;
    height: 3.5rem;
}

.form-group textarea {
    height: auto;
    min-height: 120px;
    max-height: 200px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00fff9;
    background: rgba(15, 15, 15, 1);
    box-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #888888;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: #00fff9;
    background: #0f0f0f;
    padding: 0 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
    opacity: 1;
}

.submit-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: 'Colaborate Light', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-top: 1rem;
}

.submit-button::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 100px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(30px);
    top: -20px;
    left: -100px;
    transform: rotate(45deg);
    transition: all 0.7s ease;
}

.submit-button:hover::after {
    left: 120%;
}

.submit-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.submit-button:hover span {
    color: #00fff9;
}

/* Captcha Styling */
.captcha-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 249, 0.2);
}

.math-captcha {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.math-captcha label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#math-question {
    color: #00fff9;
    font-weight: 600;
    font-size: 1.1rem;
}

#captcha {
    background: rgba(15, 15, 15, 0.9);
    color: #ffffff;
    border: 2px solid #333333;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

#captcha:focus {
    border-color: #00fff9;
    background: rgba(15, 15, 15, 1);
    box-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
    outline: none;
}

.refresh-captcha {
    background: #00fff9;
    color: #0f0f0f;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-captcha:hover {
    background: #00e6e6;
    transform: rotate(180deg);
}

.refresh-captcha i {
    transition: transform 0.3s ease;
}

/* Mobile captcha styling */
@media (max-width: 768px) {
    .math-captcha {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .math-captcha label {
        min-width: auto;
        text-align: center;
    }
    
    #captcha {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
    
    .refresh-captcha {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
}

/* Footer */
#footer {
    background: #0f0f0f;
    padding: 3rem 0;
    text-align: center;
    color: #333333;
}

/* Glitch Animation */
@keyframes v5-glitch {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }
    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }
    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }
    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }
    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }
    25% {
        clip: rect(34px, 9999px, 55px, 0);
    }
    30% {
        clip: rect(86px, 9999px, 73px, 0);
    }
    35% {
        clip: rect(20px, 9999px, 20px, 0);
    }
    40% {
        clip: rect(26px, 9999px, 60px, 0);
    }
    45% {
        clip: rect(25px, 9999px, 66px, 0);
    }
    50% {
        clip: rect(57px, 9999px, 98px, 0);
    }
    55% {
        clip: rect(5px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 31px, 0);
    }
    65% {
        clip: rect(54px, 9999px, 27px, 0);
    }
    70% {
        clip: rect(28px, 9999px, 99px, 0);
    }
    75% {
        clip: rect(99px, 9999px, 38px, 0);
    }
    80% {
        clip: rect(61px, 9999px, 73px, 0);
    }
    85% {
        clip: rect(66px, 9999px, 11px, 0);
    }
    90% {
        clip: rect(73px, 9999px, 26px, 0);
    }
    95% {
        clip: rect(23px, 9999px, 85px, 0);
    }
    100% {
        clip: rect(54px, 9999px, 84px, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .collective-hero {
        text-align: center;
    }
    
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-cta,
    .contact-form-section {
        padding: 3rem 2rem;
    }
    
    /* Mobile Navigation */
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border-color);
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu li a {
        font-size: 1.8rem;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
    }
    
    /* Header adjustments for mobile */
    #header .container {
        padding: 0 1rem;
    }
    
    #logo .logotype h1 {
        font-size: 1.5rem;
    }
    
    /* Ensure header stays fixed on mobile */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Adjust welcome section margin for fixed header */
    .welcome-integrated {
        margin-top: 8rem;
    }
    
    /* Hide desktop navigation on mobile */
    #nav > ul {
        display: none;
    }
    
    /* Ensure proper spacing for mobile nav */
    #nav {
        margin-top: 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .benefit-card,
    .service-card,
    .contact-card {
        padding: 2rem;
    }
    
    .cta-button,
    .submit-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
} 